Spaces:
Build error
Build error
File size: 1,752 Bytes
caae15f fb3baa1 caae15f 7d9d30d caae15f fdaf912 b4297ca caae15f b4297ca caae15f b4297ca caae15f fdaf912 b4297ca caae15f |
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 |
// SearchInput.tsx
import { Button } from "@/app/components/ui/button";
import { Input } from "@/app/components/ui/input";
import { Search } from "lucide-react";
import { SearchHandler } from "@/app/components/ui/search/search.interface";
export default function SearchInput(
props: Pick<SearchHandler, "collSelectedId" | "collSelectedName" | "isLoading" | "results" | "onInputChange" | "onSearchSubmit" | "query">
) {
return (
<form
onSubmit={props.onSearchSubmit}
className="w-full items-start justify-between gap-4 rounded-xl bg-white dark:bg-zinc-700/30 p-4 shadow-xl"
>
<h2 className="text-lg text-center font-semibold mb-4">Searching in {props.collSelectedName}</h2>
<div className="flex w-full items-start justify-between gap-4">
<Input
autoFocus
name="query"
placeholder="Enter a text to search..."
value={props.query}
onChange={props.onInputChange}
className="flex-1 bg-white dark:bg-zinc-500/30"
/>
<Button type="submit" disabled={props.isLoading} className="hidden md:flex items-center transition duration-300 ease-in-out transform hover:scale-110">
Search
</Button>
<Button type="submit" disabled={props.isLoading} className="md:hidden"> {/* Hide on larger screens */}
<Search className="h-5 w-5" />
</Button>
</div>
<p className="text-center text-sm text-gray-400 mt-2">Smart Retrieval may not be 100% accurate. Consider checking important information.</p>
</form >
);
};
|