mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 22:42:33 +00:00
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
'use client';
|
|
|
|
import { MagnifyingGlassIcon } from '@heroicons/react/24/outline';
|
|
import Form from 'next/form';
|
|
import { useSearchParams } from 'next/navigation';
|
|
|
|
export default function Search() {
|
|
const searchParams = useSearchParams();
|
|
|
|
return (
|
|
<Form action="/search" className="w-max-[550px] relative w-full lg:w-80 xl:w-full">
|
|
<input
|
|
key={searchParams?.get('q')}
|
|
type="text"
|
|
name="q"
|
|
placeholder="Search for products..."
|
|
autoComplete="off"
|
|
defaultValue={searchParams?.get('q') || ''}
|
|
className="text-md w-full rounded-lg border bg-white px-4 py-2 text-black placeholder:text-neutral-500 md:text-sm dark:border-neutral-800 dark:bg-transparent dark:text-white dark:placeholder:text-neutral-400"
|
|
/>
|
|
<div className="absolute right-0 top-0 mr-3 flex h-full items-center">
|
|
<MagnifyingGlassIcon className="h-4" />
|
|
</div>
|
|
</Form>
|
|
);
|
|
}
|
|
|
|
export function SearchSkeleton() {
|
|
return (
|
|
<form className="w-max-[550px] relative w-full lg:w-80 xl:w-full">
|
|
<input
|
|
placeholder="Search for products..."
|
|
className="w-full rounded-lg border bg-white px-4 py-2 text-sm text-black placeholder:text-neutral-500 dark:border-neutral-800 dark:bg-transparent dark:text-white dark:placeholder:text-neutral-400"
|
|
/>
|
|
<div className="absolute right-0 top-0 mr-3 flex h-full items-center">
|
|
<MagnifyingGlassIcon className="h-4" />
|
|
</div>
|
|
</form>
|
|
);
|
|
}
|