Files
Wino-Mail/Wino.Mail.WinUI/Dialogs/NewAccountDialog.xaml.cs
T

252 lines
10 KiB
C#
Raw Normal View History

2025-11-15 14:52:01 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Windows.System;
2026-02-15 11:27:30 +01:00
using Wino.Core.Domain;
2025-11-15 14:52:01 +01:00
using Wino.Core.Domain.Enums;
using Wino.Core.Domain.Interfaces;
using Wino.Core.Domain.Models.Accounts;
2026-04-19 20:13:09 +02:00
using Wino.Core.Domain.Validation;
2025-11-15 14:52:01 +01:00
using Wino.Core.ViewModels.Data;
using Wino.Helpers;
namespace Wino.Mail.WinUI.Dialogs;
public sealed partial class NewAccountDialog : ContentDialog
{
2026-04-14 00:03:48 +02:00
private readonly Dictionary<SpecialImapProvider, string> helpingLinks = new()
2025-11-15 14:52:01 +01:00
{
{ SpecialImapProvider.iCloud, "https://support.apple.com/en-us/102654" },
{ SpecialImapProvider.Yahoo, "http://help.yahoo.com/kb/SLN15241.html" },
};
public static readonly DependencyProperty IsProviderSelectionVisibleProperty = DependencyProperty.Register(nameof(IsProviderSelectionVisible), typeof(bool), typeof(NewAccountDialog), new PropertyMetadata(true));
public static readonly DependencyProperty IsSpecialImapServerPartVisibleProperty = DependencyProperty.Register(nameof(IsSpecialImapServerPartVisible), typeof(bool), typeof(NewAccountDialog), new PropertyMetadata(false));
public static readonly DependencyProperty SelectedMailProviderProperty = DependencyProperty.Register(nameof(SelectedMailProvider), typeof(ProviderDetail), typeof(NewAccountDialog), new PropertyMetadata(null, new PropertyChangedCallback(OnSelectedProviderChanged)));
public static readonly DependencyProperty SelectedColorProperty = DependencyProperty.Register(nameof(SelectedColor), typeof(AppColorViewModel), typeof(NewAccountDialog), new PropertyMetadata(null, new PropertyChangedCallback(OnSelectedColorChanged)));
2026-02-15 11:27:30 +01:00
public static readonly DependencyProperty SelectedCalendarModeIndexProperty = DependencyProperty.Register(nameof(SelectedCalendarModeIndex), typeof(int), typeof(NewAccountDialog), new PropertyMetadata(0));
2025-11-15 14:52:01 +01:00
public AppColorViewModel? SelectedColor
2025-11-15 14:52:01 +01:00
{
get { return (AppColorViewModel?)GetValue(SelectedColorProperty); }
2025-11-15 14:52:01 +01:00
set { SetValue(SelectedColorProperty, value); }
}
2026-02-15 11:27:30 +01:00
public int SelectedCalendarModeIndex
{
get { return (int)GetValue(SelectedCalendarModeIndexProperty); }
set { SetValue(SelectedCalendarModeIndexProperty, value); }
}
2025-11-15 14:52:01 +01:00
/// <summary>
/// Gets or sets current selected mail provider in the dialog.
/// </summary>
public ProviderDetail? SelectedMailProvider
2025-11-15 14:52:01 +01:00
{
get { return (ProviderDetail?)GetValue(SelectedMailProviderProperty); }
2025-11-15 14:52:01 +01:00
set { SetValue(SelectedMailProviderProperty, value); }
}
public bool IsProviderSelectionVisible
{
get { return (bool)GetValue(IsProviderSelectionVisibleProperty); }
set { SetValue(IsProviderSelectionVisibleProperty, value); }
}
public bool IsSpecialImapServerPartVisible
{
get { return (bool)GetValue(IsSpecialImapServerPartVisibleProperty); }
set { SetValue(IsSpecialImapServerPartVisibleProperty, value); }
}
// List of available mail providers for now.
public List<IProviderDetail> Providers { get; set; } = [];
public List<AppColorViewModel> AvailableColors { get; set; } = [];
2026-04-14 00:03:48 +02:00
public List<InitialSynchronizationRangeOption> InitialSynchronizationRanges { get; } =
[
new(InitialSynchronizationRange.ThreeMonths, Translator.AccountCreation_InitialSynchronization_3Months),
new(InitialSynchronizationRange.SixMonths, Translator.AccountCreation_InitialSynchronization_6Months),
new(InitialSynchronizationRange.NineMonths, Translator.AccountCreation_InitialSynchronization_9Months),
new(InitialSynchronizationRange.OneYear, Translator.AccountCreation_InitialSynchronization_Year),
new(InitialSynchronizationRange.Everything, Translator.AccountCreation_InitialSynchronization_Everything)
];
2026-02-15 11:27:30 +01:00
public List<string> CalendarModeOptions { get; } =
[
Translator.ImapCalDavSettingsPage_CalendarModeCalDav,
Translator.ImapCalDavSettingsPage_CalendarModeLocalOnly,
Translator.ImapCalDavSettingsPage_CalendarModeDisabled
];
2025-11-15 14:52:01 +01:00
public AccountCreationDialogResult? Result = null;
2025-11-15 14:52:01 +01:00
public NewAccountDialog()
{
InitializeComponent();
var themeService = WinoApplication.Current.NewThemeService.GetAvailableAccountColors();
AvailableColors = themeService.Select(a => new AppColorViewModel(a)).ToList();
UpdateSelectedColor();
2026-04-14 00:03:48 +02:00
InitialSynchronizationComboBox.SelectedItem = InitialSynchronizationRanges.First(option => option.Range == InitialSynchronizationRange.SixMonths);
UpdateInitialSynchronizationState();
2025-11-15 14:52:01 +01:00
}
private static void OnSelectedProviderChanged(DependencyObject obj, DependencyPropertyChangedEventArgs args)
{
if (obj is NewAccountDialog dialog)
dialog.Validate();
}
private static void OnSelectedColorChanged(DependencyObject obj, DependencyPropertyChangedEventArgs args)
{
if (obj is NewAccountDialog dialog)
dialog.UpdateSelectedColor();
}
private void UpdateSelectedColor()
{
PickColorTextblock.Visibility = SelectedColor == null ? Visibility.Visible : Visibility.Collapsed;
SelectedColorEllipse.Fill = SelectedColor == null ? null : XamlHelpers.GetSolidColorBrushFromHex(SelectedColor.Hex);
}
2026-04-14 00:03:48 +02:00
private void UpdateInitialSynchronizationState()
{
InitialSynchronizationPanel.Visibility = SelectedMailProvider == null ? Visibility.Collapsed : Visibility.Visible;
var selectedOption = InitialSynchronizationComboBox.SelectedItem as InitialSynchronizationRangeOption;
InitialSynchronizationWarningBar.Visibility = selectedOption?.IsEverything == true ? Visibility.Visible : Visibility.Collapsed;
}
private InitialSynchronizationRange GetInitialSynchronizationRange()
{
var selectedRange = (InitialSynchronizationComboBox.SelectedItem as InitialSynchronizationRangeOption)?.Range
?? InitialSynchronizationRange.SixMonths;
return selectedRange;
}
2025-11-15 14:52:01 +01:00
private void CancelClicked(ContentDialog sender, ContentDialogButtonClickEventArgs args)
{
Hide();
}
private void CreateClicked(ContentDialog sender, ContentDialogButtonClickEventArgs args)
{
if (SelectedMailProvider == null)
return;
2026-04-14 00:03:48 +02:00
var initialSynchronizationRange = GetInitialSynchronizationRange();
2025-11-15 14:52:01 +01:00
if (IsSpecialImapServerPartVisible)
{
2026-04-14 00:03:48 +02:00
// Special IMAP detail input.
2026-02-15 11:27:30 +01:00
var calendarSupportMode = SelectedCalendarModeIndex switch
{
1 => ImapCalendarSupportMode.LocalOnly,
2 => ImapCalendarSupportMode.Disabled,
_ => ImapCalendarSupportMode.CalDav
};
var details = new SpecialImapProviderDetails(
SpecialImapAddress.Text.Trim(),
AppSpecificPassword.Password.Trim(),
DisplayNameTextBox.Text.Trim(),
SelectedMailProvider.SpecialImapProvider,
calendarSupportMode);
2026-04-14 00:03:48 +02:00
Result = new AccountCreationDialogResult(
SelectedMailProvider.Type,
AccountNameTextbox.Text.Trim(),
details,
SelectedColor?.Hex ?? string.Empty,
initialSynchronizationRange,
true,
calendarSupportMode != ImapCalendarSupportMode.Disabled);
2025-11-15 14:52:01 +01:00
Hide();
return;
}
Validate();
2026-04-14 00:03:48 +02:00
if (IsPrimaryButtonEnabled)
2025-11-15 14:52:01 +01:00
{
if (SelectedMailProvider.SpecialImapProvider != SpecialImapProvider.None)
{
2026-04-14 00:03:48 +02:00
// This step requires app-specific password login for some providers.
2025-11-15 14:52:01 +01:00
args.Cancel = true;
IsProviderSelectionVisible = false;
IsSpecialImapServerPartVisible = true;
Validate();
}
else
{
2026-04-14 00:03:48 +02:00
Result = new AccountCreationDialogResult(
SelectedMailProvider.Type,
AccountNameTextbox.Text.Trim(),
null,
SelectedColor?.Hex ?? string.Empty,
initialSynchronizationRange,
true,
true);
2025-11-15 14:52:01 +01:00
Hide();
}
}
}
private void InputChanged(object sender, TextChangedEventArgs e) => Validate();
private void SenderNameChanged(object sender, TextChangedEventArgs e) => Validate();
private void Validate()
{
ValidateCreateButton();
ValidateNames();
2026-04-14 00:03:48 +02:00
UpdateInitialSynchronizationState();
2025-11-15 14:52:01 +01:00
}
// Returns whether we can create account or not.
private void ValidateCreateButton()
{
bool shouldEnable = SelectedMailProvider != null
&& SelectedMailProvider.IsSupported
&& !string.IsNullOrEmpty(AccountNameTextbox.Text)
&& (IsSpecialImapServerPartVisible ? (!string.IsNullOrEmpty(AppSpecificPassword.Password)
&& !string.IsNullOrEmpty(DisplayNameTextBox.Text)
2026-04-19 20:13:09 +02:00
&& MailAccountAddressValidator.IsValid(SpecialImapAddress.Text)) : true);
2025-11-15 14:52:01 +01:00
IsPrimaryButtonEnabled = shouldEnable;
}
private void ValidateNames()
{
AccountNameTextbox.IsEnabled = SelectedMailProvider != null;
}
private void DialogOpened(ContentDialog sender, ContentDialogOpenedEventArgs args) => Validate();
private void BackClicked(object sender, RoutedEventArgs e)
{
IsSpecialImapServerPartVisible = false;
IsProviderSelectionVisible = true;
Validate();
}
private void ImapPasswordChanged(object sender, RoutedEventArgs e) => Validate();
2026-04-14 00:03:48 +02:00
private void InitialSynchronizationSelectionChanged(object sender, SelectionChangedEventArgs e)
=> UpdateInitialSynchronizationState();
2025-11-15 14:52:01 +01:00
private async void AppSpecificHelpButtonClicked(object sender, RoutedEventArgs e)
{
if (SelectedMailProvider == null ||
!helpingLinks.TryGetValue(SelectedMailProvider.SpecialImapProvider, out var helpUrl))
{
return;
}
2025-11-15 14:52:01 +01:00
await Launcher.LaunchUriAsync(new Uri(helpUrl));
}
}