]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/comment/video-comment.component.html
add channel avatar to watch view
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment.component.html
CommitLineData
cf117aaa 1<div class="root-comment">
fc641ded
C
2 <div class="left">
3 <img
4 *ngIf="!comment.isDeleted"
5 class="comment-avatar"
6 [src]="comment.accountAvatarUrl"
7 alt="Avatar"
8 />
69222afa 9
fc641ded
C
10 <div class="vertical-border"></div>
11 </div>
4635f59d 12
fc641ded
C
13 <div class="right">
14 <span *ngIf="comment.isDeleted" class="comment-avatar"></span>
1263fc4e 15
fc641ded
C
16 <div class="comment">
17 <ng-container *ngIf="!comment.isDeleted">
18 <div *ngIf="highlightedComment === true" class="highlighted-comment" i18n>Highlighted comment</div>
cf117aaa 19
fc641ded
C
20 <div class="comment-account-date">
21 <a [href]="comment.account.url" target="_blank" rel="noopener noreferrer" class="comment-account">{{ comment.by }}</a>
22 <a [routerLink]="['/videos/watch', video.uuid, { 'threadId': comment.threadId }]"
23 class="comment-date">{{ comment.createdAt | myFromNow }}</a>
24 </div>
25 <div class="comment-html" [innerHTML]="sanitizedCommentHTML"></div>
69222afa 26
fc641ded
C
27 <div class="comment-actions">
28 <div *ngIf="isUserLoggedIn()" (click)="onWantToReply()" class="comment-action-reply" i18n>Reply</div>
29 <div *ngIf="isRemovableByUser()" (click)="onWantToDelete()" class="comment-action-delete" i18n>Delete</div>
30 </div>
31 </ng-container>
69222afa 32
fc641ded
C
33 <ng-container *ngIf="comment.isDeleted">
34 <div class="comment-account-date">
35 <span class="comment-account" i18n>Deleted</span>
36 <a [routerLink]="['/videos/watch', video.uuid, { 'threadId': comment.threadId }]"
37 class="comment-date">{{ comment.createdAt | myFromNow }}</a>
38 </div>
39
40 <div *ngIf="comment.isDeleted" class="comment-html comment-html-deleted">
41 <i i18n>This comment has been deleted</i>
42 </div>
43 </ng-container>
4635f59d 44
fc641ded
C
45 <my-video-comment-add
46 *ngIf="!comment.isDeleted && isUserLoggedIn() && inReplyToCommentId === comment.id"
47 [user]="user"
48 [video]="video"
49 [parentComment]="comment"
50 [parentComments]="newParentComments"
51 [focusOnInit]="true"
52 (commentCreated)="onCommentReplyCreated($event)"
53 ></my-video-comment-add>
4635f59d 54
fc641ded
C
55 <div *ngIf="commentTree" class="children">
56 <div *ngFor="let commentChild of commentTree.children">
57 <my-video-comment
58 [comment]="commentChild.comment"
59 [video]="video"
60 [inReplyToCommentId]="inReplyToCommentId"
61 [commentTree]="commentChild"
62 [parentComments]="newParentComments"
63 (wantedToReply)="onWantToReply($event)"
64 (wantedToDelete)="onWantToDelete($event)"
65 (resetReply)="onResetReply()"
66 ></my-video-comment>
67 </div>
cf117aaa 68 </div>
4635f59d
C
69 </div>
70 </div>
71</div>