diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-02-24 22:45:47 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-24 22:45:47 +0900 |
commit | dfeb7e75498384af5e24255ee0fe7f8af37ac489 (patch) | |
tree | 12094b3a72d20d07c4cb040c37849c4680fd222b /src/background/infrastructures | |
parent | 83684a78e6e54b1e15bd4280553e28eb1d21df09 (diff) | |
parent | 80a4a347ec92f3e702075e448aba191ad3627cf6 (diff) |
Merge pull request #544 from ueokande/refactor-background
Refactor background
Diffstat (limited to 'src/background/infrastructures')
-rw-r--r-- | src/background/infrastructures/ConsoleClient.js | 37 | ||||
-rw-r--r-- | src/background/infrastructures/ContentMessageClient.js (renamed from src/background/infrastructures/content-message-client.js) | 3 | ||||
-rw-r--r-- | src/background/infrastructures/ContentMessageListener.js (renamed from src/background/infrastructures/content-message-listener.js) | 14 | ||||
-rw-r--r-- | src/background/infrastructures/MemoryStorage.js (renamed from src/background/infrastructures/memory-storage.js) | 0 | ||||
-rw-r--r-- | src/background/infrastructures/Notifier.js (renamed from src/background/infrastructures/notifier.js) | 0 |
5 files changed, 47 insertions, 7 deletions
diff --git a/src/background/infrastructures/ConsoleClient.js b/src/background/infrastructures/ConsoleClient.js new file mode 100644 index 0000000..f691515 --- /dev/null +++ b/src/background/infrastructures/ConsoleClient.js @@ -0,0 +1,37 @@ +import messages from '../../shared/messages'; + +export default class ConsoleClient { + showCommand(tabId, command) { + return browser.tabs.sendMessage(tabId, { + type: messages.CONSOLE_SHOW_COMMAND, + command, + }); + } + + showFind(tabId) { + return browser.tabs.sendMessage(tabId, { + type: messages.CONSOLE_SHOW_FIND + }); + } + + showInfo(tabId, message) { + return browser.tabs.sendMessage(tabId, { + type: messages.CONSOLE_SHOW_INFO, + text: message, + }); + } + + showError(tabId, message) { + return browser.tabs.sendMessage(tabId, { + type: messages.CONSOLE_SHOW_ERROR, + text: message, + }); + } + + hide(tabId) { + return browser.tabs.sendMessage(tabId, { + type: messages.CONSOLE_HIDE, + }); + } +} + diff --git a/src/background/infrastructures/content-message-client.js b/src/background/infrastructures/ContentMessageClient.js index 7e7e602..0fab5a3 100644 --- a/src/background/infrastructures/content-message-client.js +++ b/src/background/infrastructures/ContentMessageClient.js @@ -4,6 +4,9 @@ export default class ContentMessageClient { async broadcastSettingsChanged() { let tabs = await browser.tabs.query({}); for (let tab of tabs) { + if (tab.url.startsWith('about:')) { + continue; + } browser.tabs.sendMessage(tab.id, { type: messages.SETTINGS_CHANGED, }); diff --git a/src/background/infrastructures/content-message-listener.js b/src/background/infrastructures/ContentMessageListener.js index aae07c0..1179a8c 100644 --- a/src/background/infrastructures/content-message-listener.js +++ b/src/background/infrastructures/ContentMessageListener.js @@ -1,11 +1,11 @@ import messages from '../../shared/messages'; -import CommandController from '../controllers/command'; -import SettingController from '../controllers/setting'; -import FindController from '../controllers/find'; -import AddonEnabledController from '../controllers/addon-enabled'; -import LinkController from '../controllers/link'; -import OperationController from '../controllers/operation'; -import MarkController from '../controllers/mark'; +import CommandController from '../controllers/CommandController'; +import SettingController from '../controllers/SettingController'; +import FindController from '../controllers/FindController'; +import AddonEnabledController from '../controllers/AddonEnabledController'; +import LinkController from '../controllers/LinkController'; +import OperationController from '../controllers/OperationController'; +import MarkController from '../controllers/MarkController'; export default class ContentMessageListener { constructor() { diff --git a/src/background/infrastructures/memory-storage.js b/src/background/infrastructures/MemoryStorage.js index 3a7e4f2..3a7e4f2 100644 --- a/src/background/infrastructures/memory-storage.js +++ b/src/background/infrastructures/MemoryStorage.js diff --git a/src/background/infrastructures/notifier.js b/src/background/infrastructures/Notifier.js index 1eccc47..1eccc47 100644 --- a/src/background/infrastructures/notifier.js +++ b/src/background/infrastructures/Notifier.js |