mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
1bdece0ea8
* feat(module: modal): add Modal locale * feat(module: confirm): locale support for zh-cn, en-us * docs: add the demo of override locale's custom text * feat: locale's json files add confirm configuration * fix: custom ButtonProps override Button[1,2,3]Text or OK(Cancel)Text * docs: using InvokeAsync to invoke StateHasChanged * docs(module: modal): add override locale de
186 lines
7.4 KiB
C#
186 lines
7.4 KiB
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
@using OneOf;
|
|
|
|
<DialogWrapper Visible="@Config.Visible"
|
|
DestroyOnClose="true"
|
|
Config="@_dialogOptions"
|
|
Style="@Config.Style"
|
|
>
|
|
<div class="ant-modal-confirm-body-wrapper">
|
|
<div class="ant-modal-confirm-body">
|
|
@if (Config.Icon != null)
|
|
{
|
|
@(Config.Icon)
|
|
}
|
|
|
|
@if (Config.TitleTemplate != null)
|
|
{
|
|
<span class="ant-modal-confirm-title">
|
|
@Config.TitleTemplate
|
|
</span>
|
|
}
|
|
else if (!string.IsNullOrWhiteSpace(Config.Title))
|
|
{
|
|
<span class="ant-modal-confirm-title">
|
|
@Config.Title
|
|
</span>
|
|
}
|
|
|
|
<div class="ant-modal-confirm-content">
|
|
@if (Config.Content.IsT0)
|
|
{
|
|
@(Config.Content.AsT0)
|
|
}
|
|
else
|
|
{
|
|
@(Config.Content.AsT1)
|
|
}
|
|
</div>
|
|
</div>
|
|
<div class="ant-modal-confirm-btns">
|
|
@{
|
|
RenderFragment BuildButton(ButtonProps props,
|
|
Func<MouseEventArgs, Task> onClick, out Button btnRef)
|
|
{
|
|
btnRef = null;
|
|
if (props == null) return null;
|
|
var onClickEvent = new EventCallback<MouseEventArgs>(this, onClick);
|
|
Button innerBtnRef = null;
|
|
var children = props.ChildContent!.Value;
|
|
RenderFragment compontent = (@<Button @ref="@innerBtnRef"
|
|
OnClick="@onClickEvent"
|
|
Block="@props.Block"
|
|
Ghost="@props.Ghost"
|
|
Search="@props.Search"
|
|
Loading="@props.Loading"
|
|
Type="@props.Type"
|
|
Shape="@props.Shape"
|
|
Size="@props.Size"
|
|
Icon="@props.Icon"
|
|
Disabled="@props.Disabled"
|
|
Danger="@props.IsDanger">
|
|
@{
|
|
if (children.IsT0)
|
|
{
|
|
@(children.AsT0)
|
|
}
|
|
else
|
|
{
|
|
@(children.AsT1)
|
|
}
|
|
}
|
|
</Button>);
|
|
btnRef = innerBtnRef;
|
|
return compontent;
|
|
}
|
|
}
|
|
@switch (Config.ConfirmButtons)
|
|
{
|
|
case ConfirmButtons.OK:
|
|
{
|
|
@BuildButton(Config.Button1Props, async (e) =>
|
|
{
|
|
await HandleBtn1Click(e, ConfirmResult.OK);
|
|
}, out _okBtn)
|
|
;
|
|
break;
|
|
}
|
|
case ConfirmButtons.OKCancel:
|
|
{
|
|
|
|
@BuildButton(Config.Button1Props, async (e) =>
|
|
{
|
|
await HandleBtn1Click(e, ConfirmResult.OK);
|
|
}, out _okBtn)
|
|
;
|
|
|
|
@BuildButton(Config.Button2Props, async (e) =>
|
|
{
|
|
await HandleBtn2Click(e, ConfirmResult.Cancel);
|
|
}, out _cancelBtn)
|
|
;
|
|
|
|
break;
|
|
}
|
|
case ConfirmButtons.YesNo:
|
|
{
|
|
@BuildButton(Config.Button1Props, async (e) =>
|
|
{
|
|
await HandleBtn1Click(e, ConfirmResult.Yes);
|
|
}, out _okBtn)
|
|
;
|
|
|
|
@BuildButton(Config.Button2Props, async (e) =>
|
|
{
|
|
await HandleBtn2Click(e, ConfirmResult.No);
|
|
}, out _cancelBtn)
|
|
;
|
|
|
|
break;
|
|
}
|
|
case ConfirmButtons.YesNoCancel:
|
|
{
|
|
@BuildButton(Config.Button1Props, async (e) =>
|
|
{
|
|
await HandleBtn1Click(e, ConfirmResult.Yes);
|
|
}, out _okBtn)
|
|
;
|
|
|
|
@BuildButton(Config.Button2Props, async (e) =>
|
|
{
|
|
await HandleBtn2Click(e, ConfirmResult.No);
|
|
}, out _cancelBtn)
|
|
;
|
|
|
|
@BuildButton(Config.Button3Props, async (e) =>
|
|
{
|
|
await HandleBtn3Click(e, ConfirmResult.Cancel);
|
|
}, out _)
|
|
;
|
|
break;
|
|
}
|
|
|
|
case ConfirmButtons.RetryCancel:
|
|
{
|
|
@BuildButton(Config.Button1Props, async (e) =>
|
|
{
|
|
await HandleBtn1Click(e, ConfirmResult.Retry);
|
|
}, out _okBtn)
|
|
;
|
|
|
|
@BuildButton(Config.Button2Props, async (e) =>
|
|
{
|
|
await HandleBtn2Click(e, ConfirmResult.Cancel);
|
|
}, out _cancelBtn)
|
|
;
|
|
|
|
break;
|
|
}
|
|
case ConfirmButtons.AbortRetryIgnore:
|
|
{
|
|
@BuildButton(Config.Button1Props, async (e) =>
|
|
{
|
|
await HandleBtn1Click(e, ConfirmResult.Abort);
|
|
}, out _okBtn)
|
|
;
|
|
|
|
@BuildButton(Config.Button2Props, async (e) =>
|
|
{
|
|
await HandleBtn2Click(e, ConfirmResult.Retry);
|
|
}, out _cancelBtn)
|
|
;
|
|
|
|
@BuildButton(Config.Button3Props, async (e) =>
|
|
{
|
|
await HandleBtn3Click(e, ConfirmResult.Ignore);
|
|
}, out _)
|
|
;
|
|
|
|
break;
|
|
}
|
|
}
|
|
</div>
|
|
</div>
|
|
</DialogWrapper>
|