diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/background.js | 27 | ||||
-rw-r--r-- | src/components/content-input.js | 2 |
2 files changed, 11 insertions, 18 deletions
diff --git a/src/components/background.js b/src/components/background.js index 79a7a6a..4961d85 100644 --- a/src/components/background.js +++ b/src/components/background.js @@ -19,8 +19,6 @@ export default class BackgroundComponent { }); } }); - browser.tabs.onUpdated.addListener(this.onTabUpdated.bind(this)); - browser.tabs.onActivated.addListener(this.onTabActivated.bind(this)); } update() { @@ -59,28 +57,23 @@ export default class BackgroundComponent { text: e.message, }); }); + case messages.SETTINGS_QUERY: + return Promise.resolve(this.store.getState().setting.settings); case messages.CONSOLE_QUERY_COMPLETIONS: return commands.complete(message.text, this.settings); case messages.SETTINGS_RELOAD: this.store.dispatch(settingsActions.load()); + return this.broadcastSettingsChanged(); } } - onTabActivated(info) { - this.syncSettings(info.tabId); - } - - onTabUpdated(id, info) { - if (info.status === 'complete') { - this.syncSettings(id); - } - } - - syncSettings(id) { - let { settings } = this.store.getState().setting; - return browser.tabs.sendMessage(id, { - type: messages.CONTENT_SET_SETTINGS, - settings, + broadcastSettingsChanged() { + return browser.tabs.query({}).then((tabs) => { + for (let tab of tabs) { + browser.tabs.sendMessage(tab.id, { + type: messages.SETTINGS_CHANGED, + }); + } }); } } diff --git a/src/components/content-input.js b/src/components/content-input.js index 1dbf48f..504835c 100644 --- a/src/components/content-input.js +++ b/src/components/content-input.js @@ -13,7 +13,7 @@ export default class ContentInputComponent { update() { let settings = this.store.getState().setting.settings; - if (!settings) { + if (!settings || !settings.json) { return; } let input = this.store.getState().input; |