mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
22 lines
752 B
JavaScript
22 lines
752 B
JavaScript
import * as userSettings from './settings/userSettings';
|
|
import * as webSettings from './settings/webSettings';
|
|
import skinManager from './themeManager';
|
|
import { ConnectionManager, Events } from 'jellyfin-apiclient';
|
|
|
|
// set the default theme when loading
|
|
skinManager.setTheme(userSettings.theme());
|
|
|
|
// set the saved theme once a user authenticates
|
|
Events.on(ConnectionManager, 'localusersignedin', function (e, user) {
|
|
skinManager.setTheme(userSettings.theme());
|
|
});
|
|
|
|
webSettings.getFonts().then(fonts => {
|
|
for (const font of fonts) {
|
|
const link = document.createElement('link');
|
|
link.setAttribute('rel', 'stylesheet');
|
|
link.href = font;
|
|
|
|
document.getElementsByTagName('head')[0].appendChild(link);
|
|
}
|
|
});
|