From: Chocobozzz Date: Wed, 27 Dec 2017 15:28:15 +0000 (+0100) Subject: Fix comment reply X-Git-Tag: v0.0.1-alpha~83 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ae45f988bb5ea32152cca02a282d02599dbb633b;p=oweals%2Fpeertube.git Fix comment reply --- diff --git a/client/src/app/videos/+video-watch/comment/video-comment.component.ts b/client/src/app/videos/+video-watch/comment/video-comment.component.ts index b8e2acd52..5af6e3335 100644 --- a/client/src/app/videos/+video-watch/comment/video-comment.component.ts +++ b/client/src/app/videos/+video-watch/comment/video-comment.component.ts @@ -1,11 +1,8 @@ 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() @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 () {