| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using Avalonia;
- using Avalonia.Controls;
- using FluentAvalonia.UI.Controls;
- using Ryujinx.Ava.Common.Locale;
- using Ryujinx.Ava.Ui.ViewModels;
- using Ryujinx.HLE.FileSystem;
- using Ryujinx.HLE.HOS.Services.Account.Acc;
- using System;
- using System.Threading.Tasks;
- namespace Ryujinx.Ava.Ui.Controls
- {
- public partial class NavigationDialogHost : UserControl
- {
- public AccountManager AccountManager { get; }
- public ContentManager ContentManager { get; }
- public UserProfileViewModel ViewModel { get; set; }
- public NavigationDialogHost()
- {
- InitializeComponent();
- }
- public NavigationDialogHost(AccountManager accountManager, ContentManager contentManager,
- VirtualFileSystem virtualFileSystem)
- {
- AccountManager = accountManager;
- ContentManager = contentManager;
- ViewModel = new UserProfileViewModel(this);
- if (contentManager.GetCurrentFirmwareVersion() != null)
- {
- Task.Run(() =>
- {
- AvatarProfileViewModel.PreloadAvatars(contentManager, virtualFileSystem);
- });
- }
- InitializeComponent();
- }
- public void GoBack(object parameter = null)
- {
- if (ContentFrame.BackStack.Count > 0)
- {
- ContentFrame.GoBack();
- }
- ViewModel.LoadProfiles();
- }
- public void Navigate(Type sourcePageType, object parameter)
- {
- ContentFrame.Navigate(sourcePageType, parameter);
- }
- public static async Task Show(AccountManager ownerAccountManager, ContentManager ownerContentManager, VirtualFileSystem ownerVirtualFileSystem)
- {
- var content = new NavigationDialogHost(ownerAccountManager, ownerContentManager, ownerVirtualFileSystem);
- ContentDialog contentDialog = new ContentDialog
- {
- Title = LocaleManager.Instance["UserProfileWindowTitle"],
- PrimaryButtonText = "",
- SecondaryButtonText = "",
- CloseButtonText = LocaleManager.Instance["UserProfilesClose"],
- Content = content,
- Padding = new Thickness(0)
- };
- contentDialog.Closed += (sender, args) =>
- {
- content.ViewModel.Dispose();
- };
- await contentDialog.ShowAsync();
- }
- protected override void OnAttachedToVisualTree(VisualTreeAttachmentEventArgs e)
- {
- base.OnAttachedToVisualTree(e);
- Navigate(typeof(UserSelector), this);
- }
- }
- }
|