ant-design-blazor/components/empty/Empty.razor.cs
颢源 a2787f5673 feat: add transfer (#148)
* transfer_brancn

* fix: transfer demos and empty status

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-05-26 15:21:47 +08:00

53 lines
1.4 KiB
C#

using Microsoft.AspNetCore.Components;
using OneOf;
namespace AntBlazor
{
public partial class Empty : AntDomComponentBase
{
[Parameter]
public string PrefixCls { get; set; } = "ant-empty";
/// <summary>
/// "ltr"|"rtl"
/// </summary>
[Parameter]
public string Direction { get; set; } = "ltr";
[Parameter]
public string ImageStyle { get; set; }
[Parameter]
public bool Small { get; set; }
[Parameter]
public RenderFragment ChildContent { get; set; }
[Parameter]
public OneOf<string, bool, RenderFragment> Description { get; set; } = "暂无数据";
[Parameter]
public OneOf<string, RenderFragment> Image { get; set; } = Empty.PRESENTED_IMAGE_DEFAULT;
protected void SetClass()
{
this.ClassMapper.Clear()
.Add(PrefixCls)
.If($"{PrefixCls}-normal", () => Image.IsT1 && Image.AsT1 == Empty.PRESENTED_IMAGE_SIMPLE)
.If($"{PrefixCls}-{Direction}", () => Direction.IsIn("ltr", "rlt"))
.If($"{PrefixCls}-small", () => Small)
;
}
protected override void OnInitialized()
{
this.SetClass();
}
protected override void OnParametersSet()
{
this.SetClass();
}
}
}