1
0
Fork 0
peertube/client/src/app/shared/video/video-miniature.component.ts

53 lines
1.6 KiB
TypeScript
Raw Normal View History

2018-09-20 12:21:57 +00:00
import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core'
2017-12-06 16:15:59 +00:00
import { User } from '../users'
import { Video } from './video.model'
import { ServerService } from '@app/core'
2018-08-21 14:18:59 +00:00
export type OwnerDisplayType = 'account' | 'videoChannel' | 'auto'
@Component({
selector: 'my-video-miniature',
styleUrls: [ './video-miniature.component.scss' ],
2018-09-20 12:21:57 +00:00
templateUrl: './video-miniature.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
})
2018-08-21 14:18:59 +00:00
export class VideoMiniatureComponent implements OnInit {
@Input() user: User
@Input() video: Video
2018-08-21 14:18:59 +00:00
@Input() ownerDisplayType: OwnerDisplayType = 'account'
private ownerDisplayTypeChosen: 'account' | 'videoChannel'
constructor (private serverService: ServerService) { }
2018-09-21 12:08:14 +00:00
get isVideoBlur () {
return this.video.isVideoNSFWForUser(this.user, this.serverService.getConfig())
}
2018-08-21 14:18:59 +00:00
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'
}
2017-04-04 19:37:03 +00:00
}
2018-08-21 14:18:59 +00:00
displayOwnerAccount () {
return this.ownerDisplayTypeChosen === 'account'
}
displayOwnerVideoChannel () {
return this.ownerDisplayTypeChosen === 'videoChannel'
}
}