2023-01-11 05:20:19 +00:00
|
|
|
using Avalonia.Media;
|
2022-12-29 14:24:05 +00:00
|
|
|
using Ryujinx.Ava.UI.Controls;
|
|
|
|
using Ryujinx.Ava.UI.ViewModels;
|
2023-01-11 05:20:19 +00:00
|
|
|
using Ryujinx.Ava.UI.Views.User;
|
2022-07-08 18:47:11 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Account.Acc;
|
|
|
|
using Profile = Ryujinx.HLE.HOS.Services.Account.Acc.UserProfile;
|
|
|
|
|
2022-12-29 14:24:05 +00:00
|
|
|
namespace Ryujinx.Ava.UI.Models
|
2022-07-08 18:47:11 +00:00
|
|
|
{
|
|
|
|
public class UserProfile : BaseModel
|
|
|
|
{
|
|
|
|
private readonly Profile _profile;
|
2022-12-02 13:16:43 +00:00
|
|
|
private readonly NavigationDialogHost _owner;
|
2022-07-08 18:47:11 +00:00
|
|
|
private byte[] _image;
|
|
|
|
private string _name;
|
|
|
|
private UserId _userId;
|
2023-01-11 05:20:19 +00:00
|
|
|
private bool _isPointerOver;
|
|
|
|
private IBrush _backgroundColor;
|
2022-07-08 18:47:11 +00:00
|
|
|
|
|
|
|
public byte[] Image
|
|
|
|
{
|
|
|
|
get => _image;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
_image = value;
|
|
|
|
OnPropertyChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public UserId UserId
|
|
|
|
{
|
|
|
|
get => _userId;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
_userId = value;
|
|
|
|
OnPropertyChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
{
|
|
|
|
get => _name;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
_name = value;
|
|
|
|
OnPropertyChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-11 05:20:19 +00:00
|
|
|
public bool IsPointerOver
|
|
|
|
{
|
|
|
|
get => _isPointerOver;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
_isPointerOver = value;
|
|
|
|
OnPropertyChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public IBrush BackgroundColor
|
|
|
|
{
|
|
|
|
get => _backgroundColor;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
_backgroundColor = value;
|
|
|
|
OnPropertyChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-02 13:16:43 +00:00
|
|
|
public UserProfile(Profile profile, NavigationDialogHost owner)
|
2022-07-08 18:47:11 +00:00
|
|
|
{
|
|
|
|
_profile = profile;
|
2022-12-02 13:16:43 +00:00
|
|
|
_owner = owner;
|
2022-07-08 18:47:11 +00:00
|
|
|
|
2023-01-11 05:20:19 +00:00
|
|
|
UpdateBackground();
|
|
|
|
|
2022-07-08 18:47:11 +00:00
|
|
|
Image = profile.Image;
|
|
|
|
Name = profile.Name;
|
|
|
|
UserId = profile.UserId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void UpdateState()
|
|
|
|
{
|
2023-01-11 05:20:19 +00:00
|
|
|
UpdateBackground();
|
2022-07-08 18:47:11 +00:00
|
|
|
OnPropertyChanged(nameof(Name));
|
|
|
|
}
|
2022-12-02 13:16:43 +00:00
|
|
|
|
2023-01-11 05:20:19 +00:00
|
|
|
private void UpdateBackground()
|
|
|
|
{
|
|
|
|
Avalonia.Application.Current.Styles.TryGetResource("ControlFillColorSecondary", out object color);
|
|
|
|
|
|
|
|
if (color is not null)
|
|
|
|
{
|
|
|
|
BackgroundColor = _profile.AccountState == AccountState.Open ? new SolidColorBrush((Color)color) : Brushes.Transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-02 13:16:43 +00:00
|
|
|
public void Recover(UserProfile userProfile)
|
|
|
|
{
|
2023-01-11 05:20:19 +00:00
|
|
|
_owner.Navigate(typeof(UserEditorView), (_owner, userProfile, true));
|
2022-12-02 13:16:43 +00:00
|
|
|
}
|
2022-07-08 18:47:11 +00:00
|
|
|
}
|
|
|
|
}
|