]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/comment/video-comment.component.html
Add mentions to comments
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment.component.html
1 <div class="root-comment">
2 <img [src]="getAvatarUrl(comment.account)" alt="Avatar" />
3
4 <div class="comment">
5 <div class="comment-account-date">
6 <a target="_blank" [href]="comment.account.url" class="comment-account">{{ comment.by }}</a>
7 <div class="comment-date">{{ comment.createdAt | myFromNow }}</div>
8 </div>
9 <div class="comment-html" [innerHTML]="sanitizedCommentHTML"></div>
10
11 <div class="comment-actions">
12 <div *ngIf="isUserLoggedIn()" (click)="onWantToReply()" class="comment-action-reply">Reply</div>
13 <div *ngIf="isRemovableByUser()" (click)="onWantToDelete()" class="comment-action-delete">Delete</div>
14 </div>
15
16 <my-video-comment-add
17 *ngIf="isUserLoggedIn() && inReplyToCommentId === comment.id"
18 [user]="user"
19 [video]="video"
20 [parentComment]="comment"
21 [parentComments]="newParentComments"
22 [focusOnInit]="true"
23 (commentCreated)="onCommentReplyCreated($event)"
24 ></my-video-comment-add>
25
26 <div *ngIf="commentTree" class="children">
27 <div *ngFor="let commentChild of commentTree.children">
28 <my-video-comment
29 [comment]="commentChild.comment"
30 [video]="video"
31 [inReplyToCommentId]="inReplyToCommentId"
32 [commentTree]="commentChild"
33 [parentComments]="newParentComments"
34 (wantedToReply)="onWantToReply($event)"
35 (wantedToDelete)="onWantToDelete($event)"
36 (resetReply)="onResetReply()"
37 ></my-video-comment>
38 </div>
39 </div>
40 </div>
41 </div>