mirror of
https://github.com/vercel/commerce.git
synced 2025-09-03 06:20:15 +00:00
.vscode
app
components
cart
grid
icons
layout
navbar
index.tsx
mobile-menu.tsx
search.tsx
search
footer-menu.tsx
footer.tsx
product-grid-items.tsx
product
carousel.tsx
label.tsx
loading-dots.tsx
logo-square.tsx
opengraph-image.tsx
price.tsx
prose.tsx
welcome-toast.tsx
fonts
lib
.env.example
.gitignore
README.md
license.md
next.config.ts
package.json
pnpm-lock.yaml
postcss.config.mjs
tsconfig.json
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>
|
|
);
|
|
}
|