ant-design-blazor/components/table/Selection.razor.cs
James Yeung e9fed3ea00 feat(module: table): add router pagging demo (#450)
* feat(module: table): support router pagging

* fix: selection
2020-08-02 22:10:47 +08:00

165 lines
4.4 KiB
C#

using System.Collections.Generic;
using System.Linq;
using Microsoft.AspNetCore.Components;
namespace AntDesign
{
public partial class Selection : ColumnBase, ISelectionColumn
{
[Parameter] public string Type { get; set; } = "checkbox";
[Parameter] public bool Disabled { get; set; }
[Parameter] public string Key { get; set; }
bool ISelectionColumn.Checked
{
get => _checked;
set => _checked = value;
}
private bool _checked;
private bool Indeterminate => IsHeader
&& this.RowSelections.Any(x => x.Checked)
&& !this.RowSelections.All(x => x.Checked);
public IList<ISelectionColumn> RowSelections { get; set; } = new List<ISelectionColumn>();
private int[] _selectedIndexes;
protected override void OnInitialized()
{
base.OnInitialized();
if (Table == null)
{
return;
}
if (IsHeader)
{
Table.Selection = this;
}
else
{
Table?.Selection?.RowSelections.Add(this);
}
}
protected override void OnParametersSet()
{
base.OnParametersSet();
if (IsHeader && Type == "radio" && RowSelections.Count(x => x.Checked) > 1)
{
var first = RowSelections.FirstOrDefault(x => x.Checked);
if (first != null)
{
Table?.Selection.RowSelections.Where(x => x.ColIndex != first.ColIndex).ForEach(x => x.Check(false));
}
}
}
private void HandleCheckedChange(bool @checked)
{
Check(@checked);
if (this.IsHeader)
{
RowSelections.Where(x => !x.Disabled).ForEach(x => x.Check(@checked));
InvokeSelectedRowsChange();
}
else
{
if (Type == "radio")
{
Table?.Selection.RowSelections.Where(x => x.CacheKey != this.CacheKey).ForEach(x => x.Check(false));
}
Table?.Selection.InvokeSelectedRowsChange();
}
}
bool ISelectionColumn.Check(bool @checked)
{
return this.Check(@checked);
}
private bool Check(bool @checked)
{
if (this._checked != @checked)
{
this._checked = @checked;
StateHasChanged();
return true;
}
return false;
}
public void InvokeSelectedRowsChange()
{
if (IsHeader)
{
Table.SelectionChanged();
StateHasChanged();
}
}
public void ChangeSelection()
{
var cacheKeys = Table.GetSelectedCacheKeys();
if (cacheKeys == null || !cacheKeys.Any())
{
this.Table.Selection.RowSelections.ForEach(x => x.Check(false));
this.Table.Selection.StateHasChanged();
}
else
{
this.Table.Selection.RowSelections.ForEach(x => x.Check(x.CacheKey.IsIn(cacheKeys)));
this.Table.Selection.StateHasChanged();
}
}
public void SetSelection(string[] keys)
{
if (keys == null || !keys.Any())
{
this.Table.Selection.RowSelections.ForEach(x => x.Check(false));
this.Table.Selection.Check(false);
}
else
{
this.Table.Selection.RowSelections.ForEach(x => x.Check(x.Key.IsIn(keys)));
this.Table.Selection.StateHasChanged();
}
}
public void ChangeOnPaging()
{
this.ChangeSelection();
}
void ISelectionColumn.StateHasChanged()
{
if (IsHeader)
{
_checked = this.RowSelections.Any() && this.RowSelections.All(x => x.Checked);
StateHasChanged();
}
}
protected override void Dispose(bool disposing)
{
if (!IsHeader)
{
Table.Selection.RowSelections.Remove(this);
}
base.Dispose(disposing);
}
}
}