Dummy selectPrevSelTab implementation

jh-changes
Daniel Campoverde 7 years ago
parent 0b37c2250e
commit 50cc126e08
  1. 2
      src/background/actions/operation.js
  2. 18
      src/background/tabs.js
  3. 1
      src/shared/operations.js
  4. 1
      src/shared/settings/default.js

@ -27,6 +27,8 @@ const exec = (operation, tab) => {
return tabs.selectFirstTab();
case operations.TAB_LAST:
return tabs.selectLastTab();
case operations.TAB_PREV_SEL:
return tabs.selectPrevSelTab();
case operations.TAB_RELOAD:
return tabs.reload(tab, operation.cache);
case operations.TAB_PIN:

@ -1,3 +1,6 @@
// var prevSelTab = null;
var prevSelTab = 0;
const closeTab = (id) => {
return browser.tabs.remove(id);
};
@ -93,6 +96,17 @@ const selectLastTab = () => {
});
};
const selectPrevSelTab = () => {
if (prevSelTab != null) {
return browser.tabs.query({ currentWindow: true }).then((tabs) => {
let id = tabs[prevSelTab].id;
return browser.tabs.update(id, { active: true });
});
} else {
// some error message
}
};
const reload = (current, cache) => {
return browser.tabs.reload(
current.id,
@ -117,6 +131,6 @@ const duplicate = (id) => {
export {
closeTab, reopenTab, selectAt, selectByKeyword, getCompletions,
selectPrevTab, selectNextTab, selectFirstTab, selectLastTab, reload,
updateTabPinned, toggleTabPinned, duplicate
selectPrevTab, selectNextTab, selectFirstTab, selectLastTab, selectPrevSelTab,
reload, updateTabPinned, toggleTabPinned, duplicate
};

@ -38,6 +38,7 @@ export default {
TAB_NEXT: 'tabs.next',
TAB_FIRST: 'tabs.first',
TAB_LAST: 'tabs.last',
TAB_PREV_SEL: 'tabs.prevsel',
TAB_RELOAD: 'tabs.reload',
TAB_PIN: 'tabs.pin',
TAB_UNPIN: 'tabs.unpin',

@ -30,6 +30,7 @@ export default {
"J": { "type": "tabs.next", "count": 1 },
"g0": { "type": "tabs.first" },
"g$": { "type": "tabs.last" },
"gl": { "type": "tabs.prevsel" },
"r": { "type": "tabs.reload", "cache": false },
"R": { "type": "tabs.reload", "cache": true },
"zp": { "type": "tabs.pin.toggle" },