diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-05-31 21:27:30 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-31 21:27:30 +0900 |
commit | f467e9bf20fd75723d83425b9c93b295161639f1 (patch) | |
tree | ab0de48e909cf229437a2ff85720c69bd616ed89 /src/background/shared/tabs.js | |
parent | 982a54c0aa6d1ae99932a05100bceafad6d3669c (diff) | |
parent | 0f3ad23085c8e2fd7c350590b3ee87cac6ade945 (diff) |
Merge pull request #405 from ueokande/ignore-case-tab-filtering
Ignore case tab filtering
Diffstat (limited to 'src/background/shared/tabs.js')
-rw-r--r-- | src/background/shared/tabs.js | 49 |
1 files changed, 24 insertions, 25 deletions
diff --git a/src/background/shared/tabs.js b/src/background/shared/tabs.js index d09f676..62e26ac 100644 --- a/src/background/shared/tabs.js +++ b/src/background/shared/tabs.js @@ -12,37 +12,39 @@ 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.toLowerCase().includes(keyword.toLowerCase()) || + t.title && t.title.toLowerCase().includes(keyword.toLowerCase()); + }).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 +87,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.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 +163,8 @@ const duplicate = (id) => { }; export { - closeTab, closeTabForce, closeTabByKeywords, closeTabByKeywordsForce, + closeTab, closeTabForce, + queryByKeyword, closeTabByKeywords, closeTabByKeywordsForce, closeTabsByKeywords, closeTabsByKeywordsForce, reopenTab, selectAt, selectByKeyword, selectPrevTab, selectNextTab, selectFirstTab, |