https://github.com/chassis/keyhandler
Handle keyboard shortcuts in your React components, and automatically show hints to users.
https://github.com/chassis/keyhandler
Last synced: 3 months ago
JSON representation
Handle keyboard shortcuts in your React components, and automatically show hints to users.
- Host: GitHub
- URL: https://github.com/chassis/keyhandler
- Owner: Chassis
- Created: 2019-09-08T13:05:49.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T04:50:36.000Z (over 3 years ago)
- Last Synced: 2025-04-01T05:02:25.152Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://chassis.github.io/keyhandler/
- Size: 2.14 MB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Keyhandler
Handle keyboard shortcuts in your React components, and automatically show hints to users.

**[View the demo →](https://chassis.github.io/keyhandler/)**
[](https://www.npmjs.com/package/@chassis-wp/keyhandler)
## Install
```bash
# With yarn:
yarn add @chassis-wp/keyhandler
# With npm:
npm install --save @chassis-wp/keyhandler
```
## Usage
To use Keyhandler, first render the Keyhandler provider at the top-level of your tree. This provider should be rendered above any Keyhandler components.
```jsx
import { Provider } from '@chassis-wp/keyhandler';
ReactDOM.render(
,
document.getElementById( 'root' )
);
```
Then, wherever you want to register a keyboard shortcut, render a KeyHandler component.
```jsx
import React from 'react';
import KeyHandler from '@chassis-wp/keyhandler';
function SaveButton( props ) {
return (
Save
);
}
```
### Shortcuts
The shortcut prop specifies the combination of keyboard characters to press in order to trigger your callback.
Shortcuts are specified as a string, with optional modifiers separated by plus (`+`) characters. `cmd`, `ctrl`, and `shift` are supported as modifiers; `alt` is not supported due to inconsistent behaviour across platforms.
Symbols are supported, but note that the `shift` modifier has no effect, as many keyboards place multiple symbols on the same physical key; instead, use the character directly (e.g. `?` instead of `shift+/`).
The following special keys are also supported:
* `escape` (or `esc`)
* `enter`
* `delete`
* `backspace`
* `space`
* `up`, `down`, `left`, `right`
Sequences are not currently supported.
### Hints
Keyhandler by default renders hints when the meta key (Cmd on macOS) is held.
The hint is rendered into the tree at the position of the KeyHandler component, positioned at the centre of the nearest positioning parent (i.e. parent with `position: relative/absolute/etc`).
To disable this behaviour on a specific handler, set the `disableHint` prop to `true`:
```jsx
```
To disable this behaviour globally, set the `disableHints` prop on the provider to `true`:
```jsx
```
## Licence
This code is licensed under the MIT license.
Copyright (c) 2019-present Ryan McCue, Bronson Quick
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.