ant-design-blazor/components/menu/MenuItem.razor.cs
James Yeung 4065869806 feat(module: table): add filters (#1178)
* feat: add table filter

* add filter buttons

* fix filter menu

* make filter work

* support multiple filters

* delete the old files

* support single select
2021-02-27 23:55:48 +08:00

148 lines
3.7 KiB
C#

using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Routing;
using Microsoft.AspNetCore.Components.Web;
namespace AntDesign
{
public partial class MenuItem : AntDomComponentBase
{
[CascadingParameter]
public Menu RootMenu { get; set; }
[CascadingParameter]
public SubMenu ParentMenu { get; set; }
[Parameter]
public RenderFragment ChildContent { get; set; }
[Parameter]
public string Key
{
get => _key ?? Id;
set => _key = value;
}
[Parameter]
public bool Disabled { get; set; }
[Parameter]
public EventCallback<MouseEventArgs> OnClick { get; set; }
[Parameter]
public string RouterLink { get; set; }
[Parameter]
public NavLinkMatch RouterMatch { get; set; }
[Parameter]
public string Title { get; set; }
[Parameter]
public string Icon { get; set; }
internal bool IsSelected { get; private set; }
internal bool FirstRun { get; set; } = true;
private string _key;
private bool TooltipDisabled => ParentMenu?.IsOpen == true || ParentMenu?._overlayVisible == true || RootMenu?.InlineCollapsed == false;
private int PaddingLeft => RootMenu.InternalMode == MenuMode.Inline ? ((ParentMenu?.Level ?? 0) + 1) * RootMenu?.InlineIndent ?? 0 : 0;
private void SetClass()
{
string prefixCls = $"{RootMenu.PrefixCls}-item";
ClassMapper.Add(prefixCls)
.If($"{prefixCls}-selected", () => IsSelected)
.If($"{prefixCls}-disabled", () => Disabled);
}
protected override void Dispose(bool disposing)
{
RootMenu?.MenuItems?.Remove(this);
base.Dispose(disposing);
}
protected override void OnInitialized()
{
base.OnInitialized();
SetClass();
RootMenu.MenuItems.Add(this);
if (RootMenu.DefaultSelectedKeys.Contains(Key))
Select();
}
protected override void OnParametersSet()
{
base.OnParametersSet();
if (RootMenu.SelectedKeys.Contains(Key) && !IsSelected)
Select();
}
internal void UpdateStelected()
{
if (RootMenu.SelectedKeys.Contains(Key))
{
if (!IsSelected) Select();
}
else if (IsSelected)
{
Deselect();
}
}
public async Task HandleOnClick(MouseEventArgs args)
{
if (Disabled)
return;
if (OnClick.HasDelegate)
await OnClick.InvokeAsync(args);
if (!RootMenu.Selectable)
return;
if (IsSelected && RootMenu?.Multiple == true)
{
Deselect();
}
else
{
RootMenu.SelectItem(this);
}
if (ParentMenu == null)
return;
if (RootMenu.Mode != MenuMode.Inline)
{
await ParentMenu?.Collapse();
}
}
public void Select(bool skipParentSelection = false)
{
IsSelected = true;
FirstRun = false;
if (!skipParentSelection)
ParentMenu?.Select();
}
public void Deselect(bool sameParentAsSelected = false)
{
IsSelected = false;
FirstRun = false;
if (!sameParentAsSelected)
ParentMenu?.Deselect();
}
}
}