mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
71bac2e85d
* Children components using CascadingParameter add itself to parent component.However, when children components disposed, they are not remove from parent component. For example, when items in checkgroup have changed , it may causes Index was outside the bounds of the array at AntDesign.CheckboxGroup.OnCheckboxChange.To fix these bug, Adding remove function in dispose process is the solution of this commit. * fix: some exception Co-authored-by: ElderJames <shunjiey@hotmail.com>
126 lines
3.1 KiB
C#
126 lines
3.1 KiB
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public partial class Icon : AntDomComponentBase
|
|
{
|
|
[Parameter]
|
|
public bool Spin { get; set; }
|
|
|
|
[Parameter]
|
|
public int Rotate { get; set; } = 0;
|
|
|
|
[Parameter]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 'fill' | 'outline' | 'twotone';
|
|
/// </summary>
|
|
[Parameter]
|
|
public string Theme { get; set; } = IconThemeType.Outline;
|
|
|
|
[Parameter]
|
|
public string TwotoneColor { get; set; }
|
|
|
|
[Parameter]
|
|
public string IconFont { get; set; }
|
|
|
|
[Parameter]
|
|
public string Width { get; set; } = "1em";
|
|
|
|
[Parameter]
|
|
public string Height { get; set; } = "1em";
|
|
|
|
[Parameter]
|
|
public string Fill { get; set; } = "currentColor";
|
|
|
|
[Parameter]
|
|
public string TabIndex { get; set; }
|
|
|
|
[Parameter]
|
|
public bool StopPropagation { get; set; }
|
|
|
|
[CascadingParameter]
|
|
public Button Button { get; set; }
|
|
|
|
[Parameter]
|
|
public EventCallback<MouseEventArgs> OnClick { get; set; }
|
|
|
|
[Inject]
|
|
public IconService IconService { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment Component { get; set; }
|
|
|
|
protected string _svgImg;
|
|
|
|
protected string IconStyle => Rotate == 0 ? "" : $"transform: rotate({Rotate}deg);";
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (this is Icon icon)
|
|
{
|
|
Button?.Icons.Remove(icon);
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
if (Type == "loading")
|
|
{
|
|
Spin = true;
|
|
}
|
|
|
|
await SetupSvgImg();
|
|
|
|
if (this is Icon icon)
|
|
{
|
|
Button?.Icons.Add(icon);
|
|
}
|
|
|
|
ClassMapper.Add($"anticon anticon-{Type}")
|
|
.If("anticon-spin", () => Spin);
|
|
|
|
await base.OnInitializedAsync();
|
|
}
|
|
|
|
protected override async Task OnParametersSetAsync()
|
|
{
|
|
await SetupSvgImg();
|
|
await base.OnParametersSetAsync();
|
|
}
|
|
|
|
protected virtual async Task SetupSvgImg()
|
|
{
|
|
if (Component != null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(IconFont))
|
|
{
|
|
var svg = $"<svg><use xlink:href=#{IconFont} /></svg>";
|
|
_svgImg = IconService.GetStyledSvg(svg, Width, Height, Fill);
|
|
}
|
|
else
|
|
{
|
|
var svg = await IconService.GetIconImg(Type.ToLowerInvariant(), Theme.ToLowerInvariant());
|
|
_svgImg = IconService.GetStyledSvg(svg, Width, Height, Fill);
|
|
}
|
|
|
|
StateHasChanged();
|
|
}
|
|
|
|
private async Task HandleOnClick(MouseEventArgs args)
|
|
{
|
|
if (OnClick.HasDelegate)
|
|
{
|
|
await OnClick.InvokeAsync(args);
|
|
}
|
|
}
|
|
}
|
|
}
|