44 lines
1.7 KiB
C#
44 lines
1.7 KiB
C#
using System;
|
|
using CommunityToolkit.Mvvm.Input;
|
|
using CommunityToolkit.Mvvm.Messaging;
|
|
using Wino.Core.Domain;
|
|
using Wino.Core.Domain.Enums;
|
|
using Wino.Messaging.Client.Navigation;
|
|
|
|
namespace Wino.Core.ViewModels;
|
|
|
|
public partial class SettingOptionsPageViewModel : CoreBaseViewModel
|
|
{
|
|
[RelayCommand]
|
|
private void GoAccountSettings() => Messenger.Send<NavigateManageAccountsRequested>();
|
|
|
|
[RelayCommand]
|
|
public void NavigateSubDetail(object type)
|
|
{
|
|
if (type is WinoPage pageType)
|
|
{
|
|
if (pageType == WinoPage.AccountManagementPage)
|
|
{
|
|
GoAccountSettings();
|
|
return;
|
|
}
|
|
|
|
string pageTitle = pageType switch
|
|
{
|
|
WinoPage.PersonalizationPage => Translator.SettingsPersonalization_Title,
|
|
WinoPage.AboutPage => Translator.SettingsAbout_Title,
|
|
WinoPage.MessageListPage => Translator.SettingsMessageList_Title,
|
|
WinoPage.ReadComposePanePage => Translator.SettingsReadComposePane_Title,
|
|
WinoPage.LanguageTimePage => Translator.SettingsLanguageTime_Title,
|
|
WinoPage.AppPreferencesPage => Translator.SettingsAppPreferences_Title,
|
|
WinoPage.CalendarSettingsPage => Translator.SettingsCalendarSettings_Title,
|
|
WinoPage.SignatureAndEncryptionPage => Translator.SettingsSignatureAndEncryption_Title,
|
|
WinoPage.KeyboardShortcutsPage => Translator.Settings_KeyboardShortcuts_Title,
|
|
_ => throw new NotImplementedException()
|
|
};
|
|
|
|
Messenger.Send(new BreadcrumbNavigationRequested(pageTitle, pageType));
|
|
}
|
|
}
|
|
}
|