X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared-video-miniature%2Fvideo-miniature.component.ts;h=7de9fc8e285dee3582e510e62f00857fb190f5d2;hb=f41efa52a412272928ba90e06c9a9a9c471d1ca3;hp=48da92d6b5eab70174c63585dd2126d67b98263d;hpb=dc48fdbe68e9dd3a3a6028181e61d8595d98e654;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared-video-miniature/video-miniature.component.ts b/client/src/app/shared/shared-video-miniature/video-miniature.component.ts index 48da92d6b..7de9fc8e2 100644 --- a/client/src/app/shared/shared-video-miniature/video-miniature.component.ts +++ b/client/src/app/shared/shared-video-miniature/video-miniature.component.ts @@ -11,7 +11,9 @@ import { Output } from '@angular/core' import { AuthService, ScreenService, ServerService, User } from '@app/core' -import { ServerConfig, VideoPlaylistType, VideoPrivacy, VideoState } from '@shared/models' +import { HTMLServerConfig, VideoPlaylistType, VideoPrivacy, VideoState } from '@shared/models' +import { LinkType } from '../../../types/link.type' +import { ActorAvatarSize } from '../shared-actor-image/actor-avatar.component' import { Video } from '../shared-main' import { VideoPlaylistService } from '../shared-video-playlist' import { VideoActionsDisplayType } from './video-actions-dropdown.component' @@ -27,8 +29,6 @@ export type MiniatureDisplayOptions = { blacklistInfo?: boolean nsfw?: boolean } -export type VideoLinkType = 'internal' | 'lazy-load' | 'external' - @Component({ selector: 'my-video-miniature', styleUrls: [ './video-miniature.component.scss' ], @@ -51,9 +51,11 @@ export class VideoMiniatureComponent implements OnInit { } @Input() displayVideoActions = true + @Input() actorImageSize: ActorAvatarSize = '40' + @Input() displayAsRow = false - @Input() videoLinkType: VideoLinkType = 'internal' + @Input() videoLinkType: LinkType = 'internal' @Output() videoBlocked = new EventEmitter() @Output() videoUnblocked = new EventEmitter() @@ -71,7 +73,7 @@ export class VideoMiniatureComponent implements OnInit { mute: true } showActions = false - serverConfig: ServerConfig + serverConfig: HTMLServerConfig addToWatchLaterText: string addedToWatchLaterText: string @@ -83,7 +85,7 @@ export class VideoMiniatureComponent implements OnInit { playlistElementId?: number } - videoRouterLink: any[] = [] + videoRouterLink: string | any[] = [] videoHref: string videoTarget: string @@ -98,17 +100,25 @@ export class VideoMiniatureComponent implements OnInit { @Inject(LOCALE_ID) private localeId: string ) {} + get authorAccount () { + return this.serverConfig.client.videos.miniature.preferAuthorDisplayName + ? this.video.account.displayName + : this.video.byAccount + } + + get authorChannel () { + return this.serverConfig.client.videos.miniature.preferAuthorDisplayName + ? this.video.channel.displayName + : this.video.byVideoChannel + } + get isVideoBlur () { return this.video.isVideoNSFWForUser(this.user, this.serverConfig) } ngOnInit () { - this.serverConfig = this.serverService.getTmpConfig() - this.serverService.getConfig() - .subscribe(config => { - this.serverConfig = config - this.buildVideoLink() - }) + this.serverConfig = this.serverService.getHTMLConfig() + this.buildVideoLink() this.setUpBy() @@ -122,7 +132,7 @@ export class VideoMiniatureComponent implements OnInit { buildVideoLink () { if (this.videoLinkType === 'internal' || !this.video.url) { - this.videoRouterLink = [ '/videos/watch', this.video.uuid ] + this.videoRouterLink = Video.buildWatchUrl(this.video) return } @@ -165,6 +175,14 @@ export class VideoMiniatureComponent implements OnInit { return $localize`Publication scheduled on ` + updateAt } + if (video.state.id === VideoState.TRANSCODING_FAILED) { + return $localize`Transcoding failed` + } + + if (video.state.id === VideoState.TO_MOVE_TO_EXTERNAL_STORAGE_FAILED) { + return $localize`Move to external storage failed` + } + if (video.state.id === VideoState.TO_TRANSCODE && video.waitTranscoding === true) { return $localize`Waiting transcoding` } @@ -177,15 +195,11 @@ export class VideoMiniatureComponent implements OnInit { return $localize`To import` } - return '' - } - - getAvatarUrl () { - if (this.displayOwnerAccount()) { - return this.video.accountAvatarUrl + if (video.state.id === VideoState.TO_EDIT) { + return $localize`To edit` } - return this.video.videoChannelAvatarUrl + return '' } loadActions () { @@ -224,11 +238,12 @@ export class VideoMiniatureComponent implements OnInit { addToWatchLater () { const body = { videoId: this.video.id } - this.videoPlaylistService.addVideoInPlaylist(this.watchLaterPlaylist.id, body).subscribe( - res => { - this.watchLaterPlaylist.playlistElementId = res.videoPlaylistElement.id - } - ) + this.videoPlaylistService.addVideoInPlaylist(this.watchLaterPlaylist.id, body) + .subscribe( + res => { + this.watchLaterPlaylist.playlistElementId = res.videoPlaylistElement.id + } + ) } removeFromWatchLater () {