CalDav synchronizer, new IMAP setup/edit page.
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
<ContentDialog
|
||||
x:Class="Wino.Dialogs.NewImapSetupDialog"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="using:Wino.Dialogs"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
Closed="ImapSetupDialogClosed"
|
||||
Closing="OnDialogClosing"
|
||||
DefaultButton="Secondary"
|
||||
FullSizeDesired="False"
|
||||
Opened="ImapSetupDialogOpened"
|
||||
Style="{StaticResource WinoDialogStyle}"
|
||||
mc:Ignorable="d">
|
||||
|
||||
<ContentDialog.Resources>
|
||||
<Thickness x:Key="ContentDialogPadding">0,0,0,0</Thickness>
|
||||
<!--<x:Double x:Key="ContentDialogMinWidth">768</x:Double>-->
|
||||
<x:Double x:Key="ContentDialogMaxWidth">1920</x:Double>
|
||||
<!--<x:Double x:Key="ContentDialogMinHeight">768</x:Double>
|
||||
<x:Double x:Key="ContentDialogMaxHeight">2000</x:Double>-->
|
||||
</ContentDialog.Resources>
|
||||
|
||||
<Frame x:Name="ImapFrame" />
|
||||
</ContentDialog>
|
||||
@@ -1,122 +0,0 @@
|
||||
using System;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using CommunityToolkit.Mvvm.Messaging;
|
||||
using CommunityToolkit.WinUI;
|
||||
using Microsoft.UI.Xaml.Controls;
|
||||
using Microsoft.UI.Xaml.Media.Animation;
|
||||
using Wino.Core.Domain.Entities.Shared;
|
||||
using Wino.Core.Domain.Enums;
|
||||
using Wino.Core.Domain.Interfaces;
|
||||
using Wino.Core.Domain.Models.Accounts;
|
||||
using Wino.Messaging.Client.Mails;
|
||||
using Wino.Views.ImapSetup;
|
||||
|
||||
namespace Wino.Dialogs;
|
||||
|
||||
public enum ImapSetupState
|
||||
{
|
||||
Welcome,
|
||||
AutoDiscovery,
|
||||
TestingConnection,
|
||||
PreparingFolder
|
||||
}
|
||||
|
||||
public sealed partial class NewImapSetupDialog : ContentDialog,
|
||||
IRecipient<ImapSetupNavigationRequested>,
|
||||
IRecipient<ImapSetupBackNavigationRequested>,
|
||||
IRecipient<ImapSetupDismissRequested>,
|
||||
IImapAccountCreationDialog
|
||||
{
|
||||
private TaskCompletionSource<CustomServerInformation> _getServerInfoTaskCompletionSource = new TaskCompletionSource<CustomServerInformation>();
|
||||
private TaskCompletionSource<bool> dialogOpened = new TaskCompletionSource<bool>();
|
||||
private bool isDismissRequested = false;
|
||||
|
||||
public NewImapSetupDialog()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
// Not used for now.
|
||||
public AccountCreationDialogState State { get; set; }
|
||||
|
||||
public void Complete(bool cancel)
|
||||
{
|
||||
if (!_getServerInfoTaskCompletionSource.Task.IsCompleted)
|
||||
_getServerInfoTaskCompletionSource.TrySetResult(null!);
|
||||
|
||||
isDismissRequested = true;
|
||||
|
||||
Hide();
|
||||
}
|
||||
|
||||
public Task<CustomServerInformation> GetCustomServerInformationAsync() => _getServerInfoTaskCompletionSource.Task;
|
||||
|
||||
public async void Receive(ImapSetupBackNavigationRequested message)
|
||||
{
|
||||
// Frame go back
|
||||
if (message.PageType == null)
|
||||
{
|
||||
if (ImapFrame.CanGoBack)
|
||||
{
|
||||
// Go back using Dispatcher to allow navigations in OnNavigatedTo.
|
||||
await DispatcherQueue.EnqueueAsync(() =>
|
||||
{
|
||||
ImapFrame.GoBack();
|
||||
});
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
ImapFrame.Navigate(message.PageType, message.Parameter, new SlideNavigationTransitionInfo() { Effect = SlideNavigationTransitionEffect.FromLeft });
|
||||
}
|
||||
}
|
||||
|
||||
public void Receive(ImapSetupNavigationRequested message)
|
||||
{
|
||||
ImapFrame.Navigate(message.PageType, message.Parameter, new SlideNavigationTransitionInfo() { Effect = SlideNavigationTransitionEffect.FromRight });
|
||||
}
|
||||
|
||||
public void Receive(ImapSetupDismissRequested message) => _getServerInfoTaskCompletionSource.TrySetResult(message.CompletedServerInformation);
|
||||
|
||||
public async Task ShowDialogAsync(CancellationTokenSource cancellationTokenSource)
|
||||
{
|
||||
Opened += DialogOpened;
|
||||
|
||||
_ = ShowAsync();
|
||||
|
||||
await dialogOpened.Task;
|
||||
}
|
||||
|
||||
private void DialogOpened(ContentDialog sender, ContentDialogOpenedEventArgs args)
|
||||
{
|
||||
Opened -= DialogOpened;
|
||||
|
||||
dialogOpened?.SetResult(true);
|
||||
}
|
||||
|
||||
public void ShowPreparingFolders()
|
||||
{
|
||||
ImapFrame.Navigate(typeof(PreparingImapFoldersPage), new SlideNavigationTransitionInfo() { Effect = SlideNavigationTransitionEffect.FromLeft });
|
||||
}
|
||||
|
||||
public void StartImapConnectionSetup(MailAccount account) => ImapFrame.Navigate(typeof(WelcomeImapSetupPage), account, new DrillInNavigationTransitionInfo());
|
||||
public void StartImapConnectionSetup(AccountCreationDialogResult accountCreationDialogResult) => ImapFrame.Navigate(typeof(WelcomeImapSetupPage), accountCreationDialogResult, new DrillInNavigationTransitionInfo());
|
||||
|
||||
private void ImapSetupDialogClosed(ContentDialog sender, ContentDialogClosedEventArgs args)
|
||||
{
|
||||
WeakReferenceMessenger.Default.Unregister<ImapSetupNavigationRequested>(this);
|
||||
WeakReferenceMessenger.Default.Unregister<ImapSetupBackNavigationRequested>(this);
|
||||
WeakReferenceMessenger.Default.Unregister<ImapSetupDismissRequested>(this);
|
||||
}
|
||||
|
||||
private void ImapSetupDialogOpened(ContentDialog sender, ContentDialogOpenedEventArgs args)
|
||||
{
|
||||
WeakReferenceMessenger.Default.Register<ImapSetupNavigationRequested>(this);
|
||||
WeakReferenceMessenger.Default.Register<ImapSetupBackNavigationRequested>(this);
|
||||
WeakReferenceMessenger.Default.Register<ImapSetupDismissRequested>(this);
|
||||
}
|
||||
|
||||
// Don't hide the dialog unless dismiss is requested from the inner pages specifically.
|
||||
private void OnDialogClosing(ContentDialog sender, ContentDialogClosingEventArgs args) => args.Cancel = !isDismissRequested;
|
||||
}
|
||||
Reference in New Issue
Block a user