aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comments.component.html
blob: 4a424807302564646db1e7d812cfe013045323a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<div>
  <div class="title-page title-page-single">
    Comments
  </div>

  <ng-template [ngIf]="video.commentsEnabled === true">
    <my-video-comment-add
      *ngIf="isUserLoggedIn()"
      [video]="video"
      [user]="user"
      (commentCreated)="onCommentThreadCreated($event)"
    ></my-video-comment-add>

    <div *ngIf="componentPagination.totalItems === 0 && comments.length === 0">No comments.</div>

    <div
      class="comment-threads"
      infiniteScroll
      [infiniteScrollUpDistance]="1.5"
      [infiniteScrollDistance]="0.5"
      (scrolled)="onNearOfBottom()"
    >
      <div *ngFor="let comment of comments">
        <my-video-comment
          [comment]="comment"
          [video]="video"
          [inReplyToCommentId]="inReplyToCommentId"
          [commentTree]="threadComments[comment.id]"
          (wantedToReply)="onWantedToReply($event)"
          (resetReply)="onResetReply()"
        ></my-video-comment>

        <div *ngIf="comment.totalReplies !== 0 && !threadComments[comment.id]" (click)="viewReplies(comment)" class="view-replies">
          View all {{ comment.totalReplies }} replies

          <span *ngIf="!threadLoading[comment.id]" class="glyphicon glyphicon-menu-down"></span>
          <my-loader class="comment-thread-loading" [loading]="threadLoading[comment.id]"></my-loader>
        </div>
      </div>
    </div>
  </ng-template>

  <div *ngIf="video.commentsEnabled === false">
    Comments are disabled.
  </div>
</div>