X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fcomment%2Fvideo-comment.component.ts;h=0c18b6e5d5b872a030d34d37a327c4c78dae57c1;hb=218b0874ede2f0d35fdbcfb64dbe19083b0a2b04;hp=b2bf3ee1be6d75d9670b6dc3a78ec809c5222b09;hpb=b29bf61dbd518e5cef0b2f564ddc8f8a0657d089;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 b2bf3ee1b..0c18b6e5d 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 { 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', @@ -18,6 +22,7 @@ export class VideoCommentComponent implements OnInit, OnChanges { @Input() commentTree: VideoCommentThreadTree @Input() inReplyToCommentId: number @Input() highlightedComment = false + @Input() firstInThread = false @Output() wantedToDelete = new EventEmitter() @Output() wantedToReply = new EventEmitter() @@ -28,9 +33,15 @@ export class VideoCommentComponent implements OnInit, OnChanges { sanitizedCommentHTML = '' newParentComments: VideoComment[] = [] + commentAccount: Account + commentUser: User + constructor ( private markdownService: MarkdownService, - private authService: AuthService + private authService: AuthService, + private accountService: AccountService, + private userService: UserService, + private notifier: Notifier ) {} get user () { @@ -90,9 +101,26 @@ export class VideoCommentComponent implements OnInit, OnChanges { ) } + 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.getUserWithCache(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) } }