diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-15 17:32:12 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-15 21:19:46 +0900 |
commit | 9a808f45ed4acba8c8dc8af4738c582ac417bd49 (patch) | |
tree | 8d87dfc8627546c8ba67b99ae164ec6ca903e85b /src/background/index.js | |
parent | f66b7a1c2105bec2549f1fac640ff906a9d5184e (diff) |
implement simple open/tabopen command
Diffstat (limited to 'src/background/index.js')
-rw-r--r-- | src/background/index.js | 54 |
1 files changed, 37 insertions, 17 deletions
diff --git a/src/background/index.js b/src/background/index.js index 604ea92..e8882c5 100644 --- a/src/background/index.js +++ b/src/background/index.js @@ -1,18 +1,28 @@ import * as actions from '../shared/actions'; import * as tabs from './tabs'; +import * as commands from './commands'; import KeyQueue from './key-queue'; const queue = new KeyQueue(); -const keyDownHandle = (request) => { - return queue.push({ +const keyDownHandle = (request, sender, sendResponse) => { + let action = queue.push({ code: request.code, shift: request.shift, ctrl: request.ctrl, alt: request.alt, meta: request.meta - }) -} + }); + if (!action) { + return; + } + + if (actions.isBackgroundAction(action[0])) { + doBackgroundAction(sender, action); + } else if (actions.isContentAction(action[0])) { + sendResponse(action); + } +}; const doBackgroundAction = (sender, action) => { switch(action[0]) { @@ -25,22 +35,32 @@ const doBackgroundAction = (sender, action) => { } } -browser.runtime.onMessage.addListener((request, sender, sendResponse) => { - let action = null; - - switch (request.type) { - case 'event.keydown': - action = keyDownHandle(request); - break; - } +const normalizeUrl = (string) => { + return 'http://' + string; +} - if (action == null) { +const cmdEnterHandle = (request, sender) => { + let words = request.text.split(' ').filter((s) => s.length > 0); + switch (words[0]) { + case commands.OPEN: + browser.tabs.update(sender.tab.id, { url: normalizeUrl(words[1]) }); + return; + case commands.TABOPEN: + browser.tabs.create({ url: normalizeUrl(words[1]) }); return; } +}; - if (actions.isBackgroundAction(action[0])) { - doBackgroundAction(sender, action); - } else if (actions.isContentAction(action[0])) { - sendResponse(action); +browser.runtime.onMessage.addListener((request, sender, sendResponse) => { + switch (request.type) { + case 'event.keydown': + keyDownHandle(request, sender, sendResponse); + break; + case 'event.cmd.enter': + cmdEnterHandle(request, sender, sendResponse); + break; + case 'event.cmd.suggest': + // TODO make suggestion and return via sendResponse + break; } }); |