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

78 lines
2.0 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
},
syncPath: function (val) {
if (val != null) {
update('syncPath', val.toString());
}
2015-06-25 14:50:56 -07:00
return appStorage.getItem('syncPath');
2015-07-03 10:55:29 -07:00
},
2015-05-27 22:51:48 -07:00
2015-07-03 10:55:29 -07:00
displayPreferencesKey: function() {
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);