mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
123 lines
3.5 KiB
C#
123 lines
3.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
using System.Threading.Tasks;
|
|
using AntDesign.core.JsInterop.EventArg;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public partial class Checkbox : AntInputComponentBase<bool>
|
|
{
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
|
|
[Parameter] public EventCallback<bool> CheckedChange { get; set; }
|
|
|
|
[Parameter] public Expression<Func<bool>> CheckedExpression { get; set; }
|
|
|
|
[Parameter] public bool AutoFocus { get; set; }
|
|
|
|
[Parameter] public bool Disabled { get; set; }
|
|
|
|
[Parameter] public bool Indeterminate { get; set; }
|
|
|
|
[Parameter]
|
|
public bool Checked
|
|
{
|
|
get => CurrentValue;
|
|
set
|
|
{
|
|
if (CurrentValue != value)
|
|
{
|
|
CurrentValue = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
[Parameter]
|
|
public string Label { get; set; }
|
|
|
|
[CascadingParameter]
|
|
public CheckboxGroup CheckboxGroup { get; set; }
|
|
|
|
protected Dictionary<string, object> InputAttributes { get; set; } = new Dictionary<string, object>();
|
|
|
|
protected override void OnParametersSet()
|
|
{
|
|
SetClass();
|
|
base.OnParametersSet();
|
|
}
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
UpdateAutoFocus();
|
|
CheckboxGroup?.AddItem(this);
|
|
}
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
CheckboxGroup?.RemoveItem(this);
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
protected ClassMapper ClassMapperSpan { get; } = new ClassMapper();
|
|
|
|
protected void SetClass()
|
|
{
|
|
string prefixName = "ant-checkbox";
|
|
ClassMapper.Clear()
|
|
.Add(prefixName)
|
|
.If($"{prefixName}-wrapper", () => true)
|
|
.If($"{prefixName}-wrapper-checked", () => Checked);
|
|
|
|
ClassMapperSpan.Clear()
|
|
.Add(prefixName)
|
|
.If($"{prefixName}-checked", () => Checked && !Indeterminate)
|
|
.If($"{prefixName}-disabled", () => Disabled)
|
|
.If($"{prefixName}-indeterminate", () => Indeterminate);
|
|
}
|
|
|
|
protected override void OnValueChange(bool value)
|
|
{
|
|
base.OnValueChange(value);
|
|
this.CurrentValue = value;
|
|
}
|
|
|
|
protected async Task InputCheckedChange(ChangeEventArgs args)
|
|
{
|
|
if (args != null && args.Value is bool value)
|
|
{
|
|
CurrentValue = value;
|
|
await InnerCheckedChange(value);
|
|
}
|
|
}
|
|
|
|
protected async Task InnerCheckedChange(bool @checked)
|
|
{
|
|
if (!this.Disabled)
|
|
{
|
|
if (this.CheckedChange.HasDelegate)
|
|
{
|
|
await this.CheckedChange.InvokeAsync(@checked);
|
|
}
|
|
CheckboxGroup?.OnCheckboxChange(this);
|
|
}
|
|
}
|
|
|
|
protected void UpdateAutoFocus()
|
|
{
|
|
if (this.AutoFocus)
|
|
{
|
|
if (InputAttributes.ContainsKey("autofocus") == false)
|
|
InputAttributes.Add("autofocus", "autofocus");
|
|
}
|
|
else
|
|
{
|
|
if (InputAttributes.ContainsKey("autofocus") == true)
|
|
InputAttributes.Remove("autofocus");
|
|
}
|
|
}
|
|
}
|
|
}
|