From 311783b23d811fa64017f3a557b6806bf2f6014c Mon Sep 17 00:00:00 2001 From: Zagrebin Date: Tue, 10 Dec 2024 20:47:49 +0300 Subject: [PATCH] FilePicker --- Presence.Desktop/App.axaml | 2 +- .../ViewModels/MainWindowViewModel.cs | 47 ++++++++++++++++--- Presence.Desktop/Views/MainWindow.axaml | 21 ++++----- Presence.Desktop/Views/MainWindow.axaml.cs | 38 ++++++++++++++- 4 files changed, 89 insertions(+), 19 deletions(-) diff --git a/Presence.Desktop/App.axaml b/Presence.Desktop/App.axaml index eea6afa..7af6c92 100644 --- a/Presence.Desktop/App.axaml +++ b/Presence.Desktop/App.axaml @@ -2,7 +2,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="Presence.Desktop.App" xmlns:local="using:Presence.Desktop" - RequestedThemeVariant="Default"> + RequestedThemeVariant="Light"> diff --git a/Presence.Desktop/ViewModels/MainWindowViewModel.cs b/Presence.Desktop/ViewModels/MainWindowViewModel.cs index f024e49..0648dbe 100644 --- a/Presence.Desktop/ViewModels/MainWindowViewModel.cs +++ b/Presence.Desktop/ViewModels/MainWindowViewModel.cs @@ -1,10 +1,14 @@ using domain.UseCase; using Presence.Desktop.Models; using System; +using System.Reactive.Linq; +using System.Reactive; using System.Linq; using ReactiveUI; using System.Collections.Generic; using System.Collections.ObjectModel; +using System.Windows.Input; +using System.Threading.Tasks; namespace Presence.Desktop.ViewModels { @@ -33,17 +37,43 @@ namespace Presence.Desktop.ViewModels set => this.RaiseAndSetIfChanged(ref _students, value); } + public Interaction ShowOpenFileDialog; + private string? _selectedFile; + public string? SelectedFile + { + get => _selectedFile; + set => this.RaiseAndSetIfChanged(ref _selectedFile, value); + } + + public ICommand OpenFileDialog { get; } + public MainWindowViewModel() { _groupService = null; _groups = new(); _students = new(); + OpenFileDialog = ReactiveCommand.CreateFromTask(SelectFile); } - public MainWindowViewModel(IGroupUseCase gService, IGroupUseCase groupService, ObservableCollection groups, ObservableCollection students) + public MainWindowViewModel(IGroupUseCase gService) { _groupService = gService; + ShowOpenFileDialog = new Interaction(); + OpenFileDialog = ReactiveCommand.CreateFromTask(SelectFile); + _students = new(); + + this.WhenAnyValue(vm => vm.SelectedGroupItem) + .Subscribe(_ => + { + RefreshGroups(); + SetStudents(); + }); + } + + private void RefreshGroups() + { + groupPresenters.Clear(); foreach (var item in _groupService.GetGroupsWithStudents()) { GroupPresenter groupPresenter = new GroupPresenter @@ -67,11 +97,6 @@ namespace Presence.Desktop.ViewModels } _groups = new(groupPresenters); - - _students = new(); - - this.WhenAnyValue(vm => vm.SelectedGroupItem) - .Subscribe(_ => SetStudents()); } private void SetStudents() @@ -85,5 +110,15 @@ namespace Presence.Desktop.ViewModels Students.Add(student); } + private async Task SelectFile() + { + SelectedFile = await ShowOpenFileDialog.Handle(Unit.Default); + + if (SelectedFile is object) + { + + } + } + } } diff --git a/Presence.Desktop/Views/MainWindow.axaml b/Presence.Desktop/Views/MainWindow.axaml index 655327b..febbbe8 100644 --- a/Presence.Desktop/Views/MainWindow.axaml +++ b/Presence.Desktop/Views/MainWindow.axaml @@ -14,9 +14,6 @@ - - - - +