2024-07-14 11:24:10 +00:00
|
|
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
|
|
|
|
|
|
using Microsoft.UI.Xaml.Navigation;
|
|
|
|
|
|
|
|
|
|
using RustTools.Contracts.Services;
|
|
|
|
|
using RustTools.Views;
|
|
|
|
|
|
|
|
|
|
namespace RustTools.ViewModels;
|
|
|
|
|
|
|
|
|
|
public partial class ShellViewModel : ObservableRecipient
|
|
|
|
|
{
|
|
|
|
|
[ObservableProperty]
|
|
|
|
|
private bool isBackEnabled;
|
|
|
|
|
|
|
|
|
|
[ObservableProperty]
|
|
|
|
|
private object? selected;
|
|
|
|
|
|
|
|
|
|
public INavigationService NavigationService
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public INavigationViewService NavigationViewService
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ShellViewModel(INavigationService navigationService, INavigationViewService navigationViewService)
|
|
|
|
|
{
|
|
|
|
|
NavigationService = navigationService;
|
|
|
|
|
NavigationService.Navigated += OnNavigated;
|
|
|
|
|
NavigationViewService = navigationViewService;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnNavigated(object sender, NavigationEventArgs e)
|
|
|
|
|
{
|
2024-08-17 23:27:24 +00:00
|
|
|
|
|
|
|
|
|
System.GC.Collect();
|
2024-07-14 11:24:10 +00:00
|
|
|
|
IsBackEnabled = NavigationService.CanGoBack;
|
|
|
|
|
|
|
|
|
|
if (e.SourcePageType == typeof(SettingsPage))
|
|
|
|
|
{
|
|
|
|
|
Selected = NavigationViewService.SettingsItem;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var selectedItem = NavigationViewService.GetSelectedItem(e.SourcePageType);
|
|
|
|
|
if (selectedItem != null)
|
|
|
|
|
{
|
|
|
|
|
Selected = selectedItem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|