mirror of
https://github.com/drawdb-io/drawdb.git
synced 2026-02-12 02:00:40 +08:00
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
import { useState } from "react";
|
|
import { useAreas } from "../../../hooks";
|
|
import { AutoComplete } from "@douyinfe/semi-ui";
|
|
import { IconSearch } from "@douyinfe/semi-icons";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export default function SearchBar() {
|
|
const { areas } = useAreas();
|
|
const [searchText, setSearchText] = useState("");
|
|
const { t } = useTranslation();
|
|
|
|
const [filteredResult, setFilteredResult] = useState(
|
|
areas.map((t) => t.name),
|
|
);
|
|
|
|
const handleStringSearch = (value) => {
|
|
setFilteredResult(
|
|
areas.map((t) => t.name).filter((i) => i.includes(value)),
|
|
);
|
|
};
|
|
|
|
return (
|
|
<AutoComplete
|
|
data={filteredResult}
|
|
value={searchText}
|
|
showClear
|
|
prefix={<IconSearch />}
|
|
placeholder={t("search")}
|
|
emptyContent={<div className="p-3 popover-theme">{t("not_found")}</div>}
|
|
onSearch={(v) => handleStringSearch(v)}
|
|
onChange={(v) => setSearchText(v)}
|
|
onSelect={(v) => {
|
|
const { id } = areas.find((t) => t.name === v);
|
|
document
|
|
.getElementById(`scroll_area_${id}`)
|
|
.scrollIntoView({ behavior: "smooth" });
|
|
}}
|
|
className="w-full"
|
|
/>
|
|
);
|
|
}
|