X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fvideo%2Fvideo-miniature.component.ts;h=598a7a98371e6225441583284f30545239a6f162;hb=9b82d49da868536701d80ef1071df0e7cd301b7a;hp=ba65d33b694d951d00e40e7c49f1fe184d8de344;hpb=3fbba1d28a80b9e8bd97b422280a7465c5f7c89f;p=oweals%2Fpeertube.git diff --git a/client/src/app/shared/video/video-miniature.component.ts b/client/src/app/shared/video/video-miniature.component.ts index ba65d33b6..598a7a983 100644 --- a/client/src/app/shared/video/video-miniature.component.ts +++ b/client/src/app/shared/video/video-miniature.component.ts @@ -1,12 +1,23 @@ -import { ChangeDetectionStrategy, Component, EventEmitter, Inject, Input, LOCALE_ID, OnInit, Output, ViewChild } from '@angular/core' +import { + ChangeDetectionStrategy, + ChangeDetectorRef, + Component, + EventEmitter, + Inject, + Input, + LOCALE_ID, + OnInit, + Output +} from '@angular/core' import { User } from '../users' import { Video } from './video.model' -import { ServerService } from '@app/core' -import { ServerConfig, VideoPrivacy, VideoState } from '../../../../../shared' +import { AuthService, ServerService } from '@app/core' +import { ServerConfig, VideoPlaylistType, VideoPrivacy, VideoState } from '../../../../../shared' import { I18n } from '@ngx-translate/i18n-polyfill' import { VideoActionsDisplayType } from '@app/shared/video/video-actions-dropdown.component' import { ScreenService } from '@app/shared/misc/screen.service' -import { VideoThumbnailComponent } from './video-thumbnail.component' +import { VideoPlaylistService } from '@app/shared/video-playlist/video-playlist.service' +import { switchMap } from 'rxjs/operators' export type OwnerDisplayType = 'account' | 'videoChannel' | 'auto' export type MiniatureDisplayOptions = { @@ -47,8 +58,6 @@ export class VideoMiniatureComponent implements OnInit { @Output() videoUnblacklisted = new EventEmitter() @Output() videoRemoved = new EventEmitter() - @ViewChild('thumbnail', { static: true }) thumbnail: VideoThumbnailComponent - videoActionsDisplayOptions: VideoActionsDisplayType = { playlist: true, download: false, @@ -60,14 +69,28 @@ export class VideoMiniatureComponent implements OnInit { showActions = false serverConfig: ServerConfig + addToWatchLaterText: string + addedToWatchLaterText: string + inWatchLaterPlaylist: boolean + + watchLaterPlaylist: { + id: number + playlistElementId?: number + } + private ownerDisplayTypeChosen: 'account' | 'videoChannel' constructor ( private screenService: ScreenService, private serverService: ServerService, private i18n: I18n, + private authService: AuthService, + private videoPlaylistService: VideoPlaylistService, + private cd: ChangeDetectorRef, @Inject(LOCALE_ID) private localeId: string - ) { } + ) { + + } get isVideoBlur () { return this.video.isVideoNSFWForUser(this.user, this.serverConfig) @@ -131,7 +154,8 @@ export class VideoMiniatureComponent implements OnInit { loadActions () { if (this.displayVideoActions) this.showActions = true - this.thumbnail.load() + + this.loadWatchLater() } onVideoBlacklisted () { @@ -146,6 +170,38 @@ export class VideoMiniatureComponent implements OnInit { this.videoRemoved.emit() } + 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 () { + this.videoPlaylistService.removeVideoFromPlaylist(this.watchLaterPlaylist.id, this.watchLaterPlaylist.playlistElementId, this.video.id) + .subscribe( + _ => { /* empty */ } + ) + } + + isWatchLaterPlaylistDisplayed () { + return this.inWatchLaterPlaylist !== undefined + } + private setUpBy () { if (this.ownerDisplayType === 'account' || this.ownerDisplayType === 'videoChannel') { this.ownerDisplayTypeChosen = this.ownerDisplayType @@ -163,4 +219,29 @@ export class VideoMiniatureComponent implements OnInit { this.ownerDisplayTypeChosen = 'videoChannel' } } + + private loadWatchLater () { + 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) + } }