56 lines
2.3 KiB
C#
56 lines
2.3 KiB
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Toolkit.Foundation;
|
|
|
|
namespace Wallet;
|
|
|
|
public class WalletNavigationCollectionViewModelActivationHandler(IPublisher publisher,
|
|
IWalletHostCollection Wallets) :
|
|
INotificationHandler<ActivationEventArgs<IWalletNavigationViewModel>>
|
|
{
|
|
public Task Handle(ActivationEventArgs<IWalletNavigationViewModel> args)
|
|
{
|
|
bool selected = true;
|
|
|
|
foreach (IComponentHost Wallet in Wallets.OrderBy(x =>
|
|
{
|
|
IConfigurationDescriptor<WalletConfiguration> descriptor = x.Services.GetRequiredService<IConfigurationDescriptor<WalletConfiguration>>();
|
|
return descriptor?.Name;
|
|
},
|
|
Comparer<string?>.Create((x, y) =>
|
|
{
|
|
bool xIsNumeric = int.TryParse(x, out int xNum);
|
|
bool yIsNumeric = int.TryParse(y, out int yNum);
|
|
|
|
return (xIsNumeric, yIsNumeric) switch
|
|
{
|
|
(true, true) => xNum.CompareTo(yNum),
|
|
(true, false) => -1,
|
|
(false, true) => 1,
|
|
_ => string.Compare(x, y, StringComparison.Ordinal)
|
|
};
|
|
})))
|
|
{
|
|
if (Wallet.Services.GetRequiredService<IConfigurationDescriptor<WalletConfiguration>>()
|
|
is IConfigurationDescriptor<WalletConfiguration> configuration)
|
|
{
|
|
if (Wallet.Services.GetRequiredService<IServiceFactory>() is IServiceFactory factory)
|
|
{
|
|
IDecoratorService<ProfileImage<IImageDescriptor>> profileImageDecorator =
|
|
Wallet.Services.GetRequiredService<IDecoratorService<ProfileImage<IImageDescriptor>>>();
|
|
ProfileImage<IImageDescriptor>? profileImage = profileImageDecorator.Value;
|
|
|
|
if (factory.Create<WalletNavigationViewModel>(args => args.Initialize(), configuration.Name, profileImage?.Value ?? null, selected)
|
|
is WalletNavigationViewModel viewModel)
|
|
{
|
|
publisher.Publish(Create.As<IWalletNavigationViewModel>(viewModel),
|
|
nameof(WalletNavigationCollectionViewModel));
|
|
|
|
selected = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
} |