mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Move to landscape on mobile fullscreen
This commit is contained in:
@@ -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()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user