1
0
Fork 0

Move to landscape on mobile fullscreen

This commit is contained in:
Chocobozzz 2022-01-12 09:42:54 +01:00
parent f1a0555a88
commit e98ef69d1c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 18 additions and 1 deletions

View File

@ -1,5 +1,5 @@
import videojs from 'video.js'
import './peertube-mobile-buttons'
import videojs from 'video.js'
const Plugin = videojs.getPlugin('plugin')
@ -9,6 +9,23 @@ class PeerTubeMobilePlugin extends Plugin {
super(player, options)
player.addChild('PeerTubeMobileButtons')
if (videojs.browser.IS_ANDROID && screen.orientation) {
this.handleFullscreenRotation()
}
}
private handleFullscreenRotation () {
this.player.on('fullscreenchange', () => {
if (!this.player.isFullscreen() || this.isPortraitVideo()) return
screen.orientation.lock('landscape')
.catch(err => console.error('Cannot lock screen to landscape.', err))
})
}
private isPortraitVideo () {
return this.player.videoWidth() < this.player.videoHeight()
}
}