movie-web/src/components/SearchBar.tsx

76 lines
2.1 KiB
TypeScript
Raw Normal View History

2022-03-06 13:43:32 +01:00
import { useState } from "react";
import { MWMediaType, MWQuery } from "providers";
2022-02-25 21:23:16 +01:00
import { DropdownButton } from "./buttons/DropdownButton";
2022-02-10 23:45:17 +01:00
import { Icons } from "./Icon";
2022-02-25 21:23:16 +01:00
import { TextInputControl } from "./text-inputs/TextInputControl";
2022-02-07 23:22:35 +01:00
export interface SearchBarProps {
2022-02-07 23:22:35 +01:00
buttonText?: string;
2022-02-10 23:45:17 +01:00
placeholder?: string;
2022-05-03 20:58:34 +02:00
onChange: (value: MWQuery, force: boolean) => void;
onUnFocus: () => void;
value: MWQuery;
2022-02-07 23:22:35 +01:00
}
export function SearchBarInput(props: SearchBarProps) {
2022-02-13 18:49:03 +01:00
const [dropdownOpen, setDropdownOpen] = useState(false);
function setSearch(value: string) {
2022-05-03 20:58:34 +02:00
props.onChange(
{
...props.value,
searchQuery: value,
},
false
);
}
function setType(type: string) {
2022-05-03 20:58:34 +02:00
props.onChange(
{
...props.value,
type: type as MWMediaType,
},
true
);
}
2022-02-13 18:49:03 +01:00
2022-02-07 23:22:35 +01:00
return (
2022-05-03 20:58:34 +02:00
<div className="flex flex-col items-center gap-4 rounded-[28px] bg-denim-300 px-4 py-4 transition-colors focus-within:bg-denim-400 hover:bg-denim-400 sm:flex-row sm:py-2 sm:pl-8 sm:pr-2">
2022-02-10 23:45:17 +01:00
<TextInputControl
2022-05-03 20:58:34 +02:00
onUnFocus={props.onUnFocus}
onChange={(val) => setSearch(val)}
value={props.value.searchQuery}
2022-05-03 20:58:34 +02:00
className="w-full flex-1 bg-transparent text-white placeholder-denim-700 focus:outline-none"
2022-02-10 23:45:17 +01:00
placeholder={props.placeholder}
/>
2022-02-13 18:49:03 +01:00
<DropdownButton
icon={Icons.SEARCH}
open={dropdownOpen}
setOpen={(val) => setDropdownOpen(val)}
selectedItem={props.value.type}
setSelectedItem={(val) => setType(val)}
2022-02-13 18:49:03 +01:00
options={[
{
id: MWMediaType.MOVIE,
2022-02-13 18:49:03 +01:00
name: "Movie",
icon: Icons.FILM,
},
{
id: MWMediaType.SERIES,
2022-02-13 18:49:03 +01:00
name: "Series",
icon: Icons.CLAPPER_BOARD,
},
2022-05-01 16:04:18 +02:00
// {
// id: MWMediaType.ANIME,
// name: "Anime",
// icon: Icons.DRAGON,
// },
2022-02-13 18:49:03 +01:00
]}
onClick={() => setDropdownOpen((old) => !old)}
>
2022-02-10 23:45:17 +01:00
{props.buttonText || "Search"}
2022-02-13 18:49:03 +01:00
</DropdownButton>
2022-02-07 23:22:35 +01:00
</div>
2022-02-10 23:45:17 +01:00
);
2022-02-07 23:22:35 +01:00
}