]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Reapply playsinline on player fallback
authorChocobozzz <me@florianbigard.com>
Mon, 31 Oct 2022 12:47:55 +0000 (13:47 +0100)
committerChocobozzz <me@florianbigard.com>
Mon, 31 Oct 2022 12:47:55 +0000 (13:47 +0100)
client/e2e/src/suites-all/videos.e2e-spec.ts
client/src/assets/player/peertube-player-manager.ts

index 997d58884e65aa93a95ffd86a655445dd17f3b72..d1ab9aef3dca0ea4d94f1f8cfedfadfd9cb9c742 100644 (file)
@@ -173,7 +173,7 @@ describe('Videos all workflow', () => {
 
     await myAccountPage.playPlaylist()
 
-    await videoWatchPage.waitUntilVideoName(video2Name, 30 * 1000)
+    await videoWatchPage.waitUntilVideoName(video2Name, 40 * 1000)
   })
 
   it('Should watch the webtorrent playlist in the embed', async () => {
index 9663d90a2be807db24b35a48320f6a7c86ec3481..56310c4e94a9657f62b049b3524c34c6598e31cb 100644 (file)
@@ -43,6 +43,8 @@ CaptionsButton.prototype.label_ = ' '
 
 export class PeertubePlayerManager {
   private static playerElementClassName: string
+  private static playerElementAttributes: { name: string, value: string }[] = []
+
   private static onPlayerChange: (player: videojs.Player) => void
   private static alreadyPlayed = false
   private static pluginsManager: PluginsManager
@@ -59,8 +61,13 @@ export class PeertubePlayerManager {
     this.pluginsManager = options.pluginsManager
 
     this.onPlayerChange = onPlayerChange
+
     this.playerElementClassName = options.common.playerElement.className
 
+    for (const name of options.common.playerElement.getAttributeNames()) {
+      this.playerElementAttributes.push({ name, value: options.common.playerElement.getAttribute(name) })
+    }
+
     if (mode === 'webtorrent') await import('./shared/webtorrent/webtorrent-plugin')
     if (mode === 'p2p-media-loader') {
       const [ p2pMediaLoaderModule ] = await Promise.all([
@@ -216,8 +223,15 @@ export class PeertubePlayerManager {
 
   private static rebuildAndUpdateVideoElement (player: videojs.Player, commonOptions: CommonOptions) {
     const newVideoElement = document.createElement('video')
+
+    // Reset class
     newVideoElement.className = this.playerElementClassName
 
+    // Reapply attributes
+    for (const { name, value } of this.playerElementAttributes) {
+      newVideoElement.setAttribute(name, value)
+    }
+
     // VideoJS wraps our video element inside a div
     let currentParentPlayerElement = commonOptions.playerElement.parentNode
     // Fix on IOS, don't ask me why