mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
7a4ab2a302
* fix(module: dropdown): couldn't auto close menu * refactor(module: overlay): change public function to internal * fix(module: dropdown): couldn't close in modal
97 lines
2.5 KiB
C#
97 lines
2.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using AntDesign.Internal;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
using OneOf;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public partial class Popconfirm : OverlayTrigger
|
|
{
|
|
[Parameter]
|
|
public OneOf<string, RenderFragment> Title { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string CancelText { get; set; } = "Cancel";
|
|
|
|
[Parameter]
|
|
public string OkText { get; set; } = "OK";
|
|
|
|
[Parameter]
|
|
public string OkType { get; set; } = "primary";
|
|
|
|
[Parameter]
|
|
public ButtonProps OkButtonProps { get; set; }
|
|
|
|
[Parameter]
|
|
public ButtonProps CancelButtonProps { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment Icon { get; set; }
|
|
|
|
[Parameter]
|
|
public EventCallback<MouseEventArgs> OnCancel { get; set; }
|
|
|
|
[Parameter]
|
|
public EventCallback<MouseEventArgs> OnConfirm { get; set; }
|
|
|
|
[Parameter]
|
|
public bool ArrowPointAtCenter { get; set; } = false;
|
|
|
|
[Parameter]
|
|
public double MouseEnterDelay { get; set; } = 0.1;
|
|
|
|
[Parameter]
|
|
public double MouseLeaveDelay { get; set; } = 0.1;
|
|
|
|
public Popconfirm()
|
|
{
|
|
PrefixCls = "ant-popover";
|
|
Placement = PlacementType.Top;
|
|
Trigger = new[] { TriggerType.Click };
|
|
}
|
|
|
|
internal override async Task Show(int? overlayLeft = null, int? overlayTop = null)
|
|
{
|
|
if (Trigger.Contains(TriggerType.Hover))
|
|
{
|
|
await Task.Delay((int)(MouseEnterDelay * 1000));
|
|
}
|
|
|
|
await base.Show(overlayLeft, overlayTop);
|
|
}
|
|
|
|
internal override async Task Hide(bool force = false)
|
|
{
|
|
if (Trigger.Contains(TriggerType.Hover))
|
|
{
|
|
await Task.Delay((int)(MouseLeaveDelay * 1000));
|
|
}
|
|
|
|
await base.Hide(force);
|
|
}
|
|
|
|
private async Task Cancel(MouseEventArgs args)
|
|
{
|
|
if (OnCancel.HasDelegate)
|
|
{
|
|
await OnCancel.InvokeAsync(args);
|
|
}
|
|
await base.Hide();
|
|
}
|
|
|
|
private async Task Confirm(MouseEventArgs args)
|
|
{
|
|
if (OnConfirm.HasDelegate)
|
|
{
|
|
await OnConfirm.InvokeAsync(args);
|
|
}
|
|
await base.Hide();
|
|
}
|
|
}
|
|
}
|