mirror of
https://github.com/usememos/memos.git
synced 2025-04-04 04:41:10 +02:00
feat: press cmd+f to focus on the search bar (#800)
This commit is contained in:
parent
40f39fd66c
commit
358a5c0ed9
@ -1,6 +1,6 @@
|
|||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState, useRef } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { useLocationStore } from "../store/module";
|
import { useLocationStore, useDialogStore } from "../store/module";
|
||||||
import { memoSpecialTypes } from "../helpers/filter";
|
import { memoSpecialTypes } from "../helpers/filter";
|
||||||
import Icon from "./Icon";
|
import Icon from "./Icon";
|
||||||
import "../less/search-bar.less";
|
import "../less/search-bar.less";
|
||||||
@ -8,8 +8,31 @@ import "../less/search-bar.less";
|
|||||||
const SearchBar = () => {
|
const SearchBar = () => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const locationStore = useLocationStore();
|
const locationStore = useLocationStore();
|
||||||
|
const dialogStore = useDialogStore();
|
||||||
const memoType = locationStore.state.query.type;
|
const memoType = locationStore.state.query.type;
|
||||||
const [queryText, setQueryText] = useState("");
|
const [queryText, setQueryText] = useState("");
|
||||||
|
const inputRef = useRef<HTMLInputElement>(null);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const handleKeyDown = (event: KeyboardEvent) => {
|
||||||
|
if (!inputRef.current) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (dialogStore.getState().dialogStack.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const isMetaKey = event.ctrlKey || event.metaKey;
|
||||||
|
if (isMetaKey && event.key === "f") {
|
||||||
|
event.preventDefault();
|
||||||
|
inputRef.current.focus();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
document.body.addEventListener("keydown", handleKeyDown);
|
||||||
|
return () => {
|
||||||
|
document.body.removeEventListener("keydown", handleKeyDown);
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const text = locationStore.getState().query.text;
|
const text = locationStore.getState().query.text;
|
||||||
@ -39,6 +62,7 @@ const SearchBar = () => {
|
|||||||
autoComplete="new-password"
|
autoComplete="new-password"
|
||||||
type="text"
|
type="text"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
|
ref={inputRef}
|
||||||
value={queryText}
|
value={queryText}
|
||||||
onChange={handleTextQueryInput}
|
onChange={handleTextQueryInput}
|
||||||
/>
|
/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user