mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
360fe0d3c0
* refactor: rename JSInterop constants * docs: fix typo * fix: server prerendering issue
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System.Threading.Tasks;
|
|
using AntDesign.JsInterop;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public partial class BackTop : AntDomComponentBase
|
|
{
|
|
[Parameter]
|
|
public string Title { get; set; }
|
|
|
|
protected ClassMapper BackTopClassMapper { get; set; } = new ClassMapper();
|
|
|
|
protected ClassMapper BackTopContentClassMapper { get; set; } = new ClassMapper();
|
|
|
|
protected ClassMapper BackTopIconClassMapper { get; set; } = new ClassMapper();
|
|
|
|
protected async Task OnClick()
|
|
{
|
|
await JsInvokeAsync<DomRect>(JSInteropConstants.BackTop, "BodyContainer");
|
|
}
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
SetClass();
|
|
|
|
base.OnInitialized();
|
|
}
|
|
|
|
protected void SetClass()
|
|
{
|
|
string prefixCls = "ant-back-top";
|
|
BackTopClassMapper.Add(prefixCls);
|
|
BackTopContentClassMapper.Add($"{prefixCls}-content");
|
|
BackTopIconClassMapper.Add($"{prefixCls}-icon");
|
|
}
|
|
}
|
|
}
|