Use queryByKeyword for tab operations

jh-changes
Shin'ya Ueoka 6 years ago
parent e286aab3d7
commit 68fa80e1a3
  1. 12
      src/background/shared/completions/tabs.js
  2. 48
      src/background/shared/tabs.js

@ -1,12 +1,8 @@
import * as tabs from '../tabs';
const getCompletions = (keyword, excludePinned) => {
return browser.tabs.query({ currentWindow: true }).then((tabs) => {
let matched = tabs.filter((t) => {
return t.url.includes(keyword) || t.title && t.title.includes(keyword);
}).filter((t) => {
return !(excludePinned && t.pinned);
});
return matched;
});
return tabs.queryByKeyword(keyword, excludePinned);
};
export { getCompletions };

@ -12,37 +12,38 @@ const closeTabForce = (id) => {
return browser.tabs.remove(id);
};
const closeTabByKeywords = (keyword) => {
const queryByKeyword = (keyword, excludePinned = false) => {
return browser.tabs.query({ currentWindow: true }).then((tabs) => {
let matched = tabs.filter((t) => {
return t.url.includes(keyword) || t.title.includes(keyword);
}).filter(t => !t.pinned);
return tabs.filter((t) => {
return t.url.includes(keyword) || t.title && t.title.includes(keyword);
}).filter((t) => {
return !(excludePinned && t.pinned);
});
});
};
if (matched.length === 0) {
const closeTabByKeywords = (keyword) => {
return queryByKeyword(keyword, false).then((tabs) => {
if (tabs.length === 0) {
throw new Error('No matching buffer for ' + keyword);
} else if (matched.length > 1) {
} else if (tabs.length > 1) {
throw new Error('More than one match for ' + keyword);
}
browser.tabs.remove(matched[0].id);
browser.tabs.remove(tabs[0].id);
});
};
const closeTabByKeywordsForce = (keyword) => {
return browser.tabs.query({ currentWindow: true }).then((tabs) => {
let matched = tabs.filter((t) => {
return t.url.includes(keyword) || t.title.includes(keyword);
});
if (matched.length === 0) {
return queryByKeyword(keyword, true).then((tabs) => {
if (tabs.length === 0) {
throw new Error('No matching buffer for ' + keyword);
} else if (matched.length > 1) {
} else if (tabs.length > 1) {
throw new Error('More than one match for ' + keyword);
}
browser.tabs.remove(matched[0].id);
browser.tabs.remove(tabs[0].id);
});
};
const closeTabsByKeywords = (keyword) => {
tabCompletions.getCompletions(keyword).then((tabs) => {
let tabs2 = tabs.filter(tab => !tab.pinned);
@ -85,20 +86,16 @@ const selectAt = (index) => {
};
const selectByKeyword = (current, keyword) => {
return browser.tabs.query({ currentWindow: true }).then((tabs) => {
let matched = tabs.filter((t) => {
return t.url.includes(keyword) || t.title && t.title.includes(keyword);
});
if (matched.length === 0) {
return queryByKeyword(keyword).then((tabs) => {
if (tabs.length === 0) {
throw new RangeError('No matching buffer for ' + keyword);
}
for (let tab of matched) {
for (let tab of tabs) {
if (tab.index > current.index) {
return browser.tabs.update(tab.id, { active: true });
}
}
return browser.tabs.update(matched[0].id, { active: true });
return browser.tabs.update(tabs[0].id, { active: true });
});
};
@ -165,7 +162,8 @@ const duplicate = (id) => {
};
export {
closeTab, closeTabForce, closeTabByKeywords, closeTabByKeywordsForce,
closeTab, closeTabForce,
queryByKeyword, closeTabByKeywords, closeTabByKeywordsForce,
closeTabsByKeywords, closeTabsByKeywordsForce,
reopenTab, selectAt, selectByKeyword,
selectPrevTab, selectNextTab, selectFirstTab,