aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comment.component.ts
blob: b8e2acd52f11316f9ca37a68e68df539fcf208ed (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { Component, EventEmitter, Input, Output } from '@angular/core'
import { NotificationsService } from 'angular2-notifications'
import { VideoCommentThreadTree } from '../../../../../../shared/models/videos/video-comment.model'
import { AuthService } from '../../../core/auth'
import { User } from '../../../shared/users'
import { Video } from '../../../shared/video/video.model'
import { VideoComment } from './video-comment.model'
import { VideoCommentService } from './video-comment.service'

@Component({
  selector: 'my-video-comment',
  templateUrl: './video-comment.component.html',
  styleUrls: ['./video-comment.component.scss']
})
export class VideoCommentComponent {
  @Input() video: Video
  @Input() comment: VideoComment
  @Input() commentTree: VideoCommentThreadTree
  @Input() inReplyToCommentId: number

  @Output() wantedToReply = new EventEmitter<VideoComment>()
  @Output() resetReply = new EventEmitter()

  constructor (private authService: AuthService,
               private notificationsService: NotificationsService,
               private videoCommentService: VideoCommentService) {
  }

  onCommentReplyCreated (comment: VideoComment) {
    this.videoCommentService.addCommentReply(this.video.id, this.comment.id, comment)
      .subscribe(
        createdComment => {
          if (!this.commentTree) {
            this.commentTree = {
              comment: this.comment,
              children: []
            }
          }

          this.commentTree.children.push({
            comment: createdComment,
            children: []
          })
          this.resetReply.emit()
        },

        err => this.notificationsService.error('Error', err.message)
      )
  }

  onWantToReply () {
    this.wantedToReply.emit(this.comment)
  }

  isUserLoggedIn () {
    return this.authService.isLoggedIn()
  }

  // Event from child comment
  onWantedToReply (comment: VideoComment) {
    this.wantedToReply.emit(comment)
  }

  onResetReply () {
    this.resetReply.emit()
  }
}