]>
Commit | Line | Data |
---|---|---|
52d9f792 C |
1 | <ng-container *ngIf="actor"> |
2 | <div class="actor"> | |
76314386 | 3 | <div class="d-flex"> |
deb8b9cd | 4 | <img [ngClass]="{ channel: isChannel() }" [src]="actor.avatarUrl" alt="Avatar" /> |
52d9f792 | 5 | |
76314386 | 6 | <div class="actor-img-edit-container"> |
1ea7da81 | 7 | |
0e4ca570 | 8 | <div *ngIf="!hasAvatar()" class="actor-img-edit-button" [ngbTooltip]="avatarFormat" placement="right" container="body"> |
1ea7da81 RK |
9 | <my-global-icon iconName="upload"></my-global-icon> |
10 | <label class="sr-only" for="avatarfile" i18n>Upload a new avatar</label> | |
11 | <input #avatarfileInput type="file" title=" " name="avatarfile" id="avatarfile" [accept]="avatarExtensions" (change)="onAvatarChange(avatarfileInput)"/> | |
12 | </div> | |
13 | ||
0e4ca570 | 14 | <div *ngIf="hasAvatar()" class="actor-img-edit-button" #avatarPopover="ngbPopover" [ngbPopover]="avatarEditContent" popoverClass="popover-avatar-info" autoClose="outside" placement="right"> |
76314386 | 15 | <my-global-icon iconName="edit"></my-global-icon> |
1ea7da81 | 16 | <label class="sr-only" for="avatarMenu" i18n>Change your avatar</label> |
76314386 | 17 | </div> |
1ea7da81 | 18 | |
df8914c9 RK |
19 | </div> |
20 | </div> | |
21 | ||
52d9f792 C |
22 | <div class="actor-info"> |
23 | <div class="actor-info-names"> | |
24 | <div class="actor-info-display-name">{{ actor.displayName }}</div> | |
25 | <div class="actor-info-username">{{ actor.name }}</div> | |
26 | </div> | |
27 | <div i18n class="actor-info-followers">{{ actor.followersCount }} subscribers</div> | |
28 | </div> | |
29 | </div> | |
1ea7da81 RK |
30 | </ng-container> |
31 | ||
32 | <ng-template #avatarEditContent> | |
33 | <div class="dropdown-item c-hand" [ngbTooltip]="avatarFormat" placement="right" container="body"> | |
34 | <my-global-icon iconName="upload"></my-global-icon> | |
35 | <span for="avatarfile" i18n>Upload a new avatar</span> | |
36 | <input #avatarfileInput type="file" title=" " name="avatarfile" id="avatarfile" [accept]="avatarExtensions" (change)="onAvatarChange(avatarfileInput)"/> | |
37 | </div> | |
38 | <div class="dropdown-item c-hand" (click)="deleteAvatar()" (key.enter)="deleteAvatar()"> | |
39 | <my-global-icon iconName="delete"></my-global-icon> | |
40 | <span i18n>Remove avatar</span> | |
41 | </div> | |
0e4ca570 | 42 | </ng-template> |