import React, { FormEvent, useState } from "react"; import { useLocation, useNavigate } from "@remix-run/react"; import { Select, SelectContent, SelectTrigger, SelectItem, SelectValue, } from "./ui/select"; import { SitesCombobox } from "./SitesCombobox"; import { FILTER_TIMES } from "@/utils"; import { SiteList } from "@/types.js"; type Props = { value: string; placeholder?: string; className?: string; filters?: { sites: { value: string; label: string }[]; }; sites: SiteList; }; const SimplifiedSearchBar = ({ value: initialValue, placeholder, filters, className, sites, }: Props) => { let navigate = useNavigate(); let location = useLocation(); const [value, setValue] = useState(initialValue); const handleSearch = (event: FormEvent) => { event.preventDefault(); const newSearchParams = new URLSearchParams(location.search); if (value) { newSearchParams.set("q", value); } else { newSearchParams.delete("q"); } navigate(`${location.pathname}?${newSearchParams}`); }; return (
results:
setValue(e.target.value)} size={value.length} />
{/* Dropdown component should be here */} {/* Dropdown component should be here */}
); }; export default SimplifiedSearchBar;