* Remove account rename dialog. Implement edit account details page. * Remove unused folder definition. * Adressing theming issues and adding reset button. Changing the UI a bit. * Enable auto indent in initializer. Use service from the application. * Adding color picker to acc setup dialog. Changing UI of edit acc details page.
111 lines
3.5 KiB
C#
111 lines
3.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using Wino.Core.Domain.Entities.Shared;
|
|
using Wino.Core.Domain.Enums;
|
|
using Wino.Core.Domain.Interfaces;
|
|
using Wino.Core.Domain.Models.Folders;
|
|
|
|
namespace Wino.Core.Domain.MenuItems;
|
|
|
|
public partial class AccountMenuItem : MenuItemBase<MailAccount, MenuItemBase<IMailItemFolder, FolderMenuItem>>, IAccountMenuItem
|
|
{
|
|
[ObservableProperty]
|
|
private int unreadItemCount;
|
|
|
|
[ObservableProperty]
|
|
[NotifyPropertyChangedFor(nameof(IsSynchronizationProgressVisible))]
|
|
private double synchronizationProgress;
|
|
|
|
[ObservableProperty]
|
|
private bool _isEnabled = true;
|
|
|
|
public bool IsAttentionRequired => AttentionReason != AccountAttentionReason.None;
|
|
public bool IsSynchronizationProgressVisible => SynchronizationProgress > 0 && SynchronizationProgress < 100;
|
|
|
|
// We can't determine the progress for gmail synchronization since it is based on history changes.
|
|
public bool IsProgressIndeterminate => Parameter?.ProviderType == MailProviderType.Gmail;
|
|
public Guid AccountId => Parameter.Id;
|
|
|
|
private AccountAttentionReason attentionReason;
|
|
|
|
public AccountAttentionReason AttentionReason
|
|
{
|
|
get => attentionReason;
|
|
set
|
|
{
|
|
if (SetProperty(ref attentionReason, value))
|
|
{
|
|
OnPropertyChanged(nameof(IsAttentionRequired));
|
|
|
|
UpdateFixAccountIssueMenuItem();
|
|
}
|
|
}
|
|
}
|
|
|
|
public string AccountName
|
|
{
|
|
get => Parameter.Name;
|
|
set => SetProperty(Parameter.Name, value, Parameter, (u, n) => u.Name = n);
|
|
}
|
|
|
|
public string Base64ProfilePicture
|
|
{
|
|
get => Parameter.Name;
|
|
set => SetProperty(Parameter.Base64ProfilePictureData, value, Parameter, (u, n) => u.Base64ProfilePictureData = n);
|
|
}
|
|
|
|
public string AccountColorHex
|
|
{
|
|
get => Parameter.AccountColorHex;
|
|
set => SetProperty(Parameter.AccountColorHex, value, Parameter, (u, n) => u.AccountColorHex = n);
|
|
}
|
|
|
|
public IEnumerable<MailAccount> HoldingAccounts => new List<MailAccount> { Parameter };
|
|
|
|
public AccountMenuItem(MailAccount account, IMenuItem parent = null) : base(account, account.Id, parent)
|
|
{
|
|
UpdateAccount(account);
|
|
}
|
|
|
|
public void UpdateAccount(MailAccount account)
|
|
{
|
|
Parameter = account;
|
|
|
|
OnPropertyChanged(nameof(AccountName));
|
|
OnPropertyChanged(nameof(Base64ProfilePicture));
|
|
OnPropertyChanged(nameof(AccountColorHex));
|
|
OnPropertyChanged(nameof(IsAttentionRequired));
|
|
|
|
if (SubMenuItems == null) return;
|
|
|
|
foreach (var item in SubMenuItems)
|
|
{
|
|
if (item is IFolderMenuItem folderMenuItem)
|
|
{
|
|
folderMenuItem.UpdateParentAccounnt(account);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void UpdateFixAccountIssueMenuItem()
|
|
{
|
|
if (AttentionReason != AccountAttentionReason.None && !SubMenuItems.Any(a => a is FixAccountIssuesMenuItem))
|
|
{
|
|
// Add fix issue item if not exists.
|
|
SubMenuItems.Insert(0, new FixAccountIssuesMenuItem(Parameter, this));
|
|
}
|
|
else
|
|
{
|
|
// Remove existing if issue is resolved.
|
|
var fixAccountIssueItem = SubMenuItems.FirstOrDefault(a => a is FixAccountIssuesMenuItem);
|
|
|
|
if (fixAccountIssueItem != null)
|
|
{
|
|
SubMenuItems.Remove(fixAccountIssueItem);
|
|
}
|
|
}
|
|
}
|
|
}
|