X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fvideo%2Fvideo-miniature.component.ts;h=7e8692b0be9f93b4bcb819ba431998e8a822cede;hb=d1a63fc7ac58a1db00d8ca4f43aadba02eb9b084;hp=4d79a74bb88effbbf43e0b625ce85be6f97bf781;hpb=fada8d75550dc7365f7e18ee1569b9406251d660;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/video/video-miniature.component.ts b/client/src/app/shared/video/video-miniature.component.ts index 4d79a74bb..7e8692b0b 100644 --- a/client/src/app/shared/video/video-miniature.component.ts +++ b/client/src/app/shared/video/video-miniature.component.ts @@ -1,17 +1,52 @@ -import { Component, Input } from '@angular/core' +import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core' import { User } from '../users' import { Video } from './video.model' +import { ServerService } from '@app/core' + +export type OwnerDisplayType = 'account' | 'videoChannel' | 'auto' @Component({ selector: 'my-video-miniature', styleUrls: [ './video-miniature.component.scss' ], - templateUrl: './video-miniature.component.html' + templateUrl: './video-miniature.component.html', + changeDetection: ChangeDetectionStrategy.OnPush }) -export class VideoMiniatureComponent { +export class VideoMiniatureComponent implements OnInit { @Input() user: User @Input() video: Video + @Input() ownerDisplayType: OwnerDisplayType = 'account' + + private ownerDisplayTypeChosen: 'account' | 'videoChannel' + + constructor (private serverService: ServerService) { } + + get isVideoBlur () { + return this.video.isVideoNSFWForUser(this.user, this.serverService.getConfig()) + } + + ngOnInit () { + if (this.ownerDisplayType === 'account' || this.ownerDisplayType === 'videoChannel') { + this.ownerDisplayTypeChosen = this.ownerDisplayType + return + } + + // If the video channel name an UUID (not really displayable, we changed this behaviour in v1.0.0-beta.12) + // -> Use the account name + if ( + this.video.channel.name === `${this.video.account.name}_channel` || + this.video.channel.name.match(/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/) + ) { + this.ownerDisplayTypeChosen = 'account' + } else { + this.ownerDisplayTypeChosen = 'videoChannel' + } + } + + displayOwnerAccount () { + return this.ownerDisplayTypeChosen === 'account' + } - isVideoNSFWForThisUser () { - return this.video.isVideoNSFWForUser(this.user) + displayOwnerVideoChannel () { + return this.ownerDisplayTypeChosen === 'videoChannel' } }