Unverified Commit 05810e78 authored by memoclaw's avatar memoclaw Committed by GitHub

fix(memo-editor): scope Cmd+Enter save to the active editor (#5745)

Co-authored-by: 's avatarmemoclaw <265580040+memoclaw@users.noreply.github.com>
parent e0334cf0
......@@ -5,16 +5,29 @@ interface UseKeyboardOptions {
onSave: () => void;
}
export const useKeyboard = (_editorRef: React.RefObject<EditorRefActions | null>, options: UseKeyboardOptions) => {
export const useKeyboard = (editorRef: React.RefObject<EditorRefActions | null>, options: UseKeyboardOptions) => {
useEffect(() => {
const handleKeyDown = (event: KeyboardEvent) => {
if ((event.metaKey || event.ctrlKey) && event.key === "Enter") {
if (!(event.metaKey || event.ctrlKey) || event.key !== "Enter") {
return;
}
const editor = editorRef.current?.getEditor();
if (!editor) {
return;
}
const activeElement = document.activeElement;
const target = event.target;
if (activeElement !== editor && target !== editor) {
return;
}
event.preventDefault();
options.onSave();
}
};
window.addEventListener("keydown", handleKeyDown);
return () => window.removeEventListener("keydown", handleKeyDown);
}, [options]);
}, [editorRef, options]);
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment