ant-design-blazor/components/statistic/StatisticComponentBase.razor.cs
WhyILoveSpringRoll cbd9e53058
fix(module: statistic): make CountDown reset after the value was changed (#2587)
* 添加CountDown的reset功能,设置绑定的value后countdown会自动刷新

* 在CountDown Dispose时释放内部Timer

* update demo

Co-authored-by: James Yeung <shunjiey@hotmail.com>
2022-08-08 14:59:44 +08:00

60 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Components;
using OneOf;
namespace AntDesign
{
public abstract class StatisticComponentBase<T> : AntDomComponentBase
{
/// <summary>
/// 设置数值的前缀
/// </summary>
[Parameter] public string Prefix { get; set; }
[Parameter] public RenderFragment PrefixTemplate { get; set; }
/// <summary>
/// 设置数值的后缀
/// </summary>
[Parameter] public string Suffix { get; set; }
[Parameter] public RenderFragment SuffixTemplate { get; set; }
/// <summary>
/// 数值的标题
/// </summary>
[Parameter] public string Title { get; set; }
[Parameter] public RenderFragment TitleTemplate { get; set; }
/// <summary>
/// 数值内容
/// </summary>
[Parameter] public virtual T Value { get; set; }
/// <summary>
/// 设置数值的样式
/// </summary>
[Parameter] public string ValueStyle { get; set; }
[Parameter] public RenderFragment ChildContent { get; set; }
private void SetClassMap()
{
string prefixName = "ant-statistic";
ClassMapper
.Add(prefixName)
.If($"{prefixName}-rtl", () => RTL);
}
protected override void OnInitialized()
{
base.OnInitialized();
SetClassMap();
}
}
}