aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comment.component.ts
blob: 5af6e33353d2e0954d7740d509e721cd2d139174 (plain) (tree)
1
2
3
4
5
                                                                      

                                                                                                   

                                                         














                                                            
                                                  

   












                                                        


















                                           
import { Component, EventEmitter, Input, Output } from '@angular/core'
import { VideoCommentThreadTree } from '../../../../../../shared/models/videos/video-comment.model'
import { AuthService } from '../../../core/auth'
import { Video } from '../../../shared/video/video.model'
import { VideoComment } from './video-comment.model'

@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) {
  }

  onCommentReplyCreated (createdComment: VideoComment) {
    if (!this.commentTree) {
      this.commentTree = {
        comment: this.comment,
        children: []
      }
    }

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

  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()
  }
}