]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/comment/video-comment.component.html
Merge branch 'release/2.1.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment.component.html
CommitLineData
cf117aaa 1<div class="root-comment">
fc641ded 2 <div class="left">
a0dedc02
RK
3 <a *ngIf="!comment.isDeleted" [href]="comment.account.url" target="_blank" rel="noopener noreferrer">
4 <img
5 class="comment-avatar"
6 [src]="comment.accountAvatarUrl"
c511c3f0 7 (error)="switchToDefaultAvatar($event)"
a0dedc02
RK
8 alt="Avatar"
9 />
10 </a>
69222afa 11
fc641ded
C
12 <div class="vertical-border"></div>
13 </div>
4635f59d 14
c62a34d3 15 <div class="right" [ngClass]="{ 'mb-3': firstInThread }">
fc641ded 16 <span *ngIf="comment.isDeleted" class="comment-avatar"></span>
1263fc4e 17
fc641ded
C
18 <div class="comment">
19 <ng-container *ngIf="!comment.isDeleted">
20 <div *ngIf="highlightedComment === true" class="highlighted-comment" i18n>Highlighted comment</div>
cf117aaa 21
fc641ded 22 <div class="comment-account-date">
5dfb7c1d
RK
23 <a [href]="comment.account.url" target="_blank" rel="noopener noreferrer" class="comment-account">
24 <span class="comment-account-name" [ngClass]="{ 'video-author': video.account.id === comment.account.id }">{{ comment.account.displayName }}</span>
25 <span class="comment-account-fid ml-1">{{ comment.by }}</span>
26 </a>
fc641ded 27 <a [routerLink]="['/videos/watch', video.uuid, { 'threadId': comment.threadId }]"
5dfb7c1d 28 class="comment-date" [title]="comment.createdAt">{{ comment.createdAt | myFromNow }}</a>
fc641ded 29 </div>
b29bf61d
RK
30 <div
31 class="comment-html"
32 [innerHTML]="sanitizedCommentHTML"
33 (timestampClicked)="handleTimestampClicked($event)"
34 timestampRouteTransformer
35 ></div>
69222afa 36
fc641ded
C
37 <div class="comment-actions">
38 <div *ngIf="isUserLoggedIn()" (click)="onWantToReply()" class="comment-action-reply" i18n>Reply</div>
39 <div *ngIf="isRemovableByUser()" (click)="onWantToDelete()" class="comment-action-delete" i18n>Delete</div>
218b0874 40
edf1a4e5 41 <my-user-moderation-dropdown
218b0874 42 buttonSize="small" [account]="commentAccount" [user]="commentUser" i18n-label label="Options" placement="bottom-left auto"
edf1a4e5 43 ></my-user-moderation-dropdown>
fc641ded
C
44 </div>
45 </ng-container>
69222afa 46
fc641ded
C
47 <ng-container *ngIf="comment.isDeleted">
48 <div class="comment-account-date">
49 <span class="comment-account" i18n>Deleted</span>
50 <a [routerLink]="['/videos/watch', video.uuid, { 'threadId': comment.threadId }]"
51 class="comment-date">{{ comment.createdAt | myFromNow }}</a>
52 </div>
53
54 <div *ngIf="comment.isDeleted" class="comment-html comment-html-deleted">
55 <i i18n>This comment has been deleted</i>
56 </div>
57 </ng-container>
4635f59d 58
fc641ded
C
59 <my-video-comment-add
60 *ngIf="!comment.isDeleted && isUserLoggedIn() && inReplyToCommentId === comment.id"
61 [user]="user"
62 [video]="video"
63 [parentComment]="comment"
64 [parentComments]="newParentComments"
65 [focusOnInit]="true"
66 (commentCreated)="onCommentReplyCreated($event)"
88adad2d 67 (cancel)="onResetReply()"
fc641ded 68 ></my-video-comment-add>
4635f59d 69
fc641ded
C
70 <div *ngIf="commentTree" class="children">
71 <div *ngFor="let commentChild of commentTree.children">
72 <my-video-comment
73 [comment]="commentChild.comment"
74 [video]="video"
75 [inReplyToCommentId]="inReplyToCommentId"
76 [commentTree]="commentChild"
77 [parentComments]="newParentComments"
78 (wantedToReply)="onWantToReply($event)"
79 (wantedToDelete)="onWantToDelete($event)"
80 (resetReply)="onResetReply()"
b29bf61d 81 (timestampClicked)="handleTimestampClicked($event)"
fc641ded
C
82 ></my-video-comment>
83 </div>
cf117aaa 84 </div>
c62a34d3 85
218b0874
C
86 <ng-content></ng-content>
87 </div>
4635f59d
C
88 </div>
89</div>