mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
cbc5e823f0
* fix: card title template * fix: template:badge,collapse * fix: comment refactor template * fix: ribbonTests * feat: descriptions refactor template * feat: empty refactor template * feat: list refactor template * feat: menu refactor template * feat: confirm add question icon * feat: pageHeader and statistic refactor template * feat: popconfirm refactor template * feat: popver refactor template * feat: result refactor template * feat: step refactor template * feat: switch refactor template * feat: table refactor template * feat: transfer refactor template * feat: optimized code * fix: pageheader * refactor(module: empty): remove empty image constant images Co-authored-by: ElderJames <shunjiey@hotmail.com>
74 lines
1.9 KiB
C#
74 lines
1.9 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; } = false;
|
|
|
|
[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 AntCardTab { get; set; }
|
|
|
|
internal IList<CardGrid> Grids { get; set; } = new List<CardGrid>();
|
|
|
|
protected void SetClassMap()
|
|
{
|
|
this.ClassMapper.Clear()
|
|
.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", () => Grids.Count > 0)
|
|
.If("ant-card-type-inner", () => Type == "inner")
|
|
.If("ant-card-contain-tabs", () => AntCardTab != null)
|
|
;
|
|
}
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
SetClassMap();
|
|
}
|
|
}
|
|
}
|