ant-design-blazor/components/badge/Badge.razor

60 lines
2.0 KiB
C#

@namespace AntDesign
@inherits AntDomComponentBase
<span class="@ClassMapper.Class" @ref="Ref" id="@Id">
@if (ChildContent != null)
{
@ChildContent
}
@if (HasStatusOrColor && ChildContent == null)
{
<span class="@($"ant-badge-status-dot {(StatusOrPresetColor!=null? $"ant-badge-status-{StatusOrPresetColor}":"")}")" style="@DotColorStyle @Style"></span>
@if (!string.IsNullOrEmpty(Text))
{
<span class="ant-badge-status-text">@Text</span>
}
}
else if (CountTemplate != null)
{
<span role="img" class="ant-scroll-number-custom-component">@CountTemplate</span>
}
else
{
@if (!string.IsNullOrEmpty(Text))
{
<span class="ant-badge-status-text">@Text</span>
}
if (_showSup)
{
<sup class="@CountClassMapper.Class" style="@CountStyle @DotColorStyle @Style" title="@Count">
@if (!Dot)
{
@if (Count <= OverflowCount)
{
@for (int i = 0; i < _maxNumberArray.Length; i++)
{
@if (_countArray.Length > i)
{
<span class="ant-scroll-number-only" style="transform: @($"translateY(-{_countArray[i] * 100}%)")">
@foreach (var p in _countSingleArray)
{
<p class="ant-scroll-number-only-unit @(p == _countArray[i] ? "current" : "")">
@p
</p>
}
</span>
}
}
}
else
{
@($"{OverflowCount}+")
}
}
</sup>
}
}
</span>