You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
'use strict';
|
|
define(
|
|
[
|
|
'app'
|
|
], function (App) {
|
|
return {
|
|
Events: {
|
|
ConfigUpdatedEvent: 'ConfigUpdatedEvent'
|
|
},
|
|
Keys : {
|
|
DefaultQualityProfileId: 'DefaultQualityProfileId',
|
|
DefaultRootFolderId: 'DefaultRootFolderId'
|
|
},
|
|
|
|
getValue: function (key, defaultValue) {
|
|
|
|
var storeValue = localStorage.getItem(key);
|
|
|
|
if (!storeValue) {
|
|
return defaultValue;
|
|
}
|
|
|
|
return storeValue.toString();
|
|
},
|
|
|
|
setValue: function (key, value) {
|
|
|
|
console.log('Config: [{0}] => [{1}] '.format(key, value));
|
|
|
|
if (this.getValue(key) === value.toString()) {
|
|
return;
|
|
}
|
|
|
|
localStorage.setItem(key, value);
|
|
App.vent.trigger(this.Events.ConfigUpdatedEvent, {key: key, value: value});
|
|
|
|
}
|
|
|
|
};
|
|
});
|