Finalized new shell experience.
This commit is contained in:
@@ -44,11 +44,6 @@ public interface IStatePersistanceService : INotifyPropertyChanged
|
||||
/// </summary>
|
||||
bool IsEventDetailsVisible { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Whether ManageAccountsPage has navigated to a sub-page and can go back.
|
||||
/// </summary>
|
||||
bool IsManageAccountsNavigating { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Whether SettingsPage has navigated to a sub-page and can go back.
|
||||
/// </summary>
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
namespace Wino.Core.Domain.MenuItems;
|
||||
|
||||
public class ManageAccountsMenuItem : MenuItemBase { }
|
||||
@@ -8,10 +8,10 @@ namespace Wino.Core.Domain.MenuItems;
|
||||
public partial class MenuItemBase : ObservableObject, IMenuItem
|
||||
{
|
||||
[ObservableProperty]
|
||||
private bool _isExpanded;
|
||||
public partial bool IsExpanded { get; set; }
|
||||
|
||||
[ObservableProperty]
|
||||
private bool _isSelected;
|
||||
public partial bool IsSelected { get; set; }
|
||||
|
||||
public IMenuItem ParentMenuItem { get; }
|
||||
|
||||
@@ -46,7 +46,7 @@ public partial class MenuItemBase : ObservableObject, IMenuItem
|
||||
public partial class MenuItemBase<T> : MenuItemBase
|
||||
{
|
||||
[ObservableProperty]
|
||||
private T _parameter;
|
||||
public partial T Parameter { get; set; }
|
||||
|
||||
public MenuItemBase(T parameter, Guid? entityId, IMenuItem parentMenuItem = null) : base(entityId, parentMenuItem) => Parameter = parameter;
|
||||
}
|
||||
@@ -54,7 +54,7 @@ public partial class MenuItemBase<T> : MenuItemBase
|
||||
public partial class MenuItemBase<TValue, TCollection> : MenuItemBase<TValue>
|
||||
{
|
||||
[ObservableProperty]
|
||||
private bool _isChildSelected;
|
||||
public partial bool IsChildSelected { get; set; }
|
||||
|
||||
protected MenuItemBase(TValue parameter, Guid? entityId, IMenuItem parentMenuItem = null) : base(parameter, entityId, parentMenuItem) { }
|
||||
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
namespace Wino.Core.Domain.MenuItems;
|
||||
|
||||
public sealed class NewContactMenuItem : MenuItemBase { }
|
||||
@@ -793,7 +793,7 @@
|
||||
"SettingsMailSpacing_Description": "Adjust the spacing for listing mails.",
|
||||
"SettingsMailSpacing_Title": "Mail Spacing",
|
||||
"SettingsManageAccountSettings_Description": "Notifications, signatures, synchronization and other settings per account.",
|
||||
"SettingsManageAccountSettings_Title": "Manage Account Settings",
|
||||
"SettingsManageAccountSettings_Title": "Manage Accounts",
|
||||
"SettingsManageAliases_Description": "See e-mail aliases assigned for this account, update or delete them.",
|
||||
"SettingsManageAliases_Title": "Aliases",
|
||||
"SettingsEditAccountDetails_Title": "Edit Account Details",
|
||||
@@ -1060,6 +1060,9 @@
|
||||
"ContactsPage_EmptyState": "No contacts to display",
|
||||
"ContactsPage_AddFirstContact": "Add your first contact",
|
||||
"ContactsPage_ContactsCountSuffix": "contacts",
|
||||
"ContactsPane_NewContact": "New Contact",
|
||||
"ContactsPane_DescriptionTitle": "Manage your contacts",
|
||||
"ContactsPane_DescriptionBody": "Create contacts, rename them, update profile pictures, and keep saved details organized in one place.",
|
||||
"ContactEditDialog_AddTitle": "Add Contact",
|
||||
"ContactInfoBar_ContactAdded": "Contact added successfully.",
|
||||
"ContactInfoBar_ContactUpdated": "Contact updated successfully.",
|
||||
|
||||
Reference in New Issue
Block a user