]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/comment/video-comments.component.html
Fix other videos not displayed in video watch
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comments.component.html
CommitLineData
4635f59d
C
1<div>
2 <div class="title-page title-page-single">
3 Comments
4 </div>
5
47564bbe
C
6 <ng-template [ngIf]="video.commentsEnabled === true">
7 <my-video-comment-add
8 *ngIf="isUserLoggedIn()"
9 [video]="video"
cf117aaa 10 [user]="user"
47564bbe
C
11 (commentCreated)="onCommentThreadCreated($event)"
12 ></my-video-comment-add>
4635f59d 13
47564bbe 14 <div *ngIf="componentPagination.totalItems === 0 && comments.length === 0">No comments.</div>
4635f59d 15
47564bbe
C
16 <div
17 class="comment-threads"
18 infiniteScroll
19 [infiniteScrollUpDistance]="1.5"
20 [infiniteScrollDistance]="0.5"
21 (scrolled)="onNearOfBottom()"
22 >
23 <div *ngFor="let comment of comments">
24 <my-video-comment
25 [comment]="comment"
26 [video]="video"
27 [inReplyToCommentId]="inReplyToCommentId"
28 [commentTree]="threadComments[comment.id]"
29 (wantedToReply)="onWantedToReply($event)"
4cb6d457
C
30 (wantedToDelete)="onWantedToDelete($event)"
31 (threadCreated)="onThreadCreated($event)"
47564bbe
C
32 (resetReply)="onResetReply()"
33 ></my-video-comment>
4635f59d 34
47564bbe
C
35 <div *ngIf="comment.totalReplies !== 0 && !threadComments[comment.id]" (click)="viewReplies(comment)" class="view-replies">
36 View all {{ comment.totalReplies }} replies
37
38 <span *ngIf="!threadLoading[comment.id]" class="glyphicon glyphicon-menu-down"></span>
39 <my-loader class="comment-thread-loading" [loading]="threadLoading[comment.id]"></my-loader>
40 </div>
4635f59d
C
41 </div>
42 </div>
47564bbe
C
43 </ng-template>
44
45 <div *ngIf="video.commentsEnabled === false">
46 Comments are disabled.
4635f59d
C
47 </div>
48</div>