Skip to content
Snippets Groups Projects
Unverified Commit ae45f988 authored by Chocobozzz's avatar Chocobozzz
Browse files

Fix comment reply

parent 4635f59d
No related branches found
No related tags found
No related merge requests found
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',
......@@ -21,31 +18,22 @@ export class VideoCommentComponent {
@Output() wantedToReply = new EventEmitter<VideoComment>()
@Output() resetReply = new EventEmitter()
constructor (private authService: AuthService,
private notificationsService: NotificationsService,
private videoCommentService: VideoCommentService) {
constructor (private authService: AuthService) {
}
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)
)
onCommentReplyCreated (createdComment: VideoComment) {
if (!this.commentTree) {
this.commentTree = {
comment: this.comment,
children: []
}
}
this.commentTree.children.push({
comment: createdComment,
children: []
})
this.resetReply.emit()
}
onWantToReply () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment