aboutsummaryrefslogtreecommitdiff
path: root/src/background/completion/filters.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-03-26 07:17:55 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2020-03-26 22:15:09 +0900
commit6829e24c62c0291336502b3390905b57b81abd21 (patch)
treeb6fa9b1058be1588e313cae3c08bdbbf7f175001 /src/background/completion/filters.ts
parent70b08f1025d3e00a016843669d61c56789bc0028 (diff)
Use new completion use-case on current use-case (aliased)
Diffstat (limited to 'src/background/completion/filters.ts')
-rw-r--r--src/background/completion/filters.ts76
1 files changed, 76 insertions, 0 deletions
diff --git a/src/background/completion/filters.ts b/src/background/completion/filters.ts
new file mode 100644
index 0000000..98957a7
--- /dev/null
+++ b/src/background/completion/filters.ts
@@ -0,0 +1,76 @@
+type Item = browser.history.HistoryItem;
+
+const filterHttp = (items: Item[]): Item[] => {
+ const httpsHosts = items.map(x => new URL(x.url as string))
+ .filter(x => x.protocol === 'https:')
+ .map(x => x.host);
+ const hostsSet = new Set(httpsHosts);
+
+ return items.filter((item: Item) => {
+ const url = new URL(item.url as string);
+ return url.protocol === 'https:' || !hostsSet.has(url.host);
+ });
+};
+
+const filterBlankTitle = (items: Item[]): Item[] => {
+ return items.filter(item => item.title && item.title !== '');
+};
+
+const filterByTailingSlash = (items: Item[]): Item[] => {
+ const urls = items.map(item => new URL(item.url as string));
+ const simplePaths = urls
+ .filter(url => url.hash === '' && url.search === '')
+ .map(url => url.origin + url.pathname);
+ const pathsSet = new Set(simplePaths);
+
+ return items.filter((item) => {
+ const url = new URL(item.url as string);
+ if (url.hash !== '' || url.search !== '' ||
+ url.pathname.slice(-1) !== '/') {
+ return true;
+ }
+ return !pathsSet.has(url.origin + url.pathname.slice(0, -1));
+ });
+};
+
+const filterByPathname = (items: Item[], min: number): Item[] => {
+ const hash: {[key: string]: Item} = {};
+ for (const item of items) {
+ const url = new URL(item.url as string);
+ const pathname = url.origin + url.pathname;
+ if (!hash[pathname]) {
+ hash[pathname] = item;
+ } else if ((hash[pathname].url as string).length >
+ (item.url as string).length) {
+ hash[pathname] = item;
+ }
+ }
+ const filtered = Object.values(hash);
+ if (filtered.length < min) {
+ return items;
+ }
+ return filtered;
+};
+
+const filterByOrigin = (items: Item[], min: number): Item[] => {
+ const hash: {[key: string]: Item} = {};
+ for (const item of items) {
+ const origin = new URL(item.url as string).origin;
+ if (!hash[origin]) {
+ hash[origin] = item;
+ } else if ((hash[origin].url as string).length >
+ (item.url as string).length) {
+ hash[origin] = item;
+ }
+ }
+ const filtered = Object.values(hash);
+ if (filtered.length < min) {
+ return items;
+ }
+ return filtered;
+};
+
+export {
+ filterHttp, filterBlankTitle, filterByTailingSlash,
+ filterByPathname, filterByOrigin
+};