feat: implement core domain models, authentication service, and UI components for the attendance system

This commit is contained in:
2026-07-31 14:39:25 -04:00
commit f476f704eb
329 changed files with 12622 additions and 0 deletions
@@ -0,0 +1,58 @@
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using Asistencia.Models;
using Asistencia.Services;
using Avalonia.Controls;
using Asistencia.Views;
using System.Collections.ObjectModel;
namespace Asistencia.ViewModels;
public partial class MainWindowViewModel : ObservableObject
{
private readonly AuthService _authService;
private readonly AsistenciaService _asistenciaService;
private object? _currentView;
[ObservableProperty]
private string _currentViewTitle = "Login";
public object? CurrentView
{
get => _currentView;
set => SetProperty(ref _currentView, value);
}
public MainWindowViewModel(AuthService authService, AsistenciaService asistenciaService)
{
_authService = authService;
_asistenciaService = asistenciaService;
CurrentView = new LoginViewModel(authService, this);
}
public void NavigateToLogin()
{
CurrentViewTitle = "Login";
CurrentView = new LoginViewModel(_authService, this);
}
public void NavigateToDashboard()
{
CurrentViewTitle = "Panel Principal";
CurrentView = new DashboardViewModel(_authService, _asistenciaService, this);
}
public void NavigateToAsistencia(CursoAbierto curso)
{
CurrentViewTitle = "Asistencia";
CurrentView = new AsistenciaViewModel(_asistenciaService, _authService, curso, this);
}
public void NavigateToPerfil()
{
CurrentViewTitle = "Mi Perfil";
CurrentView = new PerfilViewModel(_authService, this);
}
public string UsuarioActual => _authService.CurrentUser?.NombreCompleto ?? "";
}