|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { locationService } from "../services";
|
|
|
|
import { useAppSelector } from "../store";
|
|
|
|
import { memoSpecialTypes } from "../helpers/filter";
|
|
|
|
import Icon from "./Icon";
|
|
|
|
import "../less/search-bar.less";
|
|
|
|
|
|
|
|
const SearchBar = () => {
|
|
|
|
const { t } = useTranslation();
|
|
|
|
const memoType = useAppSelector((state) => state.location.query?.type);
|
|
|
|
|
|
|
|
const handleMemoTypeItemClick = (type: MemoSpecType | undefined) => {
|
|
|
|
const { type: prevType } = locationService.getState().query ?? {};
|
|
|
|
if (type === prevType) {
|
|
|
|
type = undefined;
|
|
|
|
}
|
|
|
|
locationService.setMemoTypeQuery(type);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleTextQueryInput = (event: React.FormEvent<HTMLInputElement>) => {
|
|
|
|
const text = event.currentTarget.value;
|
|
|
|
locationService.setTextQuery(text);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="search-bar-container">
|
|
|
|
<div className="search-bar-inputer">
|
|
|
|
<Icon.Search className="icon-img" />
|
|
|
|
<input className="text-input" type="text" placeholder="" onChange={handleTextQueryInput} />
|
|
|
|
</div>
|
|
|
|
<div className="quickly-action-wrapper">
|
|
|
|
<div className="quickly-action-container">
|
|
|
|
<p className="title-text">{t("search.quickly-filter").toUpperCase()}</p>
|
|
|
|
<div className="section-container types-container">
|
|
|
|
<span className="section-text">{t("common.type").toUpperCase()}:</span>
|
|
|
|
<div className="values-container">
|
|
|
|
{memoSpecialTypes.map((type, idx) => {
|
|
|
|
return (
|
|
|
|
<div key={type.value}>
|
|
|
|
<span
|
|
|
|
className={`type-item ${memoType === type.value ? "selected" : ""}`}
|
|
|
|
onClick={() => {
|
|
|
|
handleMemoTypeItemClick(type.value as MemoSpecType);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{t(type.text)}
|
|
|
|
</span>
|
|
|
|
{idx + 1 < memoSpecialTypes.length ? <span className="split-text">/</span> : null}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default SearchBar;
|