ant-design-blazor/components/list/ListItemMeta.razor
yanb1 2b3e037e14 feat(module: list): ListItemMeta support description template (#959)
* Added DescriptionTemplate

* Added support for DescriptionTemplate property.
2021-01-10 22:41:57 +08:00

50 lines
1.2 KiB
C#

@namespace AntDesign
@inherits AntDomComponentBase
<div class="@ClassMapper.Class" style="@Style">
@if (!string.IsNullOrWhiteSpace(Avatar) || AvatarTemplate != null)
{
<div class="ant-list-item-meta-avatar">
@if (!string.IsNullOrWhiteSpace(Avatar))
{
<Avatar Src="@Avatar"></Avatar>
}
else
{
@AvatarTemplate
}
</div>
}
<div class="ant-list-item-meta-content">
@if (!string.IsNullOrWhiteSpace(Title) || TitleTemplate != null)
{
<div>
<h4 class="ant-list-item-meta-title">
@if (!string.IsNullOrWhiteSpace(Title))
{
@Title
}
else
{
@TitleTemplate
}
</h4>
</div>
}
<div class="ant-list-item-meta-description">
@if (!string.IsNullOrWhiteSpace(Description))
{
@Description
}
else
{
@DescriptionTemplate
}
</div>
</div>
</div>