1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-23 05:19:37 +02:00

Normal and live search for bookmarks

This commit is contained in:
unknown 2021-09-06 13:22:47 +02:00
parent fac280ff0a
commit 53d50ca869
4 changed files with 111 additions and 69 deletions

View file

@ -89,6 +89,18 @@ const Home = (props: ComponentProps): JSX.Element => {
return () => clearInterval(interval);
}, []);
// Search bookmarks
const searchBookmarks = (query: string): Category[] => {
const category = { ...categories[0] };
category.name = 'Search Results';
category.bookmarks = categories
.map(({ bookmarks }) => bookmarks)
.flat()
.filter(({ name }) => new RegExp(query, 'i').test(name));
return [category];
};
return (
<Container>
{searchConfig('hideSearch', 0) !== 1 ? (
@ -143,10 +155,13 @@ const Home = (props: ComponentProps): JSX.Element => {
<Spinner />
) : (
<BookmarkGrid
categories={categories.filter(
(category: Category) => category.isPinned
)}
categories={
!localSearch
? categories.filter(({ isPinned }) => isPinned)
: searchBookmarks(localSearch)
}
totalCategories={categories.length}
searching={!!localSearch}
/>
)}
</Fragment>