2022-07-24 19:38:38 +02:00
|
|
|
using Avalonia.Controls;
|
|
|
|
using Avalonia.Data;
|
|
|
|
using Avalonia.Interactivity;
|
|
|
|
using FluentAvalonia.UI.Controls;
|
|
|
|
using FluentAvalonia.UI.Navigation;
|
|
|
|
using Ryujinx.Ava.Common.Locale;
|
2023-01-11 06:20:19 +01:00
|
|
|
using Ryujinx.Ava.UI.Controls;
|
2022-12-29 15:24:05 +01:00
|
|
|
using Ryujinx.Ava.UI.Models;
|
2023-01-11 06:20:19 +01:00
|
|
|
using Ryujinx.Ava.UI.Helpers;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Account.Acc;
|
|
|
|
using System;
|
2022-12-29 15:24:05 +01:00
|
|
|
using UserProfile = Ryujinx.Ava.UI.Models.UserProfile;
|
2022-07-24 19:38:38 +02:00
|
|
|
|
2023-01-11 06:20:19 +01:00
|
|
|
namespace Ryujinx.Ava.UI.Views.User
|
2022-07-24 19:38:38 +02:00
|
|
|
{
|
2023-01-11 06:20:19 +01:00
|
|
|
public partial class UserEditorView : UserControl
|
2022-07-24 19:38:38 +02:00
|
|
|
{
|
|
|
|
private NavigationDialogHost _parent;
|
|
|
|
private UserProfile _profile;
|
|
|
|
private bool _isNewUser;
|
|
|
|
|
|
|
|
public TempProfile TempProfile { get; set; }
|
|
|
|
public uint MaxProfileNameLength => 0x20;
|
2023-01-11 06:20:19 +01:00
|
|
|
public bool IsDeletable => _profile.UserId != AccountManager.DefaultUserId;
|
2022-07-24 19:38:38 +02:00
|
|
|
|
2023-01-11 06:20:19 +01:00
|
|
|
public UserEditorView()
|
2022-07-24 19:38:38 +02:00
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
AddHandler(Frame.NavigatedToEvent, (s, e) =>
|
|
|
|
{
|
|
|
|
NavigatedTo(e);
|
|
|
|
}, RoutingStrategies.Direct);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void NavigatedTo(NavigationEventArgs arg)
|
|
|
|
{
|
|
|
|
if (Program.PreviewerDetached)
|
|
|
|
{
|
|
|
|
switch (arg.NavigationMode)
|
|
|
|
{
|
|
|
|
case NavigationMode.New:
|
|
|
|
var args = ((NavigationDialogHost parent, UserProfile profile, bool isNewUser))arg.Parameter;
|
|
|
|
_isNewUser = args.isNewUser;
|
2022-12-02 14:16:43 +01:00
|
|
|
_profile = args.profile;
|
|
|
|
TempProfile = new TempProfile(_profile);
|
2022-07-24 19:38:38 +02:00
|
|
|
|
|
|
|
_parent = args.parent;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2023-01-11 06:20:19 +01:00
|
|
|
((ContentDialog)_parent.Parent).Title = $"{LocaleManager.Instance[LocaleKeys.UserProfileWindowTitle]} - " +
|
|
|
|
$"{ (_isNewUser ? LocaleManager.Instance[LocaleKeys.UserEditorTitleCreate] : LocaleManager.Instance[LocaleKeys.UserEditorTitle])}";
|
|
|
|
|
2022-07-24 19:38:38 +02:00
|
|
|
DataContext = TempProfile;
|
|
|
|
|
|
|
|
AddPictureButton.IsVisible = _isNewUser;
|
2023-01-11 06:20:19 +01:00
|
|
|
ChangePictureButton.IsVisible = !_isNewUser;
|
2022-12-02 14:16:43 +01:00
|
|
|
IdLabel.IsVisible = _profile != null;
|
|
|
|
IdText.IsVisible = _profile != null;
|
2023-01-11 06:20:19 +01:00
|
|
|
if (!_isNewUser && IsDeletable)
|
|
|
|
{
|
|
|
|
DeleteButton.IsVisible = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DeleteButton.IsVisible = false;
|
|
|
|
}
|
2022-07-24 19:38:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-11 06:20:19 +01:00
|
|
|
private async void BackButton_Click(object sender, RoutedEventArgs e)
|
2022-07-24 19:38:38 +02:00
|
|
|
{
|
2023-01-11 06:20:19 +01:00
|
|
|
if (_isNewUser)
|
|
|
|
{
|
|
|
|
if (TempProfile.Name != String.Empty || TempProfile.Image != null)
|
|
|
|
{
|
|
|
|
if (await ContentDialogHelper.CreateChoiceDialog(
|
|
|
|
LocaleManager.Instance[LocaleKeys.DialogUserProfileUnsavedChangesTitle],
|
|
|
|
LocaleManager.Instance[LocaleKeys.DialogUserProfileUnsavedChangesMessage],
|
|
|
|
LocaleManager.Instance[LocaleKeys.DialogUserProfileUnsavedChangesSubMessage]))
|
|
|
|
{
|
|
|
|
_parent?.GoBack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_parent?.GoBack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (_profile.Name != TempProfile.Name || _profile.Image != TempProfile.Image)
|
|
|
|
{
|
|
|
|
if (await ContentDialogHelper.CreateChoiceDialog(
|
|
|
|
LocaleManager.Instance[LocaleKeys.DialogUserProfileUnsavedChangesTitle],
|
|
|
|
LocaleManager.Instance[LocaleKeys.DialogUserProfileUnsavedChangesMessage],
|
|
|
|
LocaleManager.Instance[LocaleKeys.DialogUserProfileUnsavedChangesSubMessage]))
|
|
|
|
{
|
|
|
|
_parent?.GoBack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_parent?.GoBack();
|
|
|
|
}
|
|
|
|
}
|
2022-07-24 19:38:38 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 06:20:19 +01:00
|
|
|
private void DeleteButton_Click(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
_parent.DeleteUser(_profile);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void SaveButton_Click(object sender, RoutedEventArgs e)
|
2022-07-24 19:38:38 +02:00
|
|
|
{
|
|
|
|
DataValidationErrors.ClearErrors(NameBox);
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(TempProfile.Name))
|
|
|
|
{
|
2023-01-03 19:45:08 +01:00
|
|
|
DataValidationErrors.SetError(NameBox, new DataValidationException(LocaleManager.Instance[LocaleKeys.UserProfileEmptyNameError]));
|
2022-07-24 19:38:38 +02:00
|
|
|
|
2023-01-11 06:20:19 +01:00
|
|
|
return;
|
2022-07-24 19:38:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (TempProfile.Image == null)
|
|
|
|
{
|
2023-01-11 06:20:19 +01:00
|
|
|
_parent.Navigate(typeof(UserProfileImageSelectorView), (_parent, TempProfile));
|
2022-07-24 19:38:38 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-02 14:16:43 +01:00
|
|
|
if (_profile != null && !_isNewUser)
|
2022-07-24 19:38:38 +02:00
|
|
|
{
|
|
|
|
_profile.Name = TempProfile.Name;
|
|
|
|
_profile.Image = TempProfile.Image;
|
|
|
|
_profile.UpdateState();
|
|
|
|
_parent.AccountManager.SetUserName(_profile.UserId, _profile.Name);
|
|
|
|
_parent.AccountManager.SetUserImage(_profile.UserId, _profile.Image);
|
|
|
|
}
|
|
|
|
else if (_isNewUser)
|
|
|
|
{
|
2022-12-02 14:16:43 +01:00
|
|
|
_parent.AccountManager.AddUser(TempProfile.Name, TempProfile.Image, TempProfile.UserId);
|
2022-07-24 19:38:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_parent?.GoBack();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SelectProfileImage()
|
|
|
|
{
|
2023-01-11 06:20:19 +01:00
|
|
|
_parent.Navigate(typeof(UserProfileImageSelectorView), (_parent, TempProfile));
|
2022-07-24 19:38:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void ChangePictureButton_Click(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
if (_profile != null || _isNewUser)
|
|
|
|
{
|
|
|
|
SelectProfileImage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|