aboutsummaryrefslogtreecommitdiff
path: root/src/background/actions/operation.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-11-05 23:41:38 +0000
committerGitHub <noreply@github.com>2017-11-05 23:41:38 +0000
commit256820f78d0450c55a32557eca13294ab9fdf80f (patch)
tree9851c73fc77d9d5bd8e9c91f754995de2b3d56e5 /src/background/actions/operation.js
parentb3b017a123516096dd7be05695f7a71da3b808cc (diff)
parent87b8280d4bdcaddeac1aff95d9354e1954b7c25a (diff)
Merge pull request #124 from JiaboHou/pin-tab
added support for pinning/unpinning tabs
Diffstat (limited to 'src/background/actions/operation.js')
-rw-r--r--src/background/actions/operation.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/background/actions/operation.js b/src/background/actions/operation.js
index a5094c0..d0caf80 100644
--- a/src/background/actions/operation.js
+++ b/src/background/actions/operation.js
@@ -10,6 +10,9 @@ const sendConsoleShowCommand = (tab, command) => {
});
};
+// This switch statement is only gonna get longer as more
+// features are added, so disable complexity check
+/* eslint-disable complexity */
const exec = (operation, tab) => {
switch (operation.type) {
case operations.TAB_CLOSE:
@@ -26,6 +29,12 @@ const exec = (operation, tab) => {
return tabs.selectLastTab();
case operations.TAB_RELOAD:
return tabs.reload(tab, operation.cache);
+ case operations.TAB_PIN:
+ return tabs.updateTabPinned(tab, true);
+ case operations.TAB_UNPIN:
+ return tabs.updateTabPinned(tab, false);
+ case operations.TAB_TOGGLE_PINNED:
+ return tabs.toggleTabPinned(tab);
case operations.ZOOM_IN:
return zooms.zoomIn();
case operations.ZOOM_OUT:
@@ -58,5 +67,6 @@ const exec = (operation, tab) => {
return Promise.resolve();
}
};
+/* eslint-enable complexity */
export { exec };