blob: 0c95cf710bcc499f46d3b23a258b14d474101c5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import BookmarkRepository, { BookmarkItem } from "../BookmarkRepository";
const COMPLETION_ITEM_LIMIT = 10;
export default class CachedBookmarkRepository implements BookmarkRepository {
async queryBookmarks(query: string): Promise<BookmarkItem[]> {
const items = await browser.bookmarks.search({ query });
return items
.filter((item) => item.title && item.title.length > 0)
.filter((item) => item.type === "bookmark" && item.url)
.filter((item) => {
let url = undefined;
try {
url = new URL(item.url!);
} catch (e) {
return false;
}
return url.protocol !== "place:";
})
.slice(0, COMPLETION_ITEM_LIMIT)
.map((item) => ({
title: item.title!,
url: item.url!,
}));
}
}
|