59 lines
1.7 KiB
C#
59 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Windows.UI.Xaml.Controls;
|
|
using Wino.Core.Domain.Entities.Shared;
|
|
using Wino.Core.UWP.Controls;
|
|
using Wino.Helpers;
|
|
|
|
namespace Wino.MenuFlyouts;
|
|
|
|
public partial class AccountSelectorFlyout : MenuFlyout, IDisposable
|
|
{
|
|
private readonly IEnumerable<MailAccount> _accounts;
|
|
private readonly Func<MailAccount, Task> _onItemSelection;
|
|
|
|
public AccountSelectorFlyout(IEnumerable<MailAccount> accounts, Func<MailAccount, Task> onItemSelection)
|
|
{
|
|
_accounts = accounts;
|
|
_onItemSelection = onItemSelection;
|
|
|
|
foreach (var account in _accounts)
|
|
{
|
|
var pathData = new WinoFontIcon() { Icon = XamlHelpers.GetProviderIcon(account) };
|
|
var menuItem = new MenuFlyoutItem() { Tag = account.Address, Icon = pathData, Text = $"{account.Name} ({account.Address})", MinHeight = 55 };
|
|
|
|
menuItem.Click += AccountClicked;
|
|
Items.Add(menuItem);
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
foreach (var menuItem in Items)
|
|
{
|
|
if (menuItem is MenuFlyoutItem flyoutItem)
|
|
{
|
|
flyoutItem.Click -= AccountClicked;
|
|
}
|
|
}
|
|
}
|
|
|
|
private async void AccountClicked(object sender, Windows.UI.Xaml.RoutedEventArgs e)
|
|
{
|
|
if (sender is MenuFlyoutItem menuItem && menuItem.Tag is string accountAddress)
|
|
{
|
|
var selectedMenuItem = _accounts.FirstOrDefault(a => a.Address == accountAddress);
|
|
|
|
if (selectedMenuItem != null)
|
|
{
|
|
await _onItemSelection(selectedMenuItem);
|
|
}
|
|
}
|
|
|
|
Dispose();
|
|
Hide();
|
|
}
|
|
}
|