using System; using System.Collections.Generic; using System.Text; using Microsoft.AspNetCore.Components; namespace AntDesign { public partial class Divider : AntDomComponentBase { [Parameter] public RenderFragment ChildContent { get; set; } [Parameter] public string Text { get; set; } [Parameter] public bool Plain { get; set; } = false; /// /// 'horizontal' | 'vertical' /// [Parameter] public DirectionVHType Type { get; set; } = DirectionVHType.Horizontal; /// /// 'left' | 'right' | 'center' /// [Parameter] public string Orientation { get; set; } = "center"; [Parameter] public bool Dashed { get; set; } = false; private void SetClass() { ClassMapper.Clear() .Add("ant-divider") .If("ant-divider", () => RTL) .Get(() => $"ant-divider-{this.Type.Name.ToLowerInvariant()}") .If("ant-divider-with-text", () => Text != null || ChildContent != null) .GetIf(() => $"ant-divider-with-text-{this.Orientation.ToLowerInvariant()}", () => Text != null || ChildContent != null) .If($"ant-divider-plain", () => Plain && (Text != null || ChildContent != null)) .If("ant-divider-dashed", () => Dashed) ; } protected override void OnInitialized() { SetClass(); base.OnInitialized(); } } }