blob: 58df12981ae9dd3be30a8eb192b31ce542b85a07 (
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
27
28
|
import { injectable } from "tsyringe";
import BookmarkRepository, {BookmarkItem} from "../BookmarkRepository";
const COMPLETION_ITEM_LIMIT = 10;
@injectable()
export default class BookmarkRepositoryImpl 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!!,
}));
}
}
|