1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Migrate site.js to ES6

This commit is contained in:
MrTimscampi 2020-08-14 06:36:46 +02:00 committed by vitorsemeano
parent e558ef80d7
commit 1a635e2f81
6 changed files with 235 additions and 512 deletions

View file

@ -1,5 +1,6 @@
import browser from 'browser';
import appSettings from 'appSettings';
import appHost from './apphost';
import browser from '../scripts/browser';
import { set, get } from '../scripts/settings/appSettings';
import events from 'events';
function setLayout(instance, layout, selectedLayout) {
@ -18,7 +19,7 @@ class LayoutManager {
this.autoLayout();
if (save !== false) {
appSettings.set('layout', '');
set('layout', '');
}
} else {
setLayout(this, 'mobile', layout);
@ -26,15 +27,15 @@ class LayoutManager {
setLayout(this, 'desktop', layout);
if (save !== false) {
appSettings.set('layout', layout);
set('layout', layout);
}
}
events.trigger(this, 'modechange');
}
getSavedLayout(layout) {
return appSettings.get('layout');
getSavedLayout() {
return get('layout');
}
autoLayout() {
@ -58,4 +59,12 @@ class LayoutManager {
}
}
export default new LayoutManager();
const layoutManager = new LayoutManager();
if (appHost.getDefaultLayout) {
layoutManager.defaultLayout = appHost.getDefaultLayout();
}
layoutManager.init();
export default layoutManager;