mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +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
40 lines
907 B
C#
40 lines
907 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
/// <summary>
|
|
/// modal footer Component
|
|
/// </summary>
|
|
public partial class ModalFooter
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[CascadingParameter]
|
|
public DialogOptions ModalProps { get; set; }
|
|
|
|
private async Task HandleCancel(MouseEventArgs e)
|
|
{
|
|
var onCancel = ModalProps.OnCancel;
|
|
if (onCancel != null)
|
|
{
|
|
await onCancel.Invoke(e);
|
|
}
|
|
}
|
|
|
|
private async Task HandleOk(MouseEventArgs e)
|
|
{
|
|
var onOk = ModalProps.OnOk;
|
|
if (onOk != null)
|
|
{
|
|
await onOk.Invoke(e);
|
|
}
|
|
}
|
|
}
|
|
}
|