2020-06-15 22:23:08 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
2020-07-16 14:28:42 +08:00
|
|
|
|
using System.Linq;
|
2020-06-15 22:23:08 +08:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using AntDesign.JsInterop;
|
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
|
using OneOf;
|
|
|
|
|
|
|
|
|
|
namespace AntDesign
|
|
|
|
|
{
|
|
|
|
|
using ColumnType = OneOf<int, Dictionary<string, int>>;
|
|
|
|
|
|
|
|
|
|
public partial class Descriptions : AntDomComponentBase
|
|
|
|
|
{
|
|
|
|
|
#region Parameters
|
|
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
|
public bool Bordered { get; set; } = false;
|
|
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
|
public string Layout { get; set; } = DescriptionsLayout.Horizontal;
|
|
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
|
public ColumnType Column { get; set; }
|
|
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
|
public string Size { get; set; }
|
|
|
|
|
|
|
|
|
|
[Parameter]
|
2020-09-16 13:58:16 +08:00
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
|
public RenderFragment TitleTemplate { get; set; }
|
2020-06-15 22:23:08 +08:00
|
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
|
public bool Colon { get; set; }
|
|
|
|
|
|
2021-03-12 17:02:11 +08:00
|
|
|
|
#endregion Parameters
|
2020-07-16 14:28:42 +08:00
|
|
|
|
|
2020-06-15 22:23:08 +08:00
|
|
|
|
[Parameter]
|
|
|
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
|
|
|
|
|
|
public IList<IDescriptionsItem> Items { get; } = new List<IDescriptionsItem>();
|
|
|
|
|
|
|
|
|
|
private List<List<(IDescriptionsItem item, int realSpan)>> _itemMatrix = new List<List<(IDescriptionsItem item, int realSpan)>>();
|
|
|
|
|
|
|
|
|
|
[Inject]
|
|
|
|
|
public DomEventService DomEventService { get; set; }
|
|
|
|
|
|
|
|
|
|
private int _realColumn;
|
|
|
|
|
|
2020-06-17 14:26:47 +08:00
|
|
|
|
private readonly Dictionary<string, int> _defaultColumnMap = new Dictionary<string, int>
|
|
|
|
|
{
|
2020-06-15 22:23:08 +08:00
|
|
|
|
{ "xxl", 3 },
|
|
|
|
|
{ "xl", 3},
|
|
|
|
|
{ "lg", 3},
|
|
|
|
|
{ "md", 3},
|
|
|
|
|
{ "sm", 2},
|
|
|
|
|
{ "xs", 1}
|
|
|
|
|
};
|
|
|
|
|
|
2020-07-24 20:20:29 +08:00
|
|
|
|
private static readonly List<(int PixelWidth, BreakpointEnum Breakpoint)> _descriptionsResponsiveMap = new List<(int, BreakpointEnum)>()
|
2020-08-26 11:13:36 +08:00
|
|
|
|
{
|
2020-07-24 20:20:29 +08:00
|
|
|
|
(575,BreakpointEnum.xs),
|
|
|
|
|
(576,BreakpointEnum.sm),
|
|
|
|
|
(768,BreakpointEnum.md),
|
|
|
|
|
(992,BreakpointEnum.lg),
|
|
|
|
|
(1200,BreakpointEnum.xl),
|
|
|
|
|
(1600,BreakpointEnum.xxl)
|
2020-06-15 22:23:08 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private void SetClassMap()
|
|
|
|
|
{
|
2021-03-12 17:02:11 +08:00
|
|
|
|
ClassMapper
|
|
|
|
|
.Add("ant-descriptions")
|
|
|
|
|
.If("ant-descriptions", () => RTL)
|
2020-06-15 22:23:08 +08:00
|
|
|
|
.If("ant-descriptions-bordered", () => this.Bordered)
|
|
|
|
|
.If("ant-descriptions-middle", () => this.Size == DescriptionsSize.Middle)
|
|
|
|
|
.If("ant-descriptions-small", () => this.Size == DescriptionsSize.Small);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
|
|
|
{
|
|
|
|
|
SetClassMap();
|
|
|
|
|
|
2020-09-21 17:20:19 +08:00
|
|
|
|
await base.OnInitializedAsync();
|
|
|
|
|
}
|
2020-07-16 14:28:42 +08:00
|
|
|
|
|
2020-09-21 17:20:19 +08:00
|
|
|
|
protected override void OnAfterRender(bool firstRender)
|
|
|
|
|
{
|
|
|
|
|
if (firstRender && Column.IsT1)
|
2020-06-15 22:23:08 +08:00
|
|
|
|
{
|
2020-08-26 11:13:36 +08:00
|
|
|
|
DomEventService.AddEventListener<object>("window", "resize", OnResize, false);
|
2020-06-15 22:23:08 +08:00
|
|
|
|
}
|
2020-09-21 17:20:19 +08:00
|
|
|
|
|
|
|
|
|
base.OnAfterRender(firstRender);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
|
|
|
|
|
DomEventService.RemoveEventListerner<object>("window", "resize", OnResize);
|
2020-06-15 22:23:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-26 11:13:36 +08:00
|
|
|
|
private async void OnResize(object o)
|
|
|
|
|
{
|
|
|
|
|
await SetRealColumn();
|
|
|
|
|
PrepareMatrix();
|
|
|
|
|
await InvokeAsync(StateHasChanged);
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-15 22:23:08 +08:00
|
|
|
|
protected override async Task OnFirstAfterRenderAsync()
|
|
|
|
|
{
|
|
|
|
|
await SetRealColumn();
|
|
|
|
|
PrepareMatrix();
|
|
|
|
|
await InvokeAsync(StateHasChanged);
|
|
|
|
|
await base.OnFirstAfterRenderAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async Task OnParametersSetAsync()
|
|
|
|
|
{
|
|
|
|
|
PrepareMatrix();
|
|
|
|
|
await InvokeAsync(StateHasChanged);
|
|
|
|
|
await base.OnParametersSetAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void PrepareMatrix()
|
|
|
|
|
{
|
|
|
|
|
List<List<(IDescriptionsItem item, int realSpan)>> itemMatrix = new List<List<(IDescriptionsItem item, int realSpan)>>();
|
|
|
|
|
|
|
|
|
|
List<(IDescriptionsItem item, int realSpan)> currentRow = new List<(IDescriptionsItem item, int realSpan)>();
|
|
|
|
|
var width = 0;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < this.Items.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
var item = this.Items[i];
|
|
|
|
|
width += item.Span;
|
|
|
|
|
|
|
|
|
|
if (width >= _realColumn)
|
|
|
|
|
{
|
|
|
|
|
if (width > _realColumn)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine(@$"""Column"" is {_realColumn} but we have row length ${width}");
|
|
|
|
|
}
|
|
|
|
|
currentRow.Add((item, _realColumn - (width - item.Span)));
|
|
|
|
|
FlushRow();
|
|
|
|
|
}
|
|
|
|
|
else if (i == this.Items.Count - 1)
|
|
|
|
|
{
|
|
|
|
|
currentRow.Add((item, _realColumn - (width - item.Span)));
|
|
|
|
|
FlushRow();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
currentRow.Add((item, item.Span));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this._itemMatrix = itemMatrix;
|
|
|
|
|
|
|
|
|
|
void FlushRow()
|
|
|
|
|
{
|
|
|
|
|
itemMatrix.Add(currentRow);
|
|
|
|
|
currentRow = new List<(IDescriptionsItem item, int realSpan)>();
|
|
|
|
|
width = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task SetRealColumn()
|
|
|
|
|
{
|
|
|
|
|
if (Column.IsT0)
|
|
|
|
|
{
|
|
|
|
|
_realColumn = Column.AsT0 == 0 ? 3 : Column.AsT0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-01-21 17:20:10 +08:00
|
|
|
|
Element element = await JsInvokeAsync<Element>(JSInteropConstants.GetDomInfo, Ref);
|
2020-07-24 20:20:29 +08:00
|
|
|
|
var breakpointTuple = _descriptionsResponsiveMap.FirstOrDefault(x => x.PixelWidth > element.clientWidth);
|
|
|
|
|
var bp = breakpointTuple == default ? BreakpointEnum.xxl : breakpointTuple.Breakpoint;
|
2020-07-16 14:28:42 +08:00
|
|
|
|
_realColumn = Column.AsT1.ContainsKey(bp.ToString()) ? Column.AsT1[bp.ToString()] : _defaultColumnMap[bp.ToString()];
|
2020-06-15 22:23:08 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-16 14:28:42 +08:00
|
|
|
|
}
|