using System.Collections.Generic; using Microsoft.AspNetCore.Components; using OneOf; namespace AntDesign { public partial class Space : AntDomComponentBase { /// /// start | end |center |baseline /// [Parameter] public string Align { get; set; } [Parameter] public DirectionVHType Direction { get; set; } = DirectionVHType.Horizontal; [Parameter] public OneOf Size { get { return _size; } set { _size = value; } } [Parameter] public bool Wrap { get; set; } [Parameter] public RenderFragment Split { get; set; } [Parameter] public RenderFragment ChildContent { get; set; } internal int SpaceItemCount { get; set; } private IList _items = new List(); private bool HasAlign => Align.IsIn("start", "end", "center", "baseline"); private const string PrefixCls = "ant-space"; private OneOf _size = "small"; private string InnerStyle => Wrap && Direction == DirectionVHType.Horizontal ? "flex-wrap: wrap;" : ""; public void SetClass() { ClassMapper .Add(PrefixCls) .GetIf(() => $"{PrefixCls}-{Direction.Name.ToLowerInvariant()}", () => Direction.IsIn(DirectionVHType.Horizontal, DirectionVHType.Vertical)) .GetIf(() => $"{PrefixCls}-align-{Align}", () => HasAlign) .If($"{PrefixCls}-align-center", () => !HasAlign && Direction == DirectionVHType.Horizontal) .If($"{PrefixCls}-rtl", () => RTL); } protected override void OnInitialized() { SetClass(); base.OnInitialized(); } } }