mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
111 lines
2.8 KiB
JavaScript
111 lines
2.8 KiB
JavaScript
(function () {
|
|
|
|
function onSuccess() {
|
|
Logger.log('Immersive mode succeeded');
|
|
}
|
|
|
|
function onError() {
|
|
Logger.log('Immersive mode failed');
|
|
}
|
|
|
|
//// Is this plugin supported?
|
|
//AndroidFullScreen.isSupported();
|
|
|
|
//// Is immersive mode supported?
|
|
//AndroidFullScreen.isImmersiveModeSupported(onSuccess, onError);
|
|
|
|
//// The width of the screen in immersive mode
|
|
//AndroidFullScreen.immersiveWidth(trace, onError);
|
|
|
|
//// The height of the screen in immersive mode
|
|
//AndroidFullScreen.immersiveHeight(trace, onError);
|
|
|
|
//// Hide system UI until user interacts
|
|
//AndroidFullScreen.leanMode(onSuccess, onError);
|
|
|
|
//// Show system UI
|
|
//AndroidFullScreen.showSystemUI(onSuccess, onError);
|
|
|
|
//// Extend your app underneath the system UI (Android 4.4+ only)
|
|
//AndroidFullScreen.showUnderSystemUI(onSuccess, onError);
|
|
|
|
//// Hide system UI and keep it hidden (Android 4.4+ only)
|
|
//AndroidFullScreen.immersiveMode(onSuccess, onError);
|
|
|
|
var currentPlayer;
|
|
|
|
function onPlaybackStart(e, state) {
|
|
|
|
var player = this;
|
|
|
|
if (player.isLocalPlayer && state.NowPlayingItem && state.NowPlayingItem.MediaType == 'Video') {
|
|
AndroidFullScreen.immersiveMode(onSuccess, onError);
|
|
}
|
|
}
|
|
|
|
function onPlaybackStopped(e, state) {
|
|
|
|
var player = this;
|
|
|
|
if (player.isLocalPlayer && state.NowPlayingItem && state.NowPlayingItem.MediaType == 'Video') {
|
|
|
|
if (!AppSettings.enableFullScreen()) {
|
|
AndroidFullScreen.showSystemUI(onSuccess, onError);
|
|
}
|
|
}
|
|
}
|
|
|
|
function bindToPlayer(player) {
|
|
|
|
releaseCurrentPlayer();
|
|
|
|
currentPlayer = player;
|
|
|
|
if (!player.isLocalPlayer) {
|
|
return;
|
|
}
|
|
|
|
$(player).on('playbackstart', onPlaybackStart)
|
|
.on('playbackstop', onPlaybackStopped);
|
|
}
|
|
|
|
function releaseCurrentPlayer() {
|
|
|
|
if (currentPlayer) {
|
|
|
|
$(currentPlayer).off('playbackstart', onPlaybackStart).off('playbackstop', onPlaybackStopped);
|
|
}
|
|
}
|
|
|
|
function updateFromSetting(leaveFullScreen) {
|
|
|
|
if (AppSettings.enableFullScreen()) {
|
|
AndroidFullScreen.immersiveMode(onSuccess, onError);
|
|
}
|
|
else if (leaveFullScreen) {
|
|
AndroidFullScreen.showSystemUI(onSuccess, onError);
|
|
}
|
|
}
|
|
|
|
Dashboard.ready(function () {
|
|
|
|
Logger.log('binding fullscreen to MediaController');
|
|
|
|
$(MediaController).on('playerchange', function () {
|
|
|
|
bindToPlayer(MediaController.getCurrentPlayer());
|
|
});
|
|
|
|
bindToPlayer(MediaController.getCurrentPlayer());
|
|
|
|
updateFromSetting(false);
|
|
|
|
$(AppSettings).on('settingupdated', function (e, key) {
|
|
|
|
if (key == 'enableFullScreen') {
|
|
updateFromSetting(true);
|
|
}
|
|
});
|
|
});
|
|
|
|
})(); |