mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
ef4701b6ed
* refactor(module: modal): refactor the code of Modal, Confirm and Dialog refactor details: - Add DialogWrapper compontent to control the logic of dialog removal from DOM - Add the appropriate folders for Dialog, Modal, and Confirm - Remove methods with the same logic but different names in ConfirmService - Split Title into Title (string) and Titletemplate (renderfragment) - Add comments to code - Rename ConfirmDialog to Confirm - Specification of method name in ConfirmService - Adjust the time of throttle function for draggabe modal - Extract the common part of ModalOptions, ConfirmOptions and DialogOptions as DialogOptionsBase * refactor: move DefaultCloseIcon etc. static members to DialogOptionsBase * docs(module: modal): update docs * fix: dialog incorrect waiting * fix: pickup missing pr/7
134 lines
3.4 KiB
C#
134 lines
3.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class ConfirmRef
|
|
{
|
|
#region internal
|
|
|
|
internal IModalTemplate ModalTemplate { get; set; }
|
|
internal bool IsCreateByModalService => Service != null;
|
|
internal TaskCompletionSource<ConfirmResult> TaskCompletionSource { get; set; }
|
|
|
|
internal ConfirmRef(ConfirmOptions config)
|
|
{
|
|
Config = config;
|
|
}
|
|
|
|
internal ConfirmRef(ConfirmOptions config, ModalService service)
|
|
{
|
|
Config = config;
|
|
Service = service;
|
|
}
|
|
internal Confirm Confirm { get; set; }
|
|
|
|
#endregion
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
protected ModalService Service { get; set; }
|
|
|
|
/// <summary>
|
|
/// Confirm dialog options
|
|
/// </summary>
|
|
public ConfirmOptions Config { get; private set; }
|
|
|
|
/// <summary>
|
|
/// on Confirm open
|
|
/// </summary>
|
|
public Func<Task> OnOpen { get; set; }
|
|
|
|
/// <summary>
|
|
/// on Confirm close
|
|
/// </summary>
|
|
public Func<Task> OnClose { get; set; }
|
|
|
|
/// <summary>
|
|
/// open Confirm dialog
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task OpenAsync()
|
|
{
|
|
await (Service?.OpenConfirmAsync(this) ?? Task.CompletedTask);
|
|
}
|
|
|
|
/// <summary>
|
|
/// close Confirm dialog
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task CloseAsync()
|
|
{
|
|
await (Service?.DestroyConfirmAsync(this) ?? Task.CompletedTask);
|
|
}
|
|
|
|
/// <summary>
|
|
/// update Confirm dialog config which Visible=true
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task UpdateConfigAsync()
|
|
{
|
|
await (Service?.UpdateConfirmAsync(this) ?? Task.CompletedTask);
|
|
}
|
|
|
|
/// <summary>
|
|
/// update Confirm dialog config with a new ConfirmOptions
|
|
/// </summary>
|
|
/// <param name="config"></param>
|
|
/// <returns></returns>
|
|
public async Task UpdateConfigAsync(ConfirmOptions config)
|
|
{
|
|
Config = config;
|
|
await UpdateConfigAsync();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// ConfirmRef for
|
|
/// </summary>
|
|
/// <typeparam name="TResult"></typeparam>
|
|
public class ConfirmRef<TResult> : ConfirmRef
|
|
{
|
|
/// <summary>
|
|
/// on Cancel button click
|
|
/// </summary>
|
|
public Func<TResult, Task> OnCancel { get; set; }
|
|
|
|
/// <summary>
|
|
/// on OK button click
|
|
/// </summary>
|
|
public Func<TResult, Task> OnOk { get; set; }
|
|
|
|
internal ConfirmRef(ConfirmOptions config, ModalService service) : base(config, service)
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Trigger OK button
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task TriggerOkAsync(TResult result)
|
|
{
|
|
await base.CloseAsync();
|
|
await (OnOk?.Invoke(result) ?? Task.CompletedTask);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Trigger cancel button
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task TriggerCancelAsync(TResult result)
|
|
{
|
|
await base.CloseAsync();
|
|
await (OnCancel?.Invoke(result) ?? Task.CompletedTask);
|
|
}
|
|
}
|
|
}
|