27098f4b4a0c097c5987572328d7b8dab1e5d7bb
[oweals/peertube.git] / client / src / app / shared / video / video-miniature.component.ts
1 import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core'
2 import { User } from '../users'
3 import { Video } from './video.model'
4 import { ServerService } from '@app/core'
5
6 export type OwnerDisplayType = 'account' | 'videoChannel' | 'auto'
7
8 @Component({
9   selector: 'my-video-miniature',
10   styleUrls: [ './video-miniature.component.scss' ],
11   templateUrl: './video-miniature.component.html',
12   changeDetection: ChangeDetectionStrategy.OnPush
13 })
14 export class VideoMiniatureComponent implements OnInit {
15   @Input() user: User
16   @Input() video: Video
17   @Input() ownerDisplayType: OwnerDisplayType = 'account'
18
19   isVideoBlur: boolean
20
21   private ownerDisplayTypeChosen: 'account' | 'videoChannel'
22
23   constructor (private serverService: ServerService) { }
24
25   ngOnInit () {
26     if (this.ownerDisplayType === 'account' || this.ownerDisplayType === 'videoChannel') {
27       this.ownerDisplayTypeChosen = this.ownerDisplayType
28       return
29     }
30
31     // If the video channel name an UUID (not really displayable, we changed this behaviour in v1.0.0-beta.12)
32     // -> Use the account name
33     if (
34       this.video.channel.name === `${this.video.account.name}_channel` ||
35       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}$/)
36     ) {
37       this.ownerDisplayTypeChosen = 'account'
38     } else {
39       this.ownerDisplayTypeChosen = 'videoChannel'
40     }
41
42     this.isVideoBlur = this.video.isVideoNSFWForUser(this.user, this.serverService.getConfig())
43   }
44
45   displayOwnerAccount () {
46     return this.ownerDisplayTypeChosen === 'account'
47   }
48
49   displayOwnerVideoChannel () {
50     return this.ownerDisplayTypeChosen === 'videoChannel'
51   }
52 }