mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
commit
ec44723ee6
6 changed files with 71 additions and 0 deletions
|
@ -332,6 +332,7 @@
|
||||||
"src/plugins/youtubePlayer/plugin.js",
|
"src/plugins/youtubePlayer/plugin.js",
|
||||||
"src/scripts/alphanumericshortcuts.js",
|
"src/scripts/alphanumericshortcuts.js",
|
||||||
"src/scripts/autoBackdrops.js",
|
"src/scripts/autoBackdrops.js",
|
||||||
|
"src/scripts/autocast.js",
|
||||||
"src/scripts/browser.js",
|
"src/scripts/browser.js",
|
||||||
"src/scripts/clientUtils.js",
|
"src/scripts/clientUtils.js",
|
||||||
"src/scripts/datetime.js",
|
"src/scripts/datetime.js",
|
||||||
|
|
|
@ -6,6 +6,7 @@ import playbackManager from 'playbackManager';
|
||||||
import appRouter from 'appRouter';
|
import appRouter from 'appRouter';
|
||||||
import globalize from 'globalize';
|
import globalize from 'globalize';
|
||||||
import appHost from 'apphost';
|
import appHost from 'apphost';
|
||||||
|
import * as autocast from 'autocast';
|
||||||
|
|
||||||
function mirrorItem(info, player) {
|
function mirrorItem(info, player) {
|
||||||
var item = info.item;
|
var item = info.item;
|
||||||
|
@ -221,6 +222,14 @@ function showActivePlayerMenuInternal(dialogHelper, playerInfo) {
|
||||||
|
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
|
if (autocast.supported()) {
|
||||||
|
html += '<div><label class="checkboxContainer">';
|
||||||
|
var checkedHtmlAC = autocast.isEnabled() ? ' checked' : '';
|
||||||
|
html += '<input type="checkbox" is="emby-checkbox" class="chkAutoCast"' + checkedHtmlAC + '/>';
|
||||||
|
html += '<span>' + globalize.translate('EnableAutoCast') + '</span>';
|
||||||
|
html += '</label></div>';
|
||||||
|
}
|
||||||
|
|
||||||
html += '<div style="margin-top:1em;display:flex;justify-content: flex-end;">';
|
html += '<div style="margin-top:1em;display:flex;justify-content: flex-end;">';
|
||||||
|
|
||||||
html += '<button is="emby-button" type="button" class="button-flat btnRemoteControl promptDialogButton">' + globalize.translate('HeaderRemoteControl') + '</button>';
|
html += '<button is="emby-button" type="button" class="button-flat btnRemoteControl promptDialogButton">' + globalize.translate('HeaderRemoteControl') + '</button>';
|
||||||
|
@ -237,6 +246,12 @@ function showActivePlayerMenuInternal(dialogHelper, playerInfo) {
|
||||||
chkMirror.addEventListener('change', onMirrorChange);
|
chkMirror.addEventListener('change', onMirrorChange);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var chkAutoCast = dlg.querySelector('.chkAutoCast');
|
||||||
|
|
||||||
|
if (chkAutoCast) {
|
||||||
|
chkAutoCast.addEventListener('change', onAutoCastChange);
|
||||||
|
}
|
||||||
|
|
||||||
var destination = '';
|
var destination = '';
|
||||||
|
|
||||||
var btnRemoteControl = dlg.querySelector('.btnRemoteControl');
|
var btnRemoteControl = dlg.querySelector('.btnRemoteControl');
|
||||||
|
@ -269,6 +284,10 @@ function onMirrorChange() {
|
||||||
playbackManager.enableDisplayMirroring(this.checked);
|
playbackManager.enableDisplayMirroring(this.checked);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function onAutoCastChange() {
|
||||||
|
autocast.enable(this.checked);
|
||||||
|
}
|
||||||
|
|
||||||
document.addEventListener('viewshow', function (e) {
|
document.addEventListener('viewshow', function (e) {
|
||||||
var state = e.detail.state || {};
|
var state = e.detail.state || {};
|
||||||
var item = state.item;
|
var item = state.item;
|
||||||
|
|
47
src/scripts/autocast.js
Normal file
47
src/scripts/autocast.js
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
import events from 'events';
|
||||||
|
import playbackManager from 'playbackManager';
|
||||||
|
|
||||||
|
export function supported() {
|
||||||
|
return typeof(Storage) !== 'undefined';
|
||||||
|
}
|
||||||
|
|
||||||
|
export function enable(enabled) {
|
||||||
|
if (!supported()) return;
|
||||||
|
|
||||||
|
if (enabled) {
|
||||||
|
const currentPlayerInfo = playbackManager.getPlayerInfo();
|
||||||
|
|
||||||
|
if (currentPlayerInfo && currentPlayerInfo.id) {
|
||||||
|
localStorage.setItem('autocastPlayerId', currentPlayerInfo.id);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
localStorage.removeItem('autocastPlayerId');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function isEnabled() {
|
||||||
|
if (!supported()) return false;
|
||||||
|
|
||||||
|
const playerId = localStorage.getItem('autocastPlayerId');
|
||||||
|
const currentPlayerInfo = playbackManager.getPlayerInfo();
|
||||||
|
|
||||||
|
return (currentPlayerInfo && playerId && currentPlayerInfo.id === playerId);
|
||||||
|
}
|
||||||
|
|
||||||
|
function onOpen() {
|
||||||
|
const playerId = localStorage.getItem('autocastPlayerId');
|
||||||
|
|
||||||
|
playbackManager.getTargets().then(function (targets) {
|
||||||
|
for (var i = 0; i < targets.length; i++) {
|
||||||
|
if (targets[i].id == playerId) {
|
||||||
|
playbackManager.trySetActivePlayer(targets[i].playerName, targets[i]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const apiClient = window.connectionManager.currentApiClient();
|
||||||
|
if (apiClient && supported()) {
|
||||||
|
events.on(apiClient, 'websocketopen', onOpen);
|
||||||
|
}
|
|
@ -52,6 +52,7 @@ import 'flexStyles';
|
||||||
|
|
||||||
lazyLoadViewMenuBarImages();
|
lazyLoadViewMenuBarImages();
|
||||||
bindMenuEvents();
|
bindMenuEvents();
|
||||||
|
updateCastIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCurrentApiClient() {
|
function getCurrentApiClient() {
|
||||||
|
@ -1002,6 +1003,7 @@ import 'flexStyles';
|
||||||
};
|
};
|
||||||
|
|
||||||
window.LibraryMenu = LibraryMenu;
|
window.LibraryMenu = LibraryMenu;
|
||||||
|
renderHeader();
|
||||||
|
|
||||||
export default LibraryMenu;
|
export default LibraryMenu;
|
||||||
|
|
||||||
|
|
|
@ -581,6 +581,7 @@ function initClient() {
|
||||||
define('webSettings', [scriptsPath + '/settings/webSettings'], returnFirstDependency);
|
define('webSettings', [scriptsPath + '/settings/webSettings'], returnFirstDependency);
|
||||||
define('appSettings', [scriptsPath + '/settings/appSettings'], returnFirstDependency);
|
define('appSettings', [scriptsPath + '/settings/appSettings'], returnFirstDependency);
|
||||||
define('userSettings', [scriptsPath + '/settings/userSettings'], returnFirstDependency);
|
define('userSettings', [scriptsPath + '/settings/userSettings'], returnFirstDependency);
|
||||||
|
define('autocast', [scriptsPath + '/autocast'], returnFirstDependency);
|
||||||
|
|
||||||
define('mediaSession', [componentsPath + '/playback/mediasession'], returnFirstDependency);
|
define('mediaSession', [componentsPath + '/playback/mediasession'], returnFirstDependency);
|
||||||
define('actionsheet', [componentsPath + '/actionSheet/actionSheet'], returnFirstDependency);
|
define('actionsheet', [componentsPath + '/actionSheet/actionSheet'], returnFirstDependency);
|
||||||
|
|
|
@ -186,6 +186,7 @@
|
||||||
"EditImages": "Edit images",
|
"EditImages": "Edit images",
|
||||||
"EditMetadata": "Edit metadata",
|
"EditMetadata": "Edit metadata",
|
||||||
"EditSubtitles": "Edit subtitles",
|
"EditSubtitles": "Edit subtitles",
|
||||||
|
"EnableAutoCast": "Set as Default",
|
||||||
"EnableBackdropsHelp": "Display backdrops in the background of some pages while browsing the library.",
|
"EnableBackdropsHelp": "Display backdrops in the background of some pages while browsing the library.",
|
||||||
"EnableCinemaMode": "Cinema mode",
|
"EnableCinemaMode": "Cinema mode",
|
||||||
"EnableColorCodedBackgrounds": "Color coded backgrounds",
|
"EnableColorCodedBackgrounds": "Color coded backgrounds",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue