X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fcomment%2Fvideo-comment.component.ts;h=0d48f0a8205d2bac46482666c42824f82d3b8ac1;hb=5b0413ddaa7949a6a44512a8281c5a23466599ae;hp=172eb0a39acbce2a5abe0d1352a729bd423a6abe;hpb=97567dd81f508dd6295ac4d73d849aa2ce0a6549;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 172eb0a39..0d48f0a82 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,10 +1,14 @@ import { Component, EventEmitter, Input, OnChanges, OnInit, Output } from '@angular/core' -import { UserRight } from '../../../../../../shared/models/users' +import { User, UserRight } from '../../../../../../shared/models/users' import { VideoCommentThreadTree } from '../../../../../../shared/models/videos/video-comment.model' -import { AuthService } from '../../../core/auth' -import { Video } from '../../../shared/video/video.model' +import { AuthService } from '@app/core/auth' +import { AccountService } from '@app/shared/account/account.service' +import { Video } from '@app/shared/video/video.model' import { VideoComment } from './video-comment.model' -import { HtmlRendererService } from '@app/shared/renderer' +import { MarkdownService } from '@app/shared/renderer' +import { Account } from '@app/shared/account/account.model' +import { Notifier } from '@app/core' +import { UserService } from '@app/shared' @Component({ selector: 'my-video-comment', @@ -23,13 +27,20 @@ export class VideoCommentComponent implements OnInit, OnChanges { @Output() wantedToReply = new EventEmitter() @Output() threadCreated = new EventEmitter() @Output() resetReply = new EventEmitter() + @Output() timestampClicked = new EventEmitter() sanitizedCommentHTML = '' newParentComments: VideoComment[] = [] + commentAccount: Account + commentUser: User + constructor ( - private htmlRenderer: HtmlRendererService, - private authService: AuthService + private markdownService: MarkdownService, + private authService: AuthService, + private accountService: AccountService, + private userService: UserService, + private notifier: Notifier ) {} get user () { @@ -77,17 +88,38 @@ export class VideoCommentComponent implements OnInit, OnChanges { this.resetReply.emit() } + handleTimestampClicked (timestamp: number) { + this.timestampClicked.emit(timestamp) + } + isRemovableByUser () { - return this.isUserLoggedIn() && + return this.comment.account && this.isUserLoggedIn() && ( this.user.account.id === this.comment.account.id || this.user.hasRight(UserRight.REMOVE_ANY_VIDEO_COMMENT) ) } - private async init () { - this.sanitizedCommentHTML = await this.htmlRenderer.toSafeHtml(this.comment.text) + private getUserIfNeeded (account: Account) { + if (!account.userId) return + if (!this.authService.isLoggedIn()) return + + const user = this.authService.getUser() + if (user.hasRight(UserRight.MANAGE_USERS)) { + this.userService.getUser(account.userId) + .subscribe( + user => this.commentUser = user, + err => this.notifier.error(err.message) + ) + } + } + + private async init () { + const html = await this.markdownService.textMarkdownToHTML(this.comment.text, true) + this.sanitizedCommentHTML = await this.markdownService.processVideoTimestamps(html) this.newParentComments = this.parentComments.concat([ this.comment ]) + this.commentAccount = new Account(this.comment.account) + this.getUserIfNeeded(this.commentAccount) } }