ant-design-blazor/components/avatar/Avatar.razor.cs

188 lines
5.3 KiB
C#
Raw Normal View History

using System.Collections;
using System.Globalization;
using System.Threading.Tasks;
using AntDesign.JsInterop;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Web;
namespace AntDesign
{
public partial class Avatar : AntDomComponentBase
{
[Parameter]
public RenderFragment ChildContent
{
get => _childContent;
set
{
_childContent = value;
_waitingCaclSize = true;
}
}
[Parameter]
public string Shape { get; set; } = null;
[Parameter]
public string Size { get; set; } = AntSizeLDSType.Default;
[Parameter]
public string Text
{
get => _text;
set
{
if (_text != value)
{
_text = value;
_waitingCaclSize = true;
}
}
}
[Parameter]
public string Src { get; set; }
[Parameter]
public string SrcSet { get; set; }
[Parameter]
public string Alt { get; set; }
[Parameter]
public string Icon { get; set; }
[Parameter]
public EventCallback<ErrorEventArgs> Error { get; set; }
[CascadingParameter]
public AvatarGroup Group { get; set; }
[CascadingParameter(Name = "position")]
public string Position { get; set; }
/// <summary>
/// more than group max count
/// </summary>
internal bool Overflow { get; set; }
private bool _hasText = false;
private bool _hasSrc = true;
private bool _hasIcon = false;
private string _textStyles = "";
protected ElementReference TextEl { get; set; }
private string _prefixCls = "ant-avatar";
private readonly Hashtable _sizeMap = new Hashtable() { ["large"] = "lg", ["small"] = "sm" };
private string _text;
private RenderFragment _childContent;
private bool _waitingCaclSize;
protected override void OnInitialized()
{
base.OnInitialized();
Group?.AddAvatar(this);
SetClassMap();
SetSizeStyle();
}
protected override void OnParametersSet()
{
this._hasText = string.IsNullOrEmpty(this.Src) && (!string.IsNullOrEmpty(this._text) || _childContent != null);
this._hasIcon = string.IsNullOrEmpty(this.Src) && !string.IsNullOrEmpty(this.Icon);
this._hasSrc = !string.IsNullOrEmpty(this.Src);
base.OnParametersSet();
}
protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender || _waitingCaclSize)
{
_waitingCaclSize = false;
await CalcStringSize();
}
await base.OnAfterRenderAsync(firstRender);
}
private async Task ImgError(ErrorEventArgs args)
{
await Error.InvokeAsync(args);
this._hasSrc = false;
this._hasIcon = false;
this._hasText = false;
if (!string.IsNullOrEmpty(this.Icon))
{
this._hasIcon = true;
}
else if (!string.IsNullOrEmpty(this._text))
{
this._hasText = true;
}
_waitingCaclSize = true;
}
private void SetClassMap()
{
ClassMapper.Clear()
.Add(_prefixCls)
.GetIf(() => $"{_prefixCls}-{this._sizeMap[this.Size]}", () => _sizeMap.ContainsKey(Size))
.GetIf(() => $"{_prefixCls}-{this.Shape}", () => !string.IsNullOrEmpty(Shape))
.If($"{_prefixCls}-icon", () => !string.IsNullOrEmpty(Icon))
.If($"{_prefixCls}-image", () => _hasSrc)
;
}
private void SetSizeStyle()
{
if (decimal.TryParse(this.Size, out var pxSize))
{
var size = StyleHelper.ToCssPixel(pxSize.ToString(CultureInfo.InvariantCulture));
Style += $";width:{size};";
Style += $"height:{size};";
Style += $"line-height:{size};";
if (this._hasIcon)
{
Style += $"font-size:calc(${size} / 2)";
}
}
}
private async Task CalcStringSize()
{
if (!this._hasText)
{
return;
}
var childrenWidth = (await this.JsInvokeAsync<Element>(JSInteropConstants.GetDomInfo, this.TextEl))?.offsetWidth ?? 0;
var avatarWidth = (await this.JsInvokeAsync<DomRect>(JSInteropConstants.GetBoundingClientRect, this.Ref))?.width ?? 0;
var scale = childrenWidth != 0 && avatarWidth - 8 < childrenWidth ? (avatarWidth - 8) / childrenWidth : 1;
this._textStyles = $"transform: scale({scale}) translateX(-50%);";
if (decimal.TryParse(this.Size, out var pxSize))
{
this._textStyles += $"lineHeight:{pxSize}px;";
}
StateHasChanged();
}
protected override void Dispose(bool disposing)
{
Group?.RemoveAvatar(this);
base.Dispose(disposing);
}
}
}