mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-07 13:38:15 -08:00
* wip * chore: update counts to allow unix timeframe * feat: add db functions for counting new items * wip: endpoint working * wip * wip: initial ui done * add header, adjust ui * add time listened toggle * fix layout, year param * param fixes
60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { Modal } from "./Modal";
|
|
import { search, type SearchResponse } from "api/api";
|
|
import SearchResults from "../SearchResults";
|
|
|
|
interface Props {
|
|
open: boolean;
|
|
setOpen: Function;
|
|
}
|
|
|
|
export default function SearchModal({ open, setOpen }: Props) {
|
|
const [query, setQuery] = useState("");
|
|
const [data, setData] = useState<SearchResponse>();
|
|
const [debouncedQuery, setDebouncedQuery] = useState(query);
|
|
|
|
const closeSearchModal = () => {
|
|
setOpen(false);
|
|
setQuery("");
|
|
setData(undefined);
|
|
};
|
|
|
|
useEffect(() => {
|
|
const handler = setTimeout(() => {
|
|
setDebouncedQuery(query);
|
|
if (query === "") {
|
|
setData(undefined);
|
|
}
|
|
}, 300);
|
|
|
|
return () => {
|
|
clearTimeout(handler);
|
|
};
|
|
}, [query]);
|
|
|
|
useEffect(() => {
|
|
if (debouncedQuery) {
|
|
search(debouncedQuery).then((r) => {
|
|
setData(r);
|
|
});
|
|
}
|
|
}, [debouncedQuery]);
|
|
|
|
return (
|
|
<Modal isOpen={open} onClose={closeSearchModal}>
|
|
<h3>Search</h3>
|
|
<div className="flex flex-col items-center">
|
|
<input
|
|
type="text"
|
|
autoFocus
|
|
placeholder="Search for an artist, album, or track"
|
|
className="w-full mx-auto fg bg rounded p-2"
|
|
onChange={(e) => setQuery(e.target.value)}
|
|
/>
|
|
<div className="h-3/4 w-full">
|
|
<SearchResults data={data} onSelect={closeSearchModal} />
|
|
</div>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
}
|