mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
feat: show active panel when searchBar is in focus (#806)
* feat: Show active panel when searchBar is in focus * refactor: rename
This commit is contained in:
@@ -12,6 +12,7 @@ const SearchBar = () => {
|
||||
const memoType = locationStore.state.query.type;
|
||||
const [queryText, setQueryText] = useState("");
|
||||
const inputRef = useRef<HTMLInputElement>(null);
|
||||
const [isFocus, setIsFocus] = useState(false);
|
||||
|
||||
useEffect(() => {
|
||||
const handleKeyDown = (event: KeyboardEvent) => {
|
||||
@@ -53,8 +54,16 @@ const SearchBar = () => {
|
||||
locationStore.setTextQuery(text.length === 0 ? undefined : text);
|
||||
};
|
||||
|
||||
const handleFocus = () => {
|
||||
setIsFocus(true);
|
||||
};
|
||||
|
||||
const handleBlur = () => {
|
||||
setIsFocus(false);
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="search-bar-container">
|
||||
<div className={`search-bar-container ${isFocus ? "is-focus" : ""}`}>
|
||||
<div className="search-bar-inputer">
|
||||
<Icon.Search className="icon-img" />
|
||||
<input
|
||||
@@ -65,6 +74,8 @@ const SearchBar = () => {
|
||||
ref={inputRef}
|
||||
value={queryText}
|
||||
onChange={handleTextQueryInput}
|
||||
onFocus={handleFocus}
|
||||
onBlur={handleBlur}
|
||||
/>
|
||||
</div>
|
||||
<div className="quickly-action-wrapper">
|
||||
|
@@ -8,6 +8,12 @@
|
||||
}
|
||||
}
|
||||
|
||||
&.is-focus {
|
||||
> .quickly-action-wrapper {
|
||||
@apply flex;
|
||||
}
|
||||
}
|
||||
|
||||
> .search-bar-inputer {
|
||||
@apply h-9 flex flex-row justify-start items-center w-full py-2 px-3 sm:px-4 rounded-full sm:rounded-lg bg-zinc-200 dark:bg-zinc-700;
|
||||
|
||||
|
Reference in New Issue
Block a user