X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fvideo-watch.component.ts;h=182703cdf4d5169537f5951adb0c7b0f8e86ea3c;hb=ea5cd0fa2cdc7655ed5ecf134dedd52400837ef2;hp=9563394dcd49e91731be8f8c629055818d73b05d;hpb=b891f9bc612217b5b6f08a886c7d12eca260b9c8;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/+video-watch/video-watch.component.ts b/client/src/app/videos/+video-watch/video-watch.component.ts index 9563394dc..182703cdf 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.ts +++ b/client/src/app/videos/+video-watch/video-watch.component.ts @@ -38,12 +38,12 @@ export class VideoWatchComponent implements OnInit, OnDestroy { otherVideosDisplayed: Video[] = [] - error = false + syndicationItems = {} + player: videojs.Player playerElement: HTMLVideoElement userRating: UserVideoRateType = null video: VideoDetails = null - videoPlayerLoaded = false videoNotFound = false descriptionLoading = false @@ -56,7 +56,6 @@ export class VideoWatchComponent implements OnInit, OnDestroy { private otherVideos: Video[] = [] private paramsSub: Subscription - private videojsInstance: videojs.Player constructor ( private elementRef: ElementRef, @@ -96,16 +95,21 @@ export class VideoWatchComponent implements OnInit, OnDestroy { ) this.paramsSub = this.route.params.subscribe(routeParams => { - if (this.videoPlayerLoaded) { + if (this.player) { this.player.pause() } const uuid = routeParams['uuid'] - // Video did not changed + // Video did not change if (this.video && this.video.uuid === uuid) return - + // Video did change this.videoService.getVideo(uuid).subscribe( - video => this.onVideoFetched(video), + video => { + const startTime = this.route.snapshot.queryParams.start + this.onVideoFetched(video, startTime) + .catch(err => this.handleError(err)) + this.generateSyndicationList() + }, error => { this.videoNotFound = true @@ -116,10 +120,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { } ngOnDestroy () { - // Remove player if it exists - if (this.videoPlayerLoaded === true) { - videojs(this.playerElement).dispose() - } + this.flushPlayer() // Unsubscribe subscriptions this.paramsSub.unsubscribe() @@ -244,6 +245,10 @@ export class VideoWatchComponent implements OnInit, OnDestroy { return this.video.tags.join(', ') } + generateSyndicationList () { + this.syndicationItems = this.videoService.getAccountFeedUrls(this.video.account.id) + } + isVideoRemovable () { return this.video.isRemovableBy(this.authService.getUser()) } @@ -321,9 +326,13 @@ export class VideoWatchComponent implements OnInit, OnDestroy { ) } - private async onVideoFetched (video: VideoDetails) { + private async onVideoFetched (video: VideoDetails, startTime = 0) { this.video = video + // Re init attributes + this.descriptionLoading = false + this.completeDescriptionShown = false + this.updateOtherVideosDisplayed() if (this.video.isVideoNSFWForUser(this.user)) { @@ -334,11 +343,8 @@ export class VideoWatchComponent implements OnInit, OnDestroy { if (res === false) return this.redirectService.redirectToHomepage() } - // Player was already loaded, remove old videojs - if (this.videojsInstance) { - this.videojsInstance.dispose() - this.videojsInstance = undefined - } + // Flush old player if needed + this.flushPlayer() // Build video element, because videojs remove it on dispose const playerElementWrapper = this.elementRef.nativeElement.querySelector('#video-element-wrapper') @@ -348,21 +354,20 @@ export class VideoWatchComponent implements OnInit, OnDestroy { const videojsOptions = getVideojsOptions({ autoplay: this.isAutoplay(), - inactivityTimeout: 4000, + inactivityTimeout: 2500, videoFiles: this.video.files, playerElement: this.playerElement, videoViewUrl: this.videoService.getVideoViewUrl(this.video.uuid), videoDuration: this.video.duration, enableHotkeys: true, peertubeLink: false, - poster: this.video.previewUrl + poster: this.video.previewUrl, + startTime }) - this.videoPlayerLoaded = true - const self = this this.zone.runOutsideAngular(() => { - self.videojsInstance = videojs(this.playerElement, videojsOptions, function () { + videojs(this.playerElement, videojsOptions, function () { self.player = this this.on('customError', (event, data) => self.handleError(data.err)) }) @@ -453,4 +458,12 @@ export class VideoWatchComponent implements OnInit, OnDestroy { // Be sure the autoPlay is set to false return this.user.autoPlayVideo !== false } + + private flushPlayer () { + // Remove player if it exists + if (this.player) { + this.player.dispose() + this.player = undefined + } + } }