blob: 602f6aa0121d72df2789b66aeeb9c918265fe40a (
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
|
"use client";
import BookmarksGrid from "@/components/dashboard/bookmarks/BookmarksGrid";
import Loading from "../bookmarks/loading";
import { Suspense, useRef } from "react";
import { SearchInput } from "@/components/dashboard/search/SearchInput";
import { useBookmarkSearch } from "@/lib/hooks/bookmark-search";
function SearchComp() {
const { data, isPending, isPlaceholderData } = useBookmarkSearch();
const inputRef: React.MutableRefObject<HTMLInputElement | null> =
useRef<HTMLInputElement | null>(null);
return (
<div className="container flex flex-col gap-3 p-4">
<SearchInput
ref={inputRef}
autoFocus={true}
loading={isPending || isPlaceholderData}
/>
<hr />
{data ? (
<BookmarksGrid
query={{ ids: data.bookmarks.map((b) => b.id) }}
bookmarks={data.bookmarks}
/>
) : (
<Loading />
)}
</div>
);
}
export default function SearchPage() {
return (
<Suspense>
<SearchComp />
</Suspense>
);
}
|