diff --git a/.changeset/sour-trainers-confess.md b/.changeset/sour-trainers-confess.md new file mode 100644 index 000000000..ca1b524bf --- /dev/null +++ b/.changeset/sour-trainers-confess.md @@ -0,0 +1,5 @@ +--- +"nostrudel": minor +--- + +Add option to disable keyboard shortcuts diff --git a/src/components/keyboard-shortcut.tsx b/src/components/keyboard-shortcut.tsx index 22445a35c..d5e8ad143 100644 --- a/src/components/keyboard-shortcut.tsx +++ b/src/components/keyboard-shortcut.tsx @@ -1,6 +1,8 @@ import { Code, CodeProps } from "@chakra-ui/react"; import { useRef } from "react"; import { useKeyPressEvent } from "react-use"; +import useSubject from "../hooks/use-subject"; +import localSettings from "../services/local-settings"; export default function KeyboardShortcut({ letter, @@ -12,10 +14,13 @@ export default function KeyboardShortcut({ requireMeta?: boolean; onPress?: (e: KeyboardEvent) => void; } & Omit) { + const enableKeyboardShortcuts = useSubject(localSettings.enableKeyboardShortcuts); const ref = useRef(null); useKeyPressEvent( (e) => (requireMeta ? e.ctrlKey || e.metaKey : true) && e.key === letter, (e) => { + if (!enableKeyboardShortcuts) return; + // ignore if the user is focused on an input if (document.activeElement instanceof HTMLInputElement || document.activeElement instanceof HTMLTextAreaElement) { return; @@ -31,6 +36,8 @@ export default function KeyboardShortcut({ }, ); + if (!enableKeyboardShortcuts) return null; + return ( {requireMeta ? (navigator.userAgent.includes("Macintosh") ? "⌘" : "^") : ""} diff --git a/src/services/local-settings.ts b/src/services/local-settings.ts index 5c57dc6b7..748646834 100644 --- a/src/services/local-settings.ts +++ b/src/services/local-settings.ts @@ -49,6 +49,7 @@ const addClientTag = new BooleanLocalStorageEntry("add-client-tag", false); // performance const verifyEventMethod = new LocalStorageEntry("verify-event-method", "wasm"); // wasm, internal, none +const enableKeyboardShortcuts = new BooleanLocalStorageEntry("enable-keyboard-shortcuts", true); const localSettings = { idbMaxEvents, @@ -60,6 +61,7 @@ const localSettings = { webRtcRecentConnections, addClientTag, verifyEventMethod, + enableKeyboardShortcuts, }; if (import.meta.env.DEV) { diff --git a/src/views/settings/performance/index.tsx b/src/views/settings/performance/index.tsx index c64d1349b..8f0c54079 100644 --- a/src/views/settings/performance/index.tsx +++ b/src/views/settings/performance/index.tsx @@ -46,6 +46,7 @@ function VerifyEventSettings() { export default function PerformanceSettings() { const { register, submit, formState } = useSettingsForm(); + const enableKeyboardShortcuts = useSubject(localSettings.enableKeyboardShortcuts); return ( @@ -104,6 +105,18 @@ export default function PerformanceSettings() { Enabled: Show reactions on notes + + + + Enable keyboard shortcuts + + localSettings.enableKeyboardShortcuts.next(e.currentTarget.checked)} + /> + +