2020-01-03 09:01:17 -05:00
|
|
|
import {
|
|
|
|
ChangeDetectionStrategy,
|
|
|
|
ChangeDetectorRef,
|
|
|
|
Component,
|
|
|
|
EventEmitter,
|
|
|
|
Inject,
|
|
|
|
Input,
|
|
|
|
LOCALE_ID,
|
|
|
|
OnInit,
|
|
|
|
Output
|
|
|
|
} from '@angular/core'
|
2017-12-06 11:15:59 -05:00
|
|
|
import { User } from '../users'
|
|
|
|
import { Video } from './video.model'
|
2020-01-03 09:01:17 -05:00
|
|
|
import { AuthService, ServerService } from '@app/core'
|
|
|
|
import { ServerConfig, VideoPlaylistType, VideoPrivacy, VideoState } from '../../../../../shared'
|
2019-04-03 10:17:41 -04:00
|
|
|
import { I18n } from '@ngx-translate/i18n-polyfill'
|
2019-04-05 04:52:27 -04:00
|
|
|
import { VideoActionsDisplayType } from '@app/shared/video/video-actions-dropdown.component'
|
|
|
|
import { ScreenService } from '@app/shared/misc/screen.service'
|
2020-01-03 09:01:17 -05:00
|
|
|
import { VideoPlaylistService } from '@app/shared/video-playlist/video-playlist.service'
|
2020-01-06 07:06:13 -05:00
|
|
|
import { switchMap } from 'rxjs/operators'
|
2016-05-21 12:03:34 -04:00
|
|
|
|
2018-08-21 10:18:59 -04:00
|
|
|
export type OwnerDisplayType = 'account' | 'videoChannel' | 'auto'
|
2019-04-03 10:17:41 -04:00
|
|
|
export type MiniatureDisplayOptions = {
|
|
|
|
date?: boolean
|
|
|
|
views?: boolean
|
|
|
|
by?: boolean
|
|
|
|
privacyLabel?: boolean
|
|
|
|
privacyText?: boolean
|
|
|
|
state?: boolean
|
|
|
|
blacklistInfo?: boolean
|
|
|
|
nsfw?: boolean
|
|
|
|
}
|
2018-08-21 10:18:59 -04:00
|
|
|
|
2016-05-21 12:03:34 -04:00
|
|
|
@Component({
|
|
|
|
selector: 'my-video-miniature',
|
2016-09-19 16:49:31 -04:00
|
|
|
styleUrls: [ './video-miniature.component.scss' ],
|
2018-09-20 08:21:57 -04:00
|
|
|
templateUrl: './video-miniature.component.html',
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
2016-05-21 12:03:34 -04:00
|
|
|
})
|
2018-08-21 10:18:59 -04:00
|
|
|
export class VideoMiniatureComponent implements OnInit {
|
2017-06-16 08:32:15 -04:00
|
|
|
@Input() user: User
|
|
|
|
@Input() video: Video
|
2019-04-03 10:17:41 -04:00
|
|
|
|
2018-08-21 10:18:59 -04:00
|
|
|
@Input() ownerDisplayType: OwnerDisplayType = 'account'
|
2019-04-03 10:17:41 -04:00
|
|
|
@Input() displayOptions: MiniatureDisplayOptions = {
|
|
|
|
date: true,
|
|
|
|
views: true,
|
|
|
|
by: true,
|
|
|
|
privacyLabel: false,
|
|
|
|
privacyText: false,
|
|
|
|
state: false,
|
|
|
|
blacklistInfo: false
|
|
|
|
}
|
|
|
|
@Input() displayAsRow = false
|
2019-04-05 04:52:27 -04:00
|
|
|
@Input() displayVideoActions = true
|
|
|
|
|
|
|
|
@Output() videoBlacklisted = new EventEmitter()
|
|
|
|
@Output() videoUnblacklisted = new EventEmitter()
|
|
|
|
@Output() videoRemoved = new EventEmitter()
|
|
|
|
|
|
|
|
videoActionsDisplayOptions: VideoActionsDisplayType = {
|
|
|
|
playlist: true,
|
|
|
|
download: false,
|
|
|
|
update: true,
|
|
|
|
blacklist: true,
|
|
|
|
delete: true,
|
2020-01-10 04:11:28 -05:00
|
|
|
report: true,
|
|
|
|
duplicate: false
|
2019-04-05 04:52:27 -04:00
|
|
|
}
|
|
|
|
showActions = false
|
2019-12-18 09:31:54 -05:00
|
|
|
serverConfig: ServerConfig
|
2018-08-21 10:18:59 -04:00
|
|
|
|
2020-01-03 09:01:17 -05:00
|
|
|
addToWatchLaterText: string
|
|
|
|
addedToWatchLaterText: string
|
|
|
|
inWatchLaterPlaylist: boolean
|
|
|
|
|
|
|
|
watchLaterPlaylist: {
|
|
|
|
id: number
|
|
|
|
playlistElementId?: number
|
|
|
|
}
|
|
|
|
|
2018-08-21 10:18:59 -04:00
|
|
|
private ownerDisplayTypeChosen: 'account' | 'videoChannel'
|
2016-05-21 12:03:34 -04:00
|
|
|
|
2019-04-03 10:17:41 -04:00
|
|
|
constructor (
|
2019-04-05 04:52:27 -04:00
|
|
|
private screenService: ScreenService,
|
2019-04-03 10:17:41 -04:00
|
|
|
private serverService: ServerService,
|
|
|
|
private i18n: I18n,
|
2020-01-03 09:01:17 -05:00
|
|
|
private authService: AuthService,
|
|
|
|
private videoPlaylistService: VideoPlaylistService,
|
|
|
|
private cd: ChangeDetectorRef,
|
2019-04-03 10:17:41 -04:00
|
|
|
@Inject(LOCALE_ID) private localeId: string
|
2020-01-03 09:01:17 -05:00
|
|
|
) {
|
|
|
|
|
|
|
|
}
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2018-09-21 08:08:14 -04:00
|
|
|
get isVideoBlur () {
|
2019-12-18 09:31:54 -05:00
|
|
|
return this.video.isVideoNSFWForUser(this.user, this.serverConfig)
|
2018-09-21 08:08:14 -04:00
|
|
|
}
|
|
|
|
|
2018-08-21 10:18:59 -04:00
|
|
|
ngOnInit () {
|
2019-12-18 09:31:54 -05:00
|
|
|
this.serverConfig = this.serverService.getTmpConfig()
|
|
|
|
this.serverService.getConfig()
|
|
|
|
.subscribe(config => this.serverConfig = config)
|
|
|
|
|
2019-04-05 04:52:27 -04:00
|
|
|
this.setUpBy()
|
2018-08-21 10:18:59 -04:00
|
|
|
|
2019-04-05 08:16:48 -04:00
|
|
|
// We rely on mouseenter to lazy load actions
|
|
|
|
if (this.screenService.isInTouchScreen()) {
|
2019-04-26 04:47:07 -04:00
|
|
|
this.loadActions()
|
2018-08-21 10:18:59 -04:00
|
|
|
}
|
2017-04-04 15:37:03 -04:00
|
|
|
}
|
2018-08-21 10:18:59 -04:00
|
|
|
|
|
|
|
displayOwnerAccount () {
|
|
|
|
return this.ownerDisplayTypeChosen === 'account'
|
|
|
|
}
|
|
|
|
|
|
|
|
displayOwnerVideoChannel () {
|
|
|
|
return this.ownerDisplayTypeChosen === 'videoChannel'
|
|
|
|
}
|
2018-10-10 08:35:55 -04:00
|
|
|
|
|
|
|
isUnlistedVideo () {
|
|
|
|
return this.video.privacy.id === VideoPrivacy.UNLISTED
|
|
|
|
}
|
|
|
|
|
|
|
|
isPrivateVideo () {
|
|
|
|
return this.video.privacy.id === VideoPrivacy.PRIVATE
|
|
|
|
}
|
2019-04-03 10:17:41 -04:00
|
|
|
|
|
|
|
getStateLabel (video: Video) {
|
2019-09-04 09:03:50 -04:00
|
|
|
if (!video.state) return ''
|
|
|
|
|
2019-04-03 10:17:41 -04:00
|
|
|
if (video.privacy.id !== VideoPrivacy.PRIVATE && video.state.id === VideoState.PUBLISHED) {
|
|
|
|
return this.i18n('Published')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video.scheduledUpdate) {
|
|
|
|
const updateAt = new Date(video.scheduledUpdate.updateAt.toString()).toLocaleString(this.localeId)
|
|
|
|
return this.i18n('Publication scheduled on ') + updateAt
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video.state.id === VideoState.TO_TRANSCODE && video.waitTranscoding === true) {
|
|
|
|
return this.i18n('Waiting transcoding')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video.state.id === VideoState.TO_TRANSCODE) {
|
|
|
|
return this.i18n('To transcode')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video.state.id === VideoState.TO_IMPORT) {
|
|
|
|
return this.i18n('To import')
|
|
|
|
}
|
|
|
|
|
|
|
|
return ''
|
|
|
|
}
|
2019-04-05 04:52:27 -04:00
|
|
|
|
|
|
|
loadActions () {
|
|
|
|
if (this.displayVideoActions) this.showActions = true
|
2020-01-03 09:01:17 -05:00
|
|
|
|
|
|
|
this.loadWatchLater()
|
2019-04-05 04:52:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
onVideoBlacklisted () {
|
|
|
|
this.videoBlacklisted.emit()
|
|
|
|
}
|
|
|
|
|
|
|
|
onVideoUnblacklisted () {
|
|
|
|
this.videoUnblacklisted.emit()
|
|
|
|
}
|
|
|
|
|
|
|
|
onVideoRemoved () {
|
|
|
|
this.videoRemoved.emit()
|
|
|
|
}
|
|
|
|
|
2020-01-03 09:01:17 -05:00
|
|
|
isUserLoggedIn () {
|
|
|
|
return this.authService.isLoggedIn()
|
|
|
|
}
|
|
|
|
|
|
|
|
onWatchLaterClick (currentState: boolean) {
|
|
|
|
if (currentState === true) this.removeFromWatchLater()
|
|
|
|
else this.addToWatchLater()
|
|
|
|
|
|
|
|
this.inWatchLaterPlaylist = !currentState
|
|
|
|
}
|
|
|
|
|
|
|
|
addToWatchLater () {
|
|
|
|
const body = { videoId: this.video.id }
|
|
|
|
|
|
|
|
this.videoPlaylistService.addVideoInPlaylist(this.watchLaterPlaylist.id, body).subscribe(
|
|
|
|
res => {
|
|
|
|
this.watchLaterPlaylist.playlistElementId = res.videoPlaylistElement.id
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
removeFromWatchLater () {
|
2020-01-06 07:06:13 -05:00
|
|
|
this.videoPlaylistService.removeVideoFromPlaylist(this.watchLaterPlaylist.id, this.watchLaterPlaylist.playlistElementId, this.video.id)
|
2020-01-03 09:01:17 -05:00
|
|
|
.subscribe(
|
|
|
|
_ => { /* empty */ }
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
isWatchLaterPlaylistDisplayed () {
|
2020-02-19 03:33:49 -05:00
|
|
|
return this.isUserLoggedIn() && this.inWatchLaterPlaylist !== undefined
|
2020-01-03 09:01:17 -05:00
|
|
|
}
|
|
|
|
|
2019-04-05 04:52:27 -04:00
|
|
|
private setUpBy () {
|
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
2020-01-03 09:01:17 -05:00
|
|
|
|
|
|
|
private loadWatchLater () {
|
2020-01-06 07:06:13 -05:00
|
|
|
if (!this.isUserLoggedIn() || this.inWatchLaterPlaylist !== undefined) return
|
|
|
|
|
|
|
|
this.authService.userInformationLoaded
|
|
|
|
.pipe(switchMap(() => this.videoPlaylistService.listenToVideoPlaylistChange(this.video.id)))
|
|
|
|
.subscribe(existResult => {
|
|
|
|
const watchLaterPlaylist = this.authService.getUser().specialPlaylists.find(p => p.type === VideoPlaylistType.WATCH_LATER)
|
|
|
|
const existsInWatchLater = existResult.find(r => r.playlistId === watchLaterPlaylist.id)
|
|
|
|
this.inWatchLaterPlaylist = false
|
|
|
|
|
|
|
|
this.watchLaterPlaylist = {
|
|
|
|
id: watchLaterPlaylist.id
|
|
|
|
}
|
|
|
|
|
|
|
|
if (existsInWatchLater) {
|
|
|
|
this.inWatchLaterPlaylist = true
|
|
|
|
this.watchLaterPlaylist.playlistElementId = existsInWatchLater.playlistElementId
|
|
|
|
}
|
|
|
|
|
|
|
|
this.cd.markForCheck()
|
|
|
|
})
|
|
|
|
|
|
|
|
this.videoPlaylistService.runPlaylistCheck(this.video.id)
|
2020-01-03 09:01:17 -05:00
|
|
|
}
|
2016-05-21 12:03:34 -04:00
|
|
|
}
|