Lidarr/UI/Config.js

43 lines
1007 B
JavaScript
Raw Normal View History

"use strict";
2013-06-21 01:43:58 +00:00
define(
[
'app'
], function () {
2013-06-21 01:43:58 +00:00
NzbDrone.Config = {
Events: {
ConfigUpdatedEvent: 'ConfigUpdatedEvent'
},
Keys : {
DefaultQualityProfileId: 'DefaultQualityProfileId'
}
};
2013-06-21 01:43:58 +00:00
NzbDrone.Config.GetValue = function (key, defaultValue) {
2013-06-21 01:43:58 +00:00
var storeValue = localStorage.getItem(key);
2013-06-21 01:43:58 +00:00
if (!storeValue) {
return defaultValue;
}
2013-06-21 01:43:58 +00:00
return storeValue.toString();
};
2013-06-21 01:43:58 +00:00
NzbDrone.Config.SetValue = function (key, value) {
2013-06-21 01:43:58 +00:00
console.log('Config: [{0}] => [{1}] '.format(key, value));
2013-06-21 01:43:58 +00:00
if (NzbDrone.Config.GetValue(key) === value.toString()) {
return;
}
2013-06-21 01:43:58 +00:00
localStorage.setItem(key, value);
NzbDrone.vent.trigger(NzbDrone.Config.Events.ConfigUpdatedEvent, {key: key, value: value});
2013-06-21 01:43:58 +00:00
};
2013-06-21 01:43:58 +00:00
return NzbDrone.Config;
});