aboutsummaryrefslogtreecommitdiff
path: root/src/background/controllers/OperationController.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-02-24 22:45:47 +0900
committerGitHub <noreply@github.com>2019-02-24 22:45:47 +0900
commitdfeb7e75498384af5e24255ee0fe7f8af37ac489 (patch)
tree12094b3a72d20d07c4cb040c37849c4680fd222b /src/background/controllers/OperationController.js
parent83684a78e6e54b1e15bd4280553e28eb1d21df09 (diff)
parent80a4a347ec92f3e702075e448aba191ad3627cf6 (diff)
Merge pull request #544 from ueokande/refactor-background
Refactor background
Diffstat (limited to 'src/background/controllers/OperationController.js')
-rw-r--r--src/background/controllers/OperationController.js77
1 files changed, 77 insertions, 0 deletions
diff --git a/src/background/controllers/OperationController.js b/src/background/controllers/OperationController.js
new file mode 100644
index 0000000..416aa9c
--- /dev/null
+++ b/src/background/controllers/OperationController.js
@@ -0,0 +1,77 @@
+import operations from '../../shared/operations';
+import FindUseCase from '../usecases/FindUseCase';
+import ConsoleUseCase from '../usecases/ConsoleUseCase';
+import TabUseCase from '../usecases/TabUseCase';
+import TabSelectUseCase from '../usecases/TabSelectUseCase';
+import ZoomUseCase from '../usecases/ZoomUseCase';
+
+export default class OperationController {
+ constructor() {
+ this.findUseCase = new FindUseCase();
+ this.consoleUseCase = new ConsoleUseCase();
+ this.tabUseCase = new TabUseCase();
+ this.tabSelectUseCase = new TabSelectUseCase();
+ this.zoomUseCase = new ZoomUseCase();
+ }
+
+ // eslint-disable-next-line complexity, max-lines-per-function
+ exec(operation) {
+ switch (operation.type) {
+ case operations.TAB_CLOSE:
+ return this.tabUseCase.close(false);
+ case operations.TAB_CLOSE_RIGHT:
+ return this.tabUseCase.closeRight();
+ case operations.TAB_CLOSE_FORCE:
+ return this.tabUseCase.close(true);
+ case operations.TAB_REOPEN:
+ return this.tabUseCase.reopen();
+ case operations.TAB_PREV:
+ return this.tabSelectUseCase.selectPrev(1);
+ case operations.TAB_NEXT:
+ return this.tabSelectUseCase.selectNext(1);
+ case operations.TAB_FIRST:
+ return this.tabSelectUseCase.selectFirst();
+ case operations.TAB_LAST:
+ return this.tabSelectUseCase.selectLast();
+ case operations.TAB_PREV_SEL:
+ return this.tabSelectUseCase.selectPrevSelected();
+ case operations.TAB_RELOAD:
+ return this.tabUseCase.reload(operation.cache);
+ case operations.TAB_PIN:
+ return this.tabUseCase.setPinned(true);
+ case operations.TAB_UNPIN:
+ return this.tabUseCase.setPinned(false);
+ case operations.TAB_TOGGLE_PINNED:
+ return this.tabUseCase.togglePinned();
+ case operations.TAB_DUPLICATE:
+ return this.tabUseCase.duplicate();
+ case operations.PAGE_SOURCE:
+ return this.tabUseCase.openPageSource();
+ case operations.PAGE_HOME:
+ return this.tabUseCase.openHome(operation.newTab);
+ case operations.ZOOM_IN:
+ return this.zoomUseCase.zoomIn();
+ case operations.ZOOM_OUT:
+ return this.zoomUseCase.zoomOut();
+ case operations.ZOOM_NEUTRAL:
+ return this.zoomUseCase.zoomNutoral();
+ case operations.COMMAND_SHOW:
+ return this.consoleUseCase.showCommand();
+ case operations.COMMAND_SHOW_OPEN:
+ return this.consoleUseCase.showOpenCommand(operation.alter);
+ case operations.COMMAND_SHOW_TABOPEN:
+ return this.consoleUseCase.showTabopenCommand(operation.alter);
+ case operations.COMMAND_SHOW_WINOPEN:
+ return this.consoleUseCase.showWinopenCommand(operation.alter);
+ case operations.COMMAND_SHOW_BUFFER:
+ return this.consoleUseCase.showBufferCommand();
+ case operations.COMMAND_SHOW_ADDBOOKMARK:
+ return this.consoleUseCase.showAddbookmarkCommand(operation.alter);
+ case operations.FIND_START:
+ return this.findUseCase.findStart();
+ case operations.CANCEL:
+ return this.consoleUseCase.hideConsole();
+ }
+ }
+}
+