about summary refs log tree commit diff
path: root/MatrixUtils.Web/Shared/InlineUserItem.razor
blob: 9c6608a262f3e1bc3da089b3ddb0862eb35802b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@using LibMatrix.EventTypes.Spec.State
@using LibMatrix.Responses
<div style="background-color: #ffffff11; border-radius: 0.5em; height: 1em; display: inline-block; vertical-align: middle;" alt="@UserId">
    <img style="@(ChildContent is not null ? "vertical-align: baseline;" : "vertical-align: top;") width: 1em; height: 1em; border-radius: 50%;" src="@ProfileAvatar"/>
    <span style="position: relative; top: -5px;">@ProfileName</span>

    <div style="display: inline-block;">
        @if (ChildContent is not null) {
            @ChildContent
        }
    </div>

</div>

@code {

    [Parameter]
    public RenderFragment? ChildContent { get; set; }

    [Parameter]
    public UserProfileResponse? User { get; set; }

    [Parameter]
    public RoomMemberEventContent? MemberEvent { get; set; }

    [Parameter]
    public string? UserId { get; set; }

    [Parameter]
    public string? ProfileAvatar { get; set; } = null;

    [Parameter]
    public string? ProfileName { get; set; } = null;

    [Parameter]
    public AuthenticatedHomeserverGeneric? Homeserver { get; set; }

    private static SemaphoreSlim _semaphoreSlim = new(128);

    protected override async Task OnInitializedAsync() {
        await base.OnInitializedAsync();
        Homeserver ??= await RMUStorage.GetCurrentSessionOrNavigate();
        if(Homeserver is null) return;

        await _semaphoreSlim.WaitAsync();

        if (User == null && UserId == null && MemberEvent != null)
            throw new ArgumentNullException(nameof(UserId));

        if (MemberEvent != null) {
            User = new UserProfileResponse {
                AvatarUrl = MemberEvent.AvatarUrl,
                DisplayName = MemberEvent.DisplayName
            };
        }

        if (User is null && UserId is not null) {
            User ??= await Homeserver.GetProfileAsync(UserId);
        }


        ProfileAvatar ??= Homeserver.ResolveMediaUri(User.AvatarUrl);
        ProfileName ??= User.DisplayName;

        _semaphoreSlim.Release();
    }

}