mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
84 lines
2.1 KiB
JavaScript
84 lines
2.1 KiB
JavaScript
import * as webSettings from './settings/webSettings';
|
|
|
|
let themeStyleElement = document.querySelector('#cssTheme');
|
|
let currentThemeId;
|
|
|
|
function unloadTheme() {
|
|
const elem = themeStyleElement;
|
|
if (elem) {
|
|
elem.removeAttribute('href');
|
|
currentThemeId = null;
|
|
}
|
|
}
|
|
|
|
function getThemes() {
|
|
return webSettings.getThemes();
|
|
}
|
|
|
|
function getThemeStylesheetInfo(id) {
|
|
return getThemes().then(themes => {
|
|
let theme = themes.find(theme => {
|
|
return id ? theme.id === id : theme.default;
|
|
});
|
|
|
|
if (!theme) {
|
|
theme = {
|
|
'name': 'Dark',
|
|
'id': 'dark',
|
|
'default': true
|
|
};
|
|
}
|
|
|
|
return {
|
|
stylesheetPath: 'themes/' + theme.id + '/theme.css',
|
|
themeId: theme.id
|
|
};
|
|
});
|
|
}
|
|
|
|
function setTheme(id) {
|
|
return new Promise(function (resolve, reject) {
|
|
if (currentThemeId && currentThemeId === id) {
|
|
resolve();
|
|
return;
|
|
}
|
|
|
|
getThemeStylesheetInfo(id).then(function (info) {
|
|
if (currentThemeId && currentThemeId === info.themeId) {
|
|
resolve();
|
|
return;
|
|
}
|
|
|
|
const linkUrl = info.stylesheetPath;
|
|
unloadTheme();
|
|
|
|
let link = themeStyleElement;
|
|
|
|
if (!link) {
|
|
// Inject the theme css as a dom element in body so it will take
|
|
// precedence over other stylesheets
|
|
link = document.createElement('link');
|
|
link.id = 'cssTheme';
|
|
link.setAttribute('rel', 'stylesheet');
|
|
link.setAttribute('type', 'text/css');
|
|
document.body.appendChild(link);
|
|
}
|
|
|
|
const onLoad = function (e) {
|
|
e.target.removeEventListener('load', onLoad);
|
|
resolve();
|
|
};
|
|
|
|
link.addEventListener('load', onLoad);
|
|
|
|
link.setAttribute('href', linkUrl);
|
|
themeStyleElement = link;
|
|
currentThemeId = info.themeId;
|
|
});
|
|
});
|
|
}
|
|
|
|
export default {
|
|
getThemes: getThemes,
|
|
setTheme: setTheme
|
|
};
|