aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/video-watch.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-04-03 18:06:58 +0200
committerChocobozzz <me@florianbigard.com>2018-04-03 18:06:58 +0200
commit09edde4084bf2fc8914495ce7c884b3b02c7c8be (patch)
treed1175e772f239b6a5717bbaca0ff20f83d7c4819 /client/src/app/videos/+video-watch/video-watch.component.ts
parentb891f9bc612217b5b6f08a886c7d12eca260b9c8 (diff)
downloadPeerTube-09edde4084bf2fc8914495ce7c884b3b02c7c8be.tar.gz
PeerTube-09edde4084bf2fc8914495ce7c884b3b02c7c8be.tar.zst
PeerTube-09edde4084bf2fc8914495ce7c884b3b02c7c8be.zip
Fix video watch page responsive
Diffstat (limited to 'client/src/app/videos/+video-watch/video-watch.component.ts')
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.ts30
1 files changed, 14 insertions, 16 deletions
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..ed7892a01 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.ts
+++ b/client/src/app/videos/+video-watch/video-watch.component.ts
@@ -43,7 +43,6 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
43 playerElement: HTMLVideoElement 43 playerElement: HTMLVideoElement
44 userRating: UserVideoRateType = null 44 userRating: UserVideoRateType = null
45 video: VideoDetails = null 45 video: VideoDetails = null
46 videoPlayerLoaded = false
47 videoNotFound = false 46 videoNotFound = false
48 descriptionLoading = false 47 descriptionLoading = false
49 48
@@ -56,7 +55,6 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
56 55
57 private otherVideos: Video[] = [] 56 private otherVideos: Video[] = []
58 private paramsSub: Subscription 57 private paramsSub: Subscription
59 private videojsInstance: videojs.Player
60 58
61 constructor ( 59 constructor (
62 private elementRef: ElementRef, 60 private elementRef: ElementRef,
@@ -96,7 +94,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
96 ) 94 )
97 95
98 this.paramsSub = this.route.params.subscribe(routeParams => { 96 this.paramsSub = this.route.params.subscribe(routeParams => {
99 if (this.videoPlayerLoaded) { 97 if (this.player) {
100 this.player.pause() 98 this.player.pause()
101 } 99 }
102 100
@@ -116,10 +114,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
116 } 114 }
117 115
118 ngOnDestroy () { 116 ngOnDestroy () {
119 // Remove player if it exists 117 this.flushPlayer()
120 if (this.videoPlayerLoaded === true) {
121 videojs(this.playerElement).dispose()
122 }
123 118
124 // Unsubscribe subscriptions 119 // Unsubscribe subscriptions
125 this.paramsSub.unsubscribe() 120 this.paramsSub.unsubscribe()
@@ -334,11 +329,8 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
334 if (res === false) return this.redirectService.redirectToHomepage() 329 if (res === false) return this.redirectService.redirectToHomepage()
335 } 330 }
336 331
337 // Player was already loaded, remove old videojs 332 // Flush old player if needed
338 if (this.videojsInstance) { 333 this.flushPlayer()
339 this.videojsInstance.dispose()
340 this.videojsInstance = undefined
341 }
342 334
343 // Build video element, because videojs remove it on dispose 335 // Build video element, because videojs remove it on dispose
344 const playerElementWrapper = this.elementRef.nativeElement.querySelector('#video-element-wrapper') 336 const playerElementWrapper = this.elementRef.nativeElement.querySelector('#video-element-wrapper')
@@ -348,7 +340,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
348 340
349 const videojsOptions = getVideojsOptions({ 341 const videojsOptions = getVideojsOptions({
350 autoplay: this.isAutoplay(), 342 autoplay: this.isAutoplay(),
351 inactivityTimeout: 4000, 343 inactivityTimeout: 2500,
352 videoFiles: this.video.files, 344 videoFiles: this.video.files,
353 playerElement: this.playerElement, 345 playerElement: this.playerElement,
354 videoViewUrl: this.videoService.getVideoViewUrl(this.video.uuid), 346 videoViewUrl: this.videoService.getVideoViewUrl(this.video.uuid),
@@ -358,11 +350,9 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
358 poster: this.video.previewUrl 350 poster: this.video.previewUrl
359 }) 351 })
360 352
361 this.videoPlayerLoaded = true
362
363 const self = this 353 const self = this
364 this.zone.runOutsideAngular(() => { 354 this.zone.runOutsideAngular(() => {
365 self.videojsInstance = videojs(this.playerElement, videojsOptions, function () { 355 videojs(this.playerElement, videojsOptions, function () {
366 self.player = this 356 self.player = this
367 this.on('customError', (event, data) => self.handleError(data.err)) 357 this.on('customError', (event, data) => self.handleError(data.err))
368 }) 358 })
@@ -453,4 +443,12 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
453 // Be sure the autoPlay is set to false 443 // Be sure the autoPlay is set to false
454 return this.user.autoPlayVideo !== false 444 return this.user.autoPlayVideo !== false
455 } 445 }
446
447 private flushPlayer () {
448 // Remove player if it exists
449 if (this.player) {
450 this.player.dispose()
451 this.player = undefined
452 }
453 }
456} 454}