mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-11-30 02:58:13 +08:00
191 lines
5.5 KiB
C#
191 lines
5.5 KiB
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public partial class Button : AntDomComponentBase
|
|
{
|
|
private string _formSize;
|
|
public static readonly int RemoveAnimationAfter = 500;
|
|
|
|
[CascadingParameter(Name = "FormSize")]
|
|
public string FormSize
|
|
{
|
|
get
|
|
{
|
|
return _formSize;
|
|
}
|
|
set
|
|
{
|
|
_formSize = value;
|
|
Size = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the value of the aria-label attribute
|
|
/// </summary>
|
|
[Parameter]
|
|
public string AriaLabel { get; set; }
|
|
|
|
/// <summary>
|
|
/// Set the color of the button.
|
|
/// </summary>
|
|
[Parameter]
|
|
public Color Color { get; set; } = Color.None;
|
|
|
|
/// <summary>
|
|
/// Option to fit button width to its parent width
|
|
/// </summary>
|
|
[Parameter]
|
|
public bool Block { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// Content of the button.
|
|
/// </summary>
|
|
[Parameter]
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
/// <summary>
|
|
/// Set the danger status of button.
|
|
/// </summary>
|
|
[Parameter]
|
|
public bool Danger { get; set; }
|
|
|
|
/// <summary>
|
|
/// Whether the `Button` is disabled.
|
|
/// </summary>
|
|
[Parameter]
|
|
public bool Disabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// Make background transparent and invert text and border colors
|
|
/// </summary>
|
|
[Parameter]
|
|
public bool Ghost { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// Set the original html type of the button element.
|
|
/// </summary>
|
|
[Parameter]
|
|
public string HtmlType { get; set; } = "button";
|
|
|
|
/// <summary>
|
|
/// Set the icon component of button.
|
|
/// </summary>
|
|
[Parameter]
|
|
public string Icon { get; set; }
|
|
|
|
/// <summary>
|
|
/// Show loading indicator. You have to write the loading logic on your own.
|
|
/// </summary>
|
|
[Parameter]
|
|
public bool Loading { get; set; }
|
|
|
|
/// <summary>
|
|
/// Callback when `Button` is clicked
|
|
/// </summary>
|
|
[Parameter]
|
|
public EventCallback<MouseEventArgs> OnClick { get; set; }
|
|
|
|
/// <summary>
|
|
/// Do not propagate events when button is clicked.
|
|
/// </summary>
|
|
[Parameter]
|
|
public bool OnClickStopPropagation { get; set; }
|
|
|
|
/// <summary>
|
|
/// Can set button shape: `circle` | `round` or `null` (default, which is rectangle).
|
|
/// </summary>
|
|
[Parameter]
|
|
public string Shape { get; set; } = null;
|
|
|
|
/// <summary>
|
|
/// Set the size of button.
|
|
/// </summary>
|
|
[Parameter]
|
|
public string Size { get; set; } = AntSizeLDSType.Default;
|
|
|
|
/// <summary>
|
|
/// Type of the button.
|
|
/// </summary>
|
|
[Parameter]
|
|
public string Type { get; set; } = ButtonType.Default;
|
|
|
|
/// <summary>
|
|
/// Do not wrap with <span>
|
|
/// </summary>
|
|
[Parameter]
|
|
public bool NoSpanWrap { get; set; }
|
|
|
|
public IList<Icon> Icons { get; set; } = new List<Icon>();
|
|
|
|
|
|
private bool _animating = false;
|
|
|
|
private string _btnWave = "--antd-wave-shadow-color: rgb(255, 120, 117);";
|
|
|
|
protected void SetClassMap()
|
|
{
|
|
var prefixName = "ant-btn";
|
|
|
|
ClassMapper.Clear()
|
|
.Add(prefixName)
|
|
.GetIf(() => $"{prefixName}-{this.Type}", () => !string.IsNullOrEmpty(Type))
|
|
.If($"{prefixName}-dangerous", () => Danger)
|
|
.GetIf(() => $"{prefixName}-{Shape}", () => !string.IsNullOrEmpty(Shape))
|
|
.If($"{prefixName}-lg", () => Size == "large")
|
|
.If($"{prefixName}-sm", () => Size == "small")
|
|
.If($"{prefixName}-loading", () => Loading)
|
|
.If($"{prefixName}-icon-only", () => !string.IsNullOrEmpty(this.Icon) && this.ChildContent == null)
|
|
.If($"{prefixName}-background-ghost", () => Ghost)
|
|
.If($"{prefixName}-block", () => this.Block)
|
|
.If($"{prefixName}-rtl", () => RTL)
|
|
;
|
|
}
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
SetClassMap();
|
|
SetButtonColorStyle();
|
|
}
|
|
|
|
private async Task HandleOnClick(MouseEventArgs args)
|
|
{
|
|
if (Loading)
|
|
return;
|
|
|
|
if (OnClick.HasDelegate)
|
|
{
|
|
await OnClick.InvokeAsync(args);
|
|
}
|
|
}
|
|
|
|
private async Task OnMouseUp(MouseEventArgs args)
|
|
{
|
|
if (args.Button != 0 || this.Type == ButtonType.Link) return; //remove animating from Link Button
|
|
this._animating = true;
|
|
|
|
await Task.Delay(RemoveAnimationAfter);
|
|
this._animating = false;
|
|
|
|
await InvokeAsync(StateHasChanged);
|
|
}
|
|
|
|
private void SetButtonColorStyle()
|
|
{
|
|
if (Color != Color.None)
|
|
{
|
|
Style += ColorHelper.GetBackgroundStyle(Color);
|
|
}
|
|
}
|
|
}
|
|
}
|