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