aboutsummaryrefslogtreecommitdiff
path: root/src/background/shared/tabs.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/background/shared/tabs.js')
-rw-r--r--src/background/shared/tabs.js50
1 files changed, 49 insertions, 1 deletions
diff --git a/src/background/shared/tabs.js b/src/background/shared/tabs.js
index f1dcc73..d09f676 100644
--- a/src/background/shared/tabs.js
+++ b/src/background/shared/tabs.js
@@ -1,3 +1,5 @@
+import * as tabCompletions from './completions/tabs';
+
const closeTab = (id) => {
return browser.tabs.get(id).then((tab) => {
if (!tab.pinned) {
@@ -10,6 +12,50 @@ const closeTabForce = (id) => {
return browser.tabs.remove(id);
};
+const closeTabByKeywords = (keyword) => {
+ 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);
+
+ if (matched.length === 0) {
+ throw new Error('No matching buffer for ' + keyword);
+ } else if (matched.length > 1) {
+ throw new Error('More than one match for ' + keyword);
+ }
+ browser.tabs.remove(matched[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) {
+ throw new Error('No matching buffer for ' + keyword);
+ } else if (matched.length > 1) {
+ throw new Error('More than one match for ' + keyword);
+ }
+ browser.tabs.remove(matched[0].id);
+ });
+};
+
+
+const closeTabsByKeywords = (keyword) => {
+ tabCompletions.getCompletions(keyword).then((tabs) => {
+ let tabs2 = tabs.filter(tab => !tab.pinned);
+ browser.tabs.remove(tabs2.map(tab => tab.id));
+ });
+};
+
+const closeTabsByKeywordsForce = (keyword) => {
+ tabCompletions.getCompletions(keyword).then((tabs) => {
+ browser.tabs.remove(tabs.map(tab => tab.id));
+ });
+};
+
const reopenTab = () => {
return browser.sessions.getRecentlyClosed({
maxResults: 1
@@ -119,7 +165,9 @@ const duplicate = (id) => {
};
export {
- closeTab, closeTabForce, reopenTab, selectAt, selectByKeyword,
+ closeTab, closeTabForce, closeTabByKeywords, closeTabByKeywordsForce,
+ closeTabsByKeywords, closeTabsByKeywordsForce,
+ reopenTab, selectAt, selectByKeyword,
selectPrevTab, selectNextTab, selectFirstTab,
selectLastTab, selectTab, reload, updateTabPinned,
toggleTabPinned, duplicate