jellyfin-web/dashboard-ui/scripts/appsettings.js

87 lines
2.3 KiB
JavaScript
Raw Normal View History

2015-06-25 14:50:56 -07:00
(function (window) {
2015-05-27 22:51:48 -07:00
function update(key, val) {
2015-06-25 14:50:56 -07:00
appStorage.setItem(key, val);
2015-05-27 22:51:48 -07:00
Events.trigger(AppSettings, 'settingupdated', [key]);
}
window.AppSettings = {
maxStreamingBitrate: function (val) {
if (val != null) {
update('preferredVideoBitrate', val);
}
2015-06-25 14:50:56 -07:00
return parseInt(appStorage.getItem('preferredVideoBitrate') || '') || 1500000;
2015-05-27 22:51:48 -07:00
},
maxChromecastBitrate: function (val) {
if (val != null) {
update('chromecastBitrate', val);
}
2015-06-25 14:50:56 -07:00
return parseInt(appStorage.getItem('chromecastBitrate') || '') || 3000000;
2015-05-27 22:51:48 -07:00
},
2015-06-07 20:16:42 -07:00
enableChromecastAc3: function (val) {
if (val != null) {
update('enablechromecastac3', val.toString());
}
2015-06-25 14:50:56 -07:00
return appStorage.getItem('enablechromecastac3') == 'true';
2015-06-07 20:16:42 -07:00
},
2015-05-27 22:51:48 -07:00
enableExternalPlayers: function (val) {
if (val != null) {
update('externalplayers', val.toString());
}
2015-06-25 14:50:56 -07:00
return appStorage.getItem('externalplayers') == 'true';
2015-05-27 22:51:48 -07:00
},
enableItemPreviews: function (val) {
if (val != null) {
update('enableItemPreviews', val.toString());
}
2015-06-25 14:50:56 -07:00
return appStorage.getItem('enableItemPreviews') == 'true';
2015-05-27 22:51:48 -07:00
},
enableFullScreen: function (val) {
if (val != null) {
update('enableFullScreen', val.toString());
}
2015-06-25 14:50:56 -07:00
return appStorage.getItem('enableFullScreen') == 'true';
2015-06-09 21:01:14 -07:00
},
2015-07-26 14:02:23 -07:00
enableSyncToExternalStorage: function (val) {
2015-06-09 21:01:14 -07:00
if (val != null) {
2015-07-26 14:02:23 -07:00
update('enableSyncToExternalStorage', val.toString());
2015-06-09 21:01:14 -07:00
}
2015-07-30 07:34:46 -07:00
return appStorage.getItem('enableSyncToExternalStorage') != 'false';
2015-07-03 10:55:29 -07:00
},
2015-05-27 22:51:48 -07:00
2015-08-04 11:14:16 -07:00
displayLanguage: function (val) {
if (val != null) {
update('displayLanguage', val);
}
return appStorage.getItem('displayLanguage') || 'en-US';
},
displayPreferencesKey: function () {
2015-07-03 10:55:29 -07:00
if (AppInfo.isNativeApp) {
return 'Emby Mobile';
}
return 'webclient';
}
2015-05-27 22:51:48 -07:00
};
2015-06-25 14:50:56 -07:00
})(window);