jellyfin-web/src/components/skinManager.js

185 lines
5.4 KiB
JavaScript
Raw Normal View History

2020-05-19 14:35:51 -07:00
define(['apphost', 'userSettings', 'browser', 'events', 'backdrop', 'globalize', 'require', 'appSettings'], function (appHost, userSettings, browser, events, backdrop, globalize, require, appSettings) {
'use strict';
var themeStyleElement;
var currentThemeId;
2018-10-22 15:05:09 -07:00
function unloadTheme() {
var elem = themeStyleElement;
if (elem) {
elem.parentNode.removeChild(elem);
themeStyleElement = null;
currentThemeId = null;
}
2018-10-22 15:05:09 -07:00
}
function loadUserSkin(options) {
options = options || {};
if (options.start) {
Emby.Page.invokeShortcut(options.start);
} else {
Emby.Page.goHome();
}
}
function getThemes() {
return [{
2020-05-04 03:44:12 -07:00
name: 'Apple TV',
id: 'appletv'
}, {
2020-05-04 03:44:12 -07:00
name: 'Blue Radiance',
id: 'blueradiance'
}, {
2020-05-04 03:44:12 -07:00
name: 'Dark',
id: 'dark',
isDefault: true,
isDefaultServerDashboard: true
2019-03-29 15:24:06 -07:00
}, {
2020-05-04 03:44:12 -07:00
name: 'Light',
id: 'light'
2019-04-17 15:18:18 -07:00
}, {
2020-05-04 03:44:12 -07:00
name: 'Purple Haze',
id: 'purplehaze'
}, {
2020-05-04 03:44:12 -07:00
name: 'Windows Media Center',
id: 'wmc'
}];
}
2018-10-22 15:05:09 -07:00
var skinManager = {
getThemes: getThemes,
loadUserSkin: loadUserSkin
};
function getThemeStylesheetInfo(id, isDefaultProperty) {
var themes = skinManager.getThemes();
var defaultTheme;
var selectedTheme;
for (var i = 0, length = themes.length; i < length; i++) {
2018-10-22 15:05:09 -07:00
var theme = themes[i];
if (theme[isDefaultProperty]) {
defaultTheme = theme;
}
if (id === theme.id) {
selectedTheme = theme;
}
2018-10-22 15:05:09 -07:00
}
selectedTheme = selectedTheme || defaultTheme;
2018-10-22 15:05:09 -07:00
return {
stylesheetPath: require.toUrl('themes/' + selectedTheme.id + '/theme.css'),
2018-10-22 15:05:09 -07:00
themeId: selectedTheme.id
};
2018-10-22 15:05:09 -07:00
}
var themeResources = {};
var lastSound = 0;
var currentSound;
2018-10-22 15:05:09 -07:00
function loadThemeResources(id) {
lastSound = 0;
if (currentSound) {
currentSound.stop();
currentSound = null;
}
backdrop.clearBackdrop();
2018-10-22 15:05:09 -07:00
}
function onThemeLoaded() {
document.documentElement.classList.remove('preload');
2018-10-22 15:05:09 -07:00
try {
2020-05-04 03:44:12 -07:00
var color = getComputedStyle(document.querySelector('.skinHeader')).getPropertyValue('background-color');
if (color) {
appHost.setThemeColor(color);
}
2019-03-19 17:03:11 -07:00
} catch (err) {
2020-02-15 19:44:43 -07:00
console.error('error setting theme color: ' + err);
2018-10-22 15:05:09 -07:00
}
}
skinManager.setTheme = function (id, context) {
return new Promise(function (resolve, reject) {
if (currentThemeId && currentThemeId === id) {
resolve();
return;
}
var isDefaultProperty = context === 'serverdashboard' ? 'isDefaultServerDashboard' : 'isDefault';
var info = getThemeStylesheetInfo(id, isDefaultProperty);
if (currentThemeId && currentThemeId === info.themeId) {
resolve();
return;
}
var linkUrl = info.stylesheetPath;
unloadTheme();
var link = document.createElement('link');
link.setAttribute('rel', 'stylesheet');
link.setAttribute('type', 'text/css');
link.onload = function () {
onThemeLoaded();
resolve();
};
link.setAttribute('href', linkUrl);
document.head.appendChild(link);
themeStyleElement = link;
currentThemeId = info.themeId;
loadThemeResources(info.themeId);
onViewBeforeShow({});
});
};
2018-10-22 15:05:09 -07:00
function onViewBeforeShow(e) {
if (e.detail && e.detail.type === 'video-osd') {
2020-05-14 05:18:50 -07:00
// This removes the space that the scrollbar takes while playing a video
2020-05-16 15:11:37 -07:00
document.body.classList.remove('force-scroll');
return;
}
if (themeResources.backdrop) {
backdrop.setBackdrop(themeResources.backdrop);
}
if (!browser.mobile && userSettings.enableThemeSongs()) {
if (lastSound === 0) {
if (themeResources.themeSong) {
playSound(themeResources.themeSong);
}
} else if ((new Date().getTime() - lastSound) > 30000) {
if (themeResources.effect) {
playSound(themeResources.effect);
}
}
}
2020-05-14 05:18:50 -07:00
// This keeps the scrollbar always present in all pages, so we avoid clipping while switching between pages
// that need the scrollbar and pages that don't.
2020-05-16 15:11:37 -07:00
document.body.classList.add('force-scroll');
2018-10-22 15:05:09 -07:00
}
document.addEventListener('viewshow', onViewBeforeShow);
2018-10-22 15:05:09 -07:00
function playSound(path, volume) {
lastSound = new Date().getTime();
require(['howler'], function (howler) {
/* globals Howl */
2018-10-22 15:05:09 -07:00
try {
var sound = new Howl({
src: [path],
volume: volume || 0.1
2018-10-22 15:05:09 -07:00
});
sound.play();
currentSound = sound;
} catch (err) {
2020-02-15 19:44:43 -07:00
console.error('error playing sound: ' + err);
2018-10-22 15:05:09 -07:00
}
});
}
return skinManager;
});