2020-05-29 00:33:49 +08:00
|
|
|
@namespace AntDesign
|
2020-04-23 17:13:56 +08:00
|
|
|
@inherits AntDomComponentBase
|
2020-03-22 12:06:48 +08:00
|
|
|
|
2020-04-23 17:13:56 +08:00
|
|
|
@if (!_isClosed)
|
2020-03-22 12:06:48 +08:00
|
|
|
{
|
2020-04-23 17:13:56 +08:00
|
|
|
<div class="@ClassMapper.Class" style="@Style" Id="@Id">
|
2020-03-22 12:06:48 +08:00
|
|
|
@if (ShowIcon)
|
|
|
|
{
|
2020-04-23 17:13:56 +08:00
|
|
|
<span role="img" aria-label="@IconType" class="@($"anticon anticon-{IconType} ant-alert-icon")">
|
2020-06-07 19:41:00 +08:00
|
|
|
<Icon type="@IconType" fill="currentColor"/>
|
2020-03-22 12:06:48 +08:00
|
|
|
</span>
|
|
|
|
}
|
|
|
|
@if (!string.IsNullOrEmpty(Message))
|
|
|
|
{
|
|
|
|
<span class="ant-alert-message">@Message</span>
|
|
|
|
}
|
|
|
|
@if (!string.IsNullOrEmpty(Description))
|
|
|
|
{
|
|
|
|
<span class="ant-alert-description">@Description</span>
|
|
|
|
}
|
|
|
|
@if (Closable)
|
|
|
|
{
|
|
|
|
<button type="button" class="ant-alert-close-icon" tabindex="0" @onclick="@OnCloseHandler">
|
|
|
|
<span role="img" aria-label="close" class="anticon anticon-close">
|
|
|
|
@if (!string.IsNullOrEmpty(CloseText))
|
|
|
|
{
|
|
|
|
<span class="ant-alert-close-text">@CloseText</span>
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
<svg viewBox="64 64 896 896" focusable="false" class="" data-icon="close" width="1em" height="1em" fill="currentColor" aria-hidden="true">
|
|
|
|
<path d="M563.8 512l262.5-312.9c4.4-5.2.7-13.1-6.1-13.1h-79.8c-4.7 0-9.2 2.1-12.3 5.7L511.6 449.8 295.1 191.7c-3-3.6-7.5-5.7-12.3-5.7H203c-6.8 0-10.5 7.9-6.1 13.1L459.4 512 196.9 824.9A7.95 7.95 0 00203 838h79.8c4.7 0 9.2-2.1 12.3-5.7l216.5-258.1 216.5 258.1c3 3.6 7.5 5.7 12.3 5.7h79.8c6.8 0 10.5-7.9 6.1-13.1L563.8 512z">
|
|
|
|
</path>
|
|
|
|
</svg>
|
|
|
|
}
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
}
|
|
|
|
@ChildContent
|
|
|
|
</div>
|
|
|
|
}
|