2020-08-11 17:30:14 +08:00
|
|
|
|
using System;
|
2020-03-10 13:29:03 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
2020-08-11 17:30:14 +08:00
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
|
using Microsoft.AspNetCore.Components.Rendering;
|
2020-03-10 13:29:03 +08:00
|
|
|
|
|
2020-05-29 00:33:49 +08:00
|
|
|
|
namespace AntDesign
|
2020-03-10 13:29:03 +08:00
|
|
|
|
{
|
2020-06-07 19:41:00 +08:00
|
|
|
|
public class Title : TypographyBase
|
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")
|
2021-03-12 17:02:11 +08:00
|
|
|
|
.GetIf(() => $"{prefixName}-{Type}", () => !string.IsNullOrEmpty(Type))
|
|
|
|
|
.If($"{prefixName}-disabled", () => Disabled)
|
|
|
|
|
.If($"{prefixName}-rtl", () => RTL);
|
2020-03-10 22:09:44 +08:00
|
|
|
|
}
|
2020-04-24 18:32:50 +08:00
|
|
|
|
|
2020-03-10 13:29:03 +08:00
|
|
|
|
protected override void BuildRenderTree(RenderTreeBuilder builder)
|
|
|
|
|
{
|
2020-04-24 18:32:50 +08:00
|
|
|
|
if (builder != null)
|
2020-03-12 16:35:23 +08:00
|
|
|
|
{
|
2020-04-24 18:32:50 +08:00
|
|
|
|
base.BuildRenderTree(builder);
|
|
|
|
|
// According to Ant-Design 4.0, Fallback to 1 if level is invalid.
|
|
|
|
|
int localLevel = Level < 1 || Level > 4 ? 1 : Level;
|
2021-01-21 17:20:10 +08:00
|
|
|
|
|
|
|
|
|
builder.OpenElement(1, "h" + localLevel);
|
|
|
|
|
builder.AddAttribute(2, "class", this.ClassMapper.Class);
|
|
|
|
|
builder.AddAttribute(3, "style", Style);
|
|
|
|
|
if (Mark) builder.OpenElement(4, "mark");
|
|
|
|
|
if (Delete) builder.OpenElement(5, "del");
|
|
|
|
|
if (Underline) builder.OpenElement(6, "u");
|
|
|
|
|
builder.AddContent(7, ChildContent);
|
2020-04-24 18:32:50 +08:00
|
|
|
|
if (Underline) builder.CloseElement();
|
|
|
|
|
if (Delete) builder.CloseElement();
|
|
|
|
|
if (Mark) builder.CloseElement();
|
|
|
|
|
if (Copyable)
|
|
|
|
|
{
|
2021-01-21 17:20:10 +08:00
|
|
|
|
builder.OpenElement(8, "a");
|
|
|
|
|
builder.AddAttribute(9, "onclick", (Action)(async () => await Copy()));
|
|
|
|
|
builder.OpenComponent<Icon>(10);
|
|
|
|
|
builder.AddAttribute(11, "type", "copy");
|
|
|
|
|
builder.AddAttribute(12, "theme", IconThemeType.Outline);
|
2020-04-24 18:32:50 +08:00
|
|
|
|
builder.CloseComponent();
|
|
|
|
|
builder.CloseElement();
|
|
|
|
|
}
|
2021-01-21 17:20:10 +08:00
|
|
|
|
builder.AddElementReferenceCapture(13, r => Ref = r);
|
2020-03-12 16:35:23 +08:00
|
|
|
|
builder.CloseElement();
|
|
|
|
|
}
|
2020-03-10 13:29:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|