use-hotkeys
v1.1.0
Published
![npm](https://img.shields.io/npm/dt/use-hotkeys.svg) ![npm](https://img.shields.io/npm/v/use-hotkeys.svg) ![NpmLicense](https://img.shields.io/npm/l/use-hotkeys.svg)
Downloads
23
Readme
Use Hotkeys
React wrapper around Hotkeys.js.
╭┈┈╮ ╭┈┈╮ ╭┈┈╮
┆ ├┈┈..┈┈┈┈┈.┆ └┈╮┆ ├┈┈..┈┈┈┈┈..┈┈.┈┈..┈┈┈┈┈.
┆ ┆┆ □ ┆┆ ┈┤┆ < ┆ -__┘┆ ┆ ┆┆__ ┈┈┤
╰┈┈┴┈┈╯╰┈┈┈┈┈╯╰┈┈┈┈╯╰┈┈┴┈┈╯╰┈┈┈┈┈╯╰┈┈┈ ┆╰┈┈┈┈┈╯
╰┈┈┈┈┈╯
Use Hotkeys - React hook that listen to keyboard events, defining and dispatching keyboard shortcuts.
Read about Hooks feature.
Installation
Note: React 16.8+ is required for Hooks.
With npm
npm i use-hotkeys
Or with yarn
yarn add use-hotkeys
Usage
import useHotkeys from 'use-hotkeys';
const Counter = () => {
const [count, setCount] = React.useState(0);
useHotkeys(
(key, event, handle) => {
switch (key) {
case 'up':
return setCount(count + 1);
case 'down':
return setCount(count - 1);
default:
return setCount(count);
}
},
['up', 'down'],
[count]
);
return <div>{count}</div>;
};