mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
|
using System.Collections.Generic;
|
|||
|
using Microsoft.AspNetCore.Components;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public partial class AvatarGroup : AntDomComponentBase
|
|||
|
{
|
|||
|
[Parameter]
|
|||
|
public RenderFragment ChildContent { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public int MaxCount { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public string MaxStyle { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public PlacementType MaxPopoverPlacement { get; set; } = PlacementType.Top;
|
|||
|
|
|||
|
private bool _overflow;
|
|||
|
private string _prefixCls = "ant-avatar-group";
|
|||
|
|
|||
|
private IList<Avatar> _shownAvatarList = new List<Avatar>();
|
|||
|
private IList<Avatar> _hiddenAvatarList = new List<Avatar>();
|
|||
|
|
|||
|
internal void AddAvatar(Avatar item)
|
|||
|
{
|
|||
|
if (item.Position == null)
|
|||
|
return;
|
|||
|
|
|||
|
var avatarList = item.Position == "shown" ? _shownAvatarList : _hiddenAvatarList;
|
|||
|
|
|||
|
avatarList.Add(item);
|
|||
|
|
|||
|
if (MaxCount > 0 && avatarList.Count > MaxCount)
|
|||
|
{
|
|||
|
_overflow = true;
|
|||
|
item.Overflow = true;
|
|||
|
}
|
|||
|
|
|||
|
StateHasChanged();
|
|||
|
}
|
|||
|
|
|||
|
internal void RemoveAvatar(Avatar item)
|
|||
|
{
|
|||
|
if (item.Position == null)
|
|||
|
return;
|
|||
|
|
|||
|
var avatarList = item.Position == "shown" ? _shownAvatarList : _hiddenAvatarList;
|
|||
|
|
|||
|
avatarList.Remove(item);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|