web-api-manager/add-on/config/js/config.js

36 lines
1.1 KiB
JavaScript
Raw Normal View History

2017-10-12 19:00:04 +00:00
(function () {
"use strict";
2017-10-13 22:30:57 +00:00
const rootObject = (window.browser || window.chrome);
2017-10-12 19:00:04 +00:00
const doc = window.document;
const standards = window.WEB_API_MANAGER.standards;
const {storageLib, stateLib} = window.WEB_API_MANAGER;
const defaultDomain = "(default)";
const Vue = window.Vue;
2017-10-12 19:00:04 +00:00
const state = stateLib.generateStateObject(defaultDomain, standards);
const onSettingsLoaded = function (storedSettings) {
2017-10-12 19:00:04 +00:00
state.populateFromStorage(storedSettings);
2017-10-14 20:24:18 +00:00
2017-10-12 19:00:04 +00:00
const vm = new Vue({
el: doc.body,
data: state
});
const updateStoredSettings = function () {
storageLib.set(state.toStorage(), function () {
rootObject.runtime.sendMessage(["stateUpdate", state.toStorage()]);
2017-10-13 22:30:57 +00:00
});
2017-10-12 19:00:04 +00:00
};
vm.$watch("selectedStandards", updateStoredSettings);
vm.$watch("domainNames", updateStoredSettings);
vm.$watch("shouldLog", updateStoredSettings);
2017-10-12 19:00:04 +00:00
};
window.onload = function () {
2017-10-12 19:00:04 +00:00
storageLib.get(onSettingsLoaded);
};
}());