using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Components; using OneOf; namespace AntDesign { public partial class Collapse : AntDomComponentBase { #region Parameter [Parameter] public bool Accordion { get; set; } [Parameter] public bool Bordered { get; set; } = true; [Parameter] public string ExpandIconPosition { get; set; } = CollapseExpandIconPosition.Left; [Parameter] public string[] DefaultActiveKey { get; set; } = Array.Empty(); [Parameter] public EventCallback OnChange { get; set; } [Parameter] public OneOf> ExpandIcon { get; set; } = true; #endregion Parameter [Parameter] public RenderFragment ChildContent { get; set; } private IList Items { get; } = new List(); private void SetClassMap() { ClassMapper.Clear().Add("ant-collapse") .If("ant-collapse-icon-position-left", () => ExpandIconPosition == CollapseExpandIconPosition.Left) .If("ant-collapse-icon-position-right", () => ExpandIconPosition == CollapseExpandIconPosition.Right) .If("ant-collapse-borderless", () => !this.Bordered); } protected override async Task OnInitializedAsync() { SetClassMap(); await base.OnInitializedAsync(); } internal void AddPanel(Panel panel) { this.Items.Add(panel); if (panel.Key.IsIn(DefaultActiveKey)) { panel.SetActive(true); } StateHasChanged(); } internal void RemovePanel(Panel panel) { this.Items.Remove(panel); } internal void Click(Panel panel) { if (panel == null) { return; } if (this.Accordion && !panel.Active) { this.Items.Where(item => item != panel && item.Active) .ForEach(item => item.SetActive(false)); } panel.SetActive(!panel.Active); var selectedKeys = this.Items.Where(x => x.Active).Select(x => x.Key).ToArray(); OnChange.InvokeAsync(selectedKeys); panel.OnActiveChange.InvokeAsync(panel.Active); } } }