X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fcomment%2Fvideo-comment.component.ts;h=e90008de9b603fb8cbf2a5972ae23b72eebc20b8;hb=13a6b53655cdd7baba494abc3c9ff52788d4651e;hp=b305c639a7ee25f1d5df7677cf18bbaa227a6832;hpb=cf117aaafc1e9ae1ab4c388fc5d2e5ba9349efee;p=github%2FChocobozzz%2FPeerTube.git 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 b305c639a..e90008de9 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,8 +1,9 @@ -import { Component, EventEmitter, Input, Output } from '@angular/core' -import { Account as AccountInterface } from '../../../../../../shared/models/actors' +import { Component, EventEmitter, Input, OnChanges, OnInit, Output } from '@angular/core' +import { LinkifierService } from '@app/videos/+video-watch/comment/linkifier.service' +import * as sanitizeHtml from 'sanitize-html' +import { UserRight } from '../../../../../../shared/models/users' import { VideoCommentThreadTree } from '../../../../../../shared/models/videos/video-comment.model' import { AuthService } from '../../../core/auth' -import { Account } from '../../../shared/account/account.model' import { Video } from '../../../shared/video/video.model' import { VideoComment } from './video-comment.model' @@ -11,54 +12,103 @@ import { VideoComment } from './video-comment.model' templateUrl: './video-comment.component.html', styleUrls: ['./video-comment.component.scss'] }) -export class VideoCommentComponent { +export class VideoCommentComponent implements OnInit, OnChanges { @Input() video: Video @Input() comment: VideoComment + @Input() parentComments: VideoComment[] = [] @Input() commentTree: VideoCommentThreadTree @Input() inReplyToCommentId: number + @Input() highlightedComment = false + @Output() wantedToDelete = new EventEmitter() @Output() wantedToReply = new EventEmitter() + @Output() threadCreated = new EventEmitter() @Output() resetReply = new EventEmitter() - constructor (private authService: AuthService) {} + sanitizedCommentHTML = '' + newParentComments = [] + + constructor ( + private linkifierService: LinkifierService, + private authService: AuthService + ) {} get user () { return this.authService.getUser() } + ngOnInit () { + this.init() + } + + ngOnChanges () { + this.init() + } + onCommentReplyCreated (createdComment: VideoComment) { if (!this.commentTree) { this.commentTree = { comment: this.comment, children: [] } + + this.threadCreated.emit(this.commentTree) } - this.commentTree.children.push({ + this.commentTree.children.unshift({ comment: createdComment, children: [] }) this.resetReply.emit() } - onWantToReply () { - this.wantedToReply.emit(this.comment) + onWantToReply (comment?: VideoComment) { + this.wantedToReply.emit(comment || this.comment) } - isUserLoggedIn () { - return this.authService.isLoggedIn() + onWantToDelete (comment?: VideoComment) { + this.wantedToDelete.emit(comment || this.comment) } - // Event from child comment - onWantedToReply (comment: VideoComment) { - this.wantedToReply.emit(comment) + isUserLoggedIn () { + return this.authService.isLoggedIn() } onResetReply () { this.resetReply.emit() } - getAvatarUrl (account: AccountInterface) { - return Account.GET_ACCOUNT_AVATAR_URL(account) + isRemovableByUser () { + return this.isUserLoggedIn() && + ( + this.user.account.id === this.comment.account.id || + this.user.hasRight(UserRight.REMOVE_ANY_VIDEO_COMMENT) + ) + } + + private init () { + // Convert possible markdown to html + const html = this.linkifierService.linkify(this.comment.text) + + this.sanitizedCommentHTML = sanitizeHtml(html, { + allowedTags: [ 'a', 'p', 'span', 'br' ], + allowedSchemes: [ 'http', 'https' ], + allowedAttributes: { + 'a': [ 'href', 'class', 'target' ] + }, + transformTags: { + a: (tagName, attribs) => { + return { + tagName, + attribs: Object.assign(attribs, { + target: '_blank', + rel: 'noopener noreferrer' + }) + } + } + } + }) + + this.newParentComments = this.parentComments.concat([ this.comment ]) } }