PeerTube/client/src/app/shared/shared-thumbnail/video-thumbnail.component.ts

70 lines
1.7 KiB
TypeScript

import { Component, EventEmitter, Input, Output } from '@angular/core'
import { ScreenService } from '@app/core'
import { VideoState } from '@shared/models'
import { Video } from '../shared-main'
@Component({
selector: 'my-video-thumbnail',
styleUrls: [ './video-thumbnail.component.scss' ],
templateUrl: './video-thumbnail.component.html'
})
export class VideoThumbnailComponent {
@Input() video: Video
@Input() nsfw = false
@Input() videoRouterLink: string | any[]
@Input() queryParams: { [ p: string ]: any }
@Input() videoHref: string
@Input() videoTarget: string
@Input() displayWatchLaterPlaylist: boolean
@Input() inWatchLaterPlaylist: boolean
@Output() watchLaterClick = new EventEmitter<boolean>()
addToWatchLaterText: string
addedToWatchLaterText: string
constructor (private screenService: ScreenService) {
this.addToWatchLaterText = $localize`Add to watch later`
this.addedToWatchLaterText = $localize`Remove from watch later`
}
isLiveEnded () {
if (!this.video.state) return
return this.video.state.id === VideoState.LIVE_ENDED
}
getImageUrl () {
if (!this.video) return ''
if (this.screenService.isInMobileView()) {
return this.video.previewUrl
}
return this.video.thumbnailUrl
}
getProgressPercent () {
if (!this.video.userHistory) return 0
const currentTime = this.video.userHistory.currentTime
return (currentTime / this.video.duration) * 100
}
getVideoRouterLink () {
if (this.videoRouterLink) return this.videoRouterLink
return Video.buildWatchUrl(this.video)
}
onWatchLaterClick (event: Event) {
this.watchLaterClick.emit(this.inWatchLaterPlaylist)
event.stopPropagation()
return false
}
}