2020-03-10 13:29:03 +08:00
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
|
using Microsoft.AspNetCore.Components.Rendering;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace AntBlazor
|
|
|
|
|
{
|
2020-03-10 22:09:44 +08:00
|
|
|
|
public class AntTitle : AntTypographyBase
|
2020-03-10 13:29:03 +08:00
|
|
|
|
{
|
|
|
|
|
[Parameter]
|
2020-04-23 17:13:56 +08:00
|
|
|
|
public int Level { get; set; } = 1;
|
2020-03-10 13:29:03 +08:00
|
|
|
|
|
|
|
|
|
protected override void OnInitialized()
|
|
|
|
|
{
|
|
|
|
|
base.OnInitialized();
|
|
|
|
|
SetClassMap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void SetClassMap()
|
|
|
|
|
{
|
|
|
|
|
string prefixName = "ant-typography";
|
|
|
|
|
ClassMapper.Clear()
|
|
|
|
|
.Add("ant-typography")
|
2020-04-23 17:13:56 +08:00
|
|
|
|
.If($"{prefixName}-{Type}", () => !string.IsNullOrEmpty(Type))
|
|
|
|
|
.If($"{prefixName}-disabled", () => Disabled);
|
2020-03-10 13:29:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-10 22:09:44 +08:00
|
|
|
|
protected override void OnParametersSet()
|
|
|
|
|
{
|
|
|
|
|
base.OnParametersSet();
|
|
|
|
|
SetClassMap();
|
|
|
|
|
}
|
2020-03-10 13:29:03 +08:00
|
|
|
|
protected override void BuildRenderTree(RenderTreeBuilder builder)
|
|
|
|
|
{
|
|
|
|
|
base.BuildRenderTree(builder);
|
|
|
|
|
// According to Ant-Design 4.0, Fallback to 1 if level is invalid.
|
2020-04-23 17:13:56 +08:00
|
|
|
|
int localLevel = Level < 1 || Level > 4 ? 1 : Level;
|
2020-03-10 13:29:03 +08:00
|
|
|
|
|
|
|
|
|
builder.OpenElement(0, "h" + localLevel);
|
|
|
|
|
builder.AddAttribute(1, "class", this.ClassMapper.Class);
|
2020-04-23 17:13:56 +08:00
|
|
|
|
if (Mark) builder.OpenElement(2, "mark");
|
|
|
|
|
if (Delete) builder.OpenElement(3, "del");
|
|
|
|
|
if (Underline) builder.OpenElement(4, "u");
|
2020-03-10 13:29:03 +08:00
|
|
|
|
builder.AddContent(5, ChildContent);
|
2020-04-23 17:13:56 +08:00
|
|
|
|
if (Underline) builder.CloseElement();
|
|
|
|
|
if (Delete) builder.CloseElement();
|
|
|
|
|
if (Mark) builder.CloseElement();
|
|
|
|
|
if (Copyable)
|
2020-03-12 16:35:23 +08:00
|
|
|
|
{
|
|
|
|
|
builder.OpenElement(6, "a");
|
|
|
|
|
builder.AddAttribute(7, "onclick", (Action)(async () => await Copy()));
|
|
|
|
|
builder.OpenComponent<AntIcon>(8);
|
|
|
|
|
builder.AddAttribute(9, "type", "copy");
|
|
|
|
|
builder.AddAttribute(10, "theme", AntIconThemeType.Outline);
|
|
|
|
|
builder.CloseComponent();
|
|
|
|
|
builder.CloseElement();
|
|
|
|
|
}
|
2020-03-10 13:29:03 +08:00
|
|
|
|
builder.CloseElement();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|