Merge pull request #124 from JiaboHou/pin-tab

added support for pinning/unpinning tabs
jh-changes
Shin'ya Ueoka 7 years ago committed by GitHub
commit 256820f78d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      README.md
  2. 10
      src/background/actions/operation.js
  3. 14
      src/background/tabs.js
  4. 1
      src/shared/default-settings.js
  5. 3
      src/shared/operations.js

@ -35,6 +35,7 @@ The default mappings are as follows:
- <kbd>g0</kbd>, <kbd>g$</kbd>: select first or last tab
- <kbd>r</kbd>: reload current tab
- <kbd>R</kbd>: reload current tab without cache
- <kbd>zp</kbd>: toggle pin/unpin current tab
### Navigation
- <kbd>f</kbd>: start following links in the page

@ -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 };

@ -100,7 +100,19 @@ const reload = (current, cache) => {
);
};
const updateTabPinned = (current, pinned) => {
return browser.tabs.query({ currentWindow: true, active: true })
.then(() => {
return browser.tabs.update(current.id, { pinned: pinned });
});
};
const toggleTabPinned = (current) => {
updateTabPinned(current, !current.pinned);
};
export {
closeTab, reopenTab, selectAt, selectByKeyword, getCompletions,
selectPrevTab, selectNextTab, selectFirstTab, selectLastTab, reload
selectPrevTab, selectNextTab, selectFirstTab, selectLastTab, reload,
updateTabPinned, toggleTabPinned
};

@ -32,6 +32,7 @@ export default {
"g$": { "type": "tabs.last" },
"r": { "type": "tabs.reload", "cache": false },
"R": { "type": "tabs.reload", "cache": true },
"zp": { "type": "tabs.pin.toggle" },
"zi": { "type": "zoom.in" },
"zo": { "type": "zoom.out" },
"zz": { "type": "zoom.neutral" },

@ -39,6 +39,9 @@ export default {
TAB_FIRST: 'tabs.first',
TAB_LAST: 'tabs.last',
TAB_RELOAD: 'tabs.reload',
TAB_PIN: 'tabs.pin',
TAB_UNPIN: 'tabs.unpin',
TAB_TOGGLE_PINNED: 'tabs.pin.toggle',
// Zooms
ZOOM_IN: 'zoom.in',