|
1 |
| -import { MagnifyingGlass } from "@phosphor-icons/react"; |
| 1 | +import { ArrowRight, MagnifyingGlass, X } from "@phosphor-icons/react"; |
2 | 2 | import * as Dialog from "@radix-ui/react-dialog";
|
3 | 3 | import * as VisuallyHidden from "@radix-ui/react-visually-hidden";
|
| 4 | +import { useLocation } from "@remix-run/react"; |
| 5 | +import { type MutableRefObject, useEffect, useState } from "react"; |
| 6 | +import Link from "~/components/link"; |
| 7 | +import { usePredictiveSearch } from "~/hooks/use-predictive-search"; |
4 | 8 | import { cn } from "~/lib/cn";
|
5 |
| -import { Input } from "~/modules/input"; |
6 |
| -import { PredictiveSearchResults } from "./predictive-search-results"; |
| 9 | +import { PredictiveSearchResult } from "./predictive-search-result"; |
7 | 10 | import { PredictiveSearchForm } from "./search-form";
|
8 | 11 |
|
9 | 12 | export function PredictiveSearchButton() {
|
| 13 | + let [open, setOpen] = useState(false); |
| 14 | + let location = useLocation(); |
| 15 | + |
| 16 | + // biome-ignore lint/correctness/useExhaustiveDependencies: close the dialog when the location changes, aka when the user navigates to a search result page |
| 17 | + useEffect(() => { |
| 18 | + setOpen(false); |
| 19 | + }, [location]); |
| 20 | + |
10 | 21 | return (
|
11 |
| - <Dialog.Root> |
| 22 | + <Dialog.Root open={open} onOpenChange={setOpen}> |
12 | 23 | <Dialog.Trigger
|
13 | 24 | asChild
|
14 | 25 | className="hidden lg:flex h-8 w-8 items-center justify-center focus-visible:outline-none"
|
@@ -36,37 +47,102 @@ export function PredictiveSearchButton() {
|
36 | 47 | <VisuallyHidden.Root asChild>
|
37 | 48 | <Dialog.Title>Predictive search</Dialog.Title>
|
38 | 49 | </VisuallyHidden.Root>
|
39 |
| - <PredictiveSearch /> |
| 50 | + <div className="relative pt-[--topbar-height]"> |
| 51 | + <PredictiveSearchForm> |
| 52 | + {({ fetchResults, inputRef }) => ( |
| 53 | + <div className="flex items-center gap-3 w-[560px] max-w-[90vw] mx-auto px-3 my-6 border border-line-subtle"> |
| 54 | + <MagnifyingGlass className="h-5 w-5 shrink-0 text-gray-500" /> |
| 55 | + <input |
| 56 | + name="q" |
| 57 | + type="search" |
| 58 | + onChange={(e) => fetchResults(e.target.value)} |
| 59 | + onFocus={(e) => fetchResults(e.target.value)} |
| 60 | + placeholder="Enter a keyword" |
| 61 | + ref={inputRef} |
| 62 | + autoComplete="off" |
| 63 | + className="focus-visible:outline-none w-full h-full py-4" |
| 64 | + /> |
| 65 | + <button |
| 66 | + type="button" |
| 67 | + className="shrink-0 text-gray-500 p-1" |
| 68 | + onClick={() => { |
| 69 | + if (inputRef.current) { |
| 70 | + inputRef.current.value = ""; |
| 71 | + fetchResults(""); |
| 72 | + } |
| 73 | + }} |
| 74 | + > |
| 75 | + <X className="w-5 h-5" /> |
| 76 | + </button> |
| 77 | + </div> |
| 78 | + )} |
| 79 | + </PredictiveSearchForm> |
| 80 | + <PredictiveSearchResults /> |
| 81 | + </div> |
40 | 82 | </Dialog.Content>
|
41 | 83 | </Dialog.Portal>
|
42 | 84 | </Dialog.Root>
|
43 | 85 | );
|
44 | 86 | }
|
45 | 87 |
|
46 |
| -function PredictiveSearch() { |
| 88 | +function PredictiveSearchResults() { |
| 89 | + let { results, totalResults, searchTerm } = usePredictiveSearch(); |
| 90 | + let queries = results?.find(({ type }) => type === "queries"); |
| 91 | + let articles = results?.find(({ type }) => type === "articles"); |
| 92 | + let products = results?.find(({ type }) => type === "products"); |
| 93 | + |
| 94 | + if (!totalResults) { |
| 95 | + return ( |
| 96 | + <div className="absolute top-full z-10 flex w-full items-center justify-center"> |
| 97 | + <NoResults searchTerm={searchTerm} /> |
| 98 | + </div> |
| 99 | + ); |
| 100 | + } |
47 | 101 | return (
|
48 |
| - <div className="relative pt-[--topbar-height]"> |
49 |
| - <PredictiveSearchForm> |
50 |
| - {({ fetchResults, inputRef }) => ( |
51 |
| - <div className="mx-auto w-full max-w-[560px] p-6"> |
52 |
| - <Input |
53 |
| - name="q" |
54 |
| - type="search" |
55 |
| - onChange={fetchResults} |
56 |
| - onFocus={fetchResults} |
57 |
| - onClear={fetchResults} |
58 |
| - placeholder="Enter a keyword" |
59 |
| - ref={inputRef} |
60 |
| - autoComplete="off" |
61 |
| - prefixElement={ |
62 |
| - <MagnifyingGlass className="h-5 w-5 shrink-0 text-gray-500" /> |
63 |
| - } |
64 |
| - autoFocus={true} |
65 |
| - /> |
| 102 | + <div className="absolute left-1/2 top-full z-10 flex w-fit -translate-x-1/2 items-center justify-center"> |
| 103 | + <div className="grid w-screen min-w-[430px] max-w-[720px] grid-cols-1 gap-6 bg-[--color-header-bg] p-6 lg:grid-cols-[1fr_2fr] max-h-[80vh] overflow-y-auto"> |
| 104 | + <div className="space-y-8"> |
| 105 | + <div className="flex flex-col gap-4 divide-y divide-line"> |
| 106 | + <PredictiveSearchResult type="queries" items={queries?.items} /> |
| 107 | + </div> |
| 108 | + <div className="flex flex-col gap-4"> |
| 109 | + <PredictiveSearchResult type="articles" items={articles?.items} /> |
66 | 110 | </div>
|
67 |
| - )} |
68 |
| - </PredictiveSearchForm> |
69 |
| - <PredictiveSearchResults /> |
| 111 | + </div> |
| 112 | + <div className="space-y-6"> |
| 113 | + <PredictiveSearchResult |
| 114 | + type="products" |
| 115 | + items={products?.items?.slice(0, 5)} |
| 116 | + /> |
| 117 | + {searchTerm.current && ( |
| 118 | + <div> |
| 119 | + <Link |
| 120 | + to={`/search?q=${searchTerm.current}`} |
| 121 | + variant="underline" |
| 122 | + className="flex items-center gap-2 w-fit" |
| 123 | + > |
| 124 | + <span>View all results</span> |
| 125 | + <ArrowRight className="w-4 h-4" /> |
| 126 | + </Link> |
| 127 | + </div> |
| 128 | + )} |
| 129 | + </div> |
| 130 | + </div> |
70 | 131 | </div>
|
71 | 132 | );
|
72 | 133 | }
|
| 134 | + |
| 135 | +function NoResults({ |
| 136 | + searchTerm, |
| 137 | +}: { |
| 138 | + searchTerm: MutableRefObject<string>; |
| 139 | +}) { |
| 140 | + if (!searchTerm.current) { |
| 141 | + return null; |
| 142 | + } |
| 143 | + return ( |
| 144 | + <p className="w-[640px] shadow-header bg-background p-6"> |
| 145 | + No results found for <q>{searchTerm.current}</q> |
| 146 | + </p> |
| 147 | + ); |
| 148 | +} |
0 commit comments