React hook for using keyboard shortcuts in components. This is a hook version for the hotkeys package.
https://johannesklauss.github.io/react-hotkeys-hook/
npm install react-hotkeys-hook
or
yarn add react-hotkeys-hook
Make sure that you have at least version 16.8 of react
and react-dom
installed, or otherwise hooks won't work for you.
export const ExampleComponent = () => {
const [count, setCount] = useState(0);
useHotkeys('ctrl+k', () => setCount(prevCount => prevCount + 1));
return (
<p>
Pressed {count} times.
</p>
);
};
The hook takes care of all the binding and unbinding for you. As soon as the component mounts into the DOM, the key stroke will be listened to. When the component unmounts it will stop listening.
useHotkeys(keys: string, callback: (event: KeyboardEvent, handler: HotkeysEvent) => void, options: Options = {}, deps: any[] = [])
keys: string
: Here you can set the key strokes you want the hook to listen to. You can use single or multiple keys, modifier combination, etc. See this section on the hotkeys documentation for more info.callback: (event: KeyboardEvent, handler: HotkeysEvent) => void
: Gets executed when the defined keystroke gets hit by the user. Important: Since version 1.5.0 this callback gets memoised inside the hook. So you don't have to do this anymore by yourself.options: Options = {}
filter: (event: KeyboardEvent): boolean
is used to filter if a callback gets triggered depending on the keyboard event. Breaking Change in3.0.0
! Prior to version3.0.0
the filter settings was one global setting that applied to every hook. Since3.0.0
this behavior changed. Thefilter
option is now locally scoped to each call ofuseHotkeys
.filterPreventDefault: boolean
is used to prevent/allow the default browser behavior for the keystroke when the filter return false (default value:true
)enableOnTags: string[]
is used to enable listening to hotkeys in form fields. Available values areINPUT
,TEXTAREA
andSELECT
.splitKey: string
is used to change the splitting character inside the keys argument. Default is+
, but if you want to listen to the+
character, you can setsplitKey
to i.e.-
and listen forctrl-+
keyup: boolean
Determine if you want to listen on the keyup eventkeydown: boolean
Determine if want to listen on the keydown eventenabled: boolean
is used to prevent installation of the hotkey when set to false (default value:true
)
deps: any[] = []
: The dependency array that gets appended to the memoisation of the callback. Here you define the inner dependencies of your callback. If for example your callback actions depend on a referentially unstable value or a value that will change over time, you should add this value to your deps array. Since most of the time your callback won't depend on any unstable callbacks or changing values over time you can leave this value alone since it will be set to an empty array by default. See the Memoisation section to learn more and see an example where you have to set this array.
The useIsHotkeyPressed
hook just returns the hotkeys.isPressed
function and works exactly the same.
const isPressed = useIsHotkeyPressed();
isPressed('return'); // Returns true if Return key is pressed down.
Open up an issue or pull request and participate.
Checkout this repo, run yarn
or npm i
and then run the docz:dev
script.
You can use the docs/useHotkeys.mdx
to test the behavior of the hook. It directly imports the
src/index.ts
file and transpiles it automatically. So you don't have to worry about. For more info
on .mdx files, check out the docz documentation: https://www.docz.site/docs/writing-mdx
- Johannes Klauss
MIT License.