blob: 03dbb196c316ba04ed5903d3549e46793d808543 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
"use client";
import { Suspense, useEffect } from "react";
import BookmarksGrid from "@/components/dashboard/bookmarks/BookmarksGrid";
import BookmarksGridSkeleton from "@/components/dashboard/bookmarks/BookmarksGridSkeleton";
import { useBookmarkSearch } from "@/lib/hooks/bookmark-search";
import { useInSearchPageStore } from "@/lib/store/useInSearchPageStore";
import { useSortOrderStore } from "@/lib/store/useSortOrderStore";
function SearchComp() {
const { data, hasNextPage, fetchNextPage, isFetchingNextPage } =
useBookmarkSearch();
const { setInSearchPage } = useInSearchPageStore();
const { setSortOrder } = useSortOrderStore();
useEffect(() => {
// also see related cleanup code in SortOrderToggle.tsx
setSortOrder("relevance");
}, []);
useEffect(() => {
setInSearchPage(true);
return () => setInSearchPage(false);
}, [setInSearchPage]);
return (
<div className="flex flex-col gap-3">
{data ? (
<BookmarksGrid
hasNextPage={hasNextPage}
fetchNextPage={fetchNextPage}
isFetchingNextPage={isFetchingNextPage}
bookmarks={data.pages.flatMap((b) => b.bookmarks)}
/>
) : (
<BookmarksGridSkeleton />
)}
</div>
);
}
export default function SearchPage() {
return (
<Suspense>
<SearchComp />
</Suspense>
);
}
|