aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/video-watch.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-02-22 10:53:25 +0100
committerChocobozzz <me@florianbigard.com>2021-02-22 10:53:25 +0100
commitc15d61f5fee4e7a1b5de4c6359ecbf28598a55ef (patch)
tree2ec682162acc62453b74f427eebd2db7b5b37368 /client/src/app/+videos/+video-watch/video-watch.component.ts
parent0a6817f0ba29865576bb16e87fbf62679de885d7 (diff)
downloadPeerTube-c15d61f5fee4e7a1b5de4c6359ecbf28598a55ef.tar.gz
PeerTube-c15d61f5fee4e7a1b5de4c6359ecbf28598a55ef.tar.zst
PeerTube-c15d61f5fee4e7a1b5de4c6359ecbf28598a55ef.zip
Display the preview image on waiting lives
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.ts19
1 files changed, 15 insertions, 4 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 11b63297e..7a98cab3b 100644
--- a/client/src/app/+videos/+video-watch/video-watch.component.ts
+++ b/client/src/app/+videos/+video-watch/video-watch.component.ts
@@ -60,9 +60,12 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
60 60
61 player: any 61 player: any
62 playerElement: HTMLVideoElement 62 playerElement: HTMLVideoElement
63
63 theaterEnabled = false 64 theaterEnabled = false
65
64 userRating: UserVideoRateType = null 66 userRating: UserVideoRateType = null
65 descriptionLoading = false 67
68 playerPlaceholderImgSrc: string
66 69
67 video: VideoDetails = null 70 video: VideoDetails = null
68 videoCaptions: VideoCaption[] = [] 71 videoCaptions: VideoCaption[] = []
@@ -70,13 +73,17 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
70 playlistPosition: number 73 playlistPosition: number
71 playlist: VideoPlaylist = null 74 playlist: VideoPlaylist = null
72 75
76 descriptionLoading = false
73 completeDescriptionShown = false 77 completeDescriptionShown = false
74 completeVideoDescription: string 78 completeVideoDescription: string
75 shortVideoDescription: string 79 shortVideoDescription: string
76 videoHTMLDescription = '' 80 videoHTMLDescription = ''
81
77 likesBarTooltipText = '' 82 likesBarTooltipText = ''
83
78 hasAlreadyAcceptedPrivacyConcern = false 84 hasAlreadyAcceptedPrivacyConcern = false
79 remoteServerDown = false 85 remoteServerDown = false
86
80 hotkeys: Hotkey[] = [] 87 hotkeys: Hotkey[] = []
81 88
82 tooltipLike = '' 89 tooltipLike = ''
@@ -539,6 +546,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
539 this.videoCaptions = videoCaptions 546 this.videoCaptions = videoCaptions
540 547
541 // Re init attributes 548 // Re init attributes
549 this.playerPlaceholderImgSrc = undefined
542 this.descriptionLoading = false 550 this.descriptionLoading = false
543 this.completeDescriptionShown = false 551 this.completeDescriptionShown = false
544 this.completeVideoDescription = undefined 552 this.completeVideoDescription = undefined
@@ -566,12 +574,15 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
566 } 574 }
567 575
568 private async buildPlayer (urlOptions: URLOptions) { 576 private async buildPlayer (urlOptions: URLOptions) {
569 const videoState = this.video.state.id
570 if (videoState === VideoState.LIVE_ENDED || videoState === VideoState.WAITING_FOR_LIVE) return
571
572 // Flush old player if needed 577 // Flush old player if needed
573 this.flushPlayer() 578 this.flushPlayer()
574 579
580 const videoState = this.video.state.id
581 if (videoState === VideoState.LIVE_ENDED || videoState === VideoState.WAITING_FOR_LIVE) {
582 this.playerPlaceholderImgSrc = this.video.previewPath
583 return
584 }
585
575 // Build video element, because videojs removes it on dispose 586 // Build video element, because videojs removes it on dispose
576 const playerElementWrapper = this.elementRef.nativeElement.querySelector('#videojs-wrapper') 587 const playerElementWrapper = this.elementRef.nativeElement.querySelector('#videojs-wrapper')
577 this.playerElement = document.createElement('video') 588 this.playerElement = document.createElement('video')