mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
86 lines
2.1 KiB
C#
86 lines
2.1 KiB
C#
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Components;
|
|
using OneOf;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public partial class Card : AntDomComponentBase
|
|
{
|
|
[Parameter]
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment Body { get; set; }
|
|
|
|
[Parameter]
|
|
public bool Bordered { get; set; } = true;
|
|
|
|
[Parameter]
|
|
public bool Hoverable { get; set; } = false;
|
|
|
|
[Parameter]
|
|
public bool Loading { get; set; } = false;
|
|
|
|
[Parameter]
|
|
public string BodyStyle { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment Cover { get; set; }
|
|
|
|
[Parameter]
|
|
public IList<RenderFragment> Actions { get; set; } = new List<RenderFragment>();
|
|
|
|
[Parameter]
|
|
public string Type { get; set; }
|
|
|
|
[Parameter]
|
|
public string Size { get; set; }
|
|
|
|
[Parameter]
|
|
public string Title { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment TitleTemplate { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment Extra { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment CardTabs { get; set; }
|
|
|
|
private bool _hasGrids;
|
|
|
|
protected void SetClassMap()
|
|
{
|
|
this.ClassMapper
|
|
.Add("ant-card")
|
|
.If("ant-card-loading", () => Loading)
|
|
.If("ant-card-bordered", () => Bordered)
|
|
.If("ant-card-hoverable", () => Hoverable)
|
|
.If("ant-card-small", () => Size == "small")
|
|
.If("ant-card-contain-grid", () => _hasGrids)
|
|
.If("ant-card-type-inner", () => Type == "inner")
|
|
.If("ant-card-contain-tabs", () => CardTabs != null)
|
|
;
|
|
}
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
SetClassMap();
|
|
}
|
|
|
|
internal void MarkHasGrid()
|
|
{
|
|
_hasGrids = true;
|
|
StateHasChanged();
|
|
}
|
|
|
|
internal void SetBody(RenderFragment body)
|
|
{
|
|
this.Body = body;
|
|
StateHasChanged();
|
|
}
|
|
}
|
|
}
|