Socket
Socket
Sign inDemoInstall

@infinium/react-keyboard-event-handler

Package Overview
Dependencies
6
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@infinium/react-keyboard-event-handler

A React component for handling keyboard events.


Version published
Maintainers
1
Weekly downloads
726
decreased by-32.28%

Weekly downloads

Readme

Source

react-keyboard-event-handler [Fork]

PLEASE NOTE: This project is a fork of this project by the same name. This fork only fixes the peer dependency/React versioning issues. We do not take any credit whatsoever for any of the code, all of the credit goes to the original creator, linsight

A React component for handling keyboard events (keyup, keydown and keypress*).

Main features

  1. Supports combined keys ( e.g. CTRL + S and even CTRL + SHIFT + S );
  2. Supports handling modifier key alone (e.g. handle pressing 'ctrl' key);
  3. Supports almost all keys including function keys (e.g. 'F1');
  4. Provides easy-to-use and consistent key names to free you from dealing with numeric key codes and/or browser compatibilities;
  5. Supports key alias such 'alphanumeric' and 'all' as short cuts for handling multiple keys;
  6. Supports multiple handler instances and provides an easy way to control enable/disable status for each handler via props isDisabled and isExclusive.

Live demo

demo/dist/index.html

Installation

npm install react-keyboard-event-handler

Usage

Handling global key events

By default, KeyboardEventHandler only handles global key events sourced from document.body. That is, key events fired without any focused element (event.target). It will not handle key events sourced from form controls (e.g. input ), links or any tab-enabled(focusable) elements (e.g. elements with tabIndex attribute).

Web browsers come with default keyboard behaviors for tab-enabled elements. It may be more appropriate to let the browser do its job in most cases.

import KeyboardEventHandler from 'react-keyboard-event-handler';

const ComponentA = (props) => (<div>
  <div>key detected: {props.eventKey}</div>
  <KeyboardEventHandler
    handleKeys={['a', 'b', 'c']}
    onKeyEvent={(key, e) => console.log(`do something upon keydown event of ${key}`)} />
</div>);

You can change this default, however, by setting handleFocusableElements prop to true;

Handling key events sourced from children elements

If KeyboardEventHandler wraps around any children elements, it will handle and ONLY handle key events sourced from its descendant elements, including any form controls, links or tab-enabled elements.

import KeyboardEventHandler from 'react-keyboard-event-handler';

const ComponentA = (props) => (<div>
  <div>key detected: {props.eventKey}</div>
  <KeyboardEventHandler
    handleKeys={['a', 'b', 'c']}
    onKeyEvent={(key, e) => console.log(`do something upon keydown event of ${key}`)} >
    <input type="text" placeholder="Key events will be handled"/>
    <a href="#" >Key events from focusable element will be handled</a>
  </KeyboardEventHandler>
</div>);

For form control elements, React provides with onKeyDown, onKeyPress and onKeyUp synthetic events. However, you may find it easier to work with the key names/alias provided by KeyboardEventHandler.

API summary

PropertyTypeDefaultDescription
handleKeysArray[]An array of keys this handler should handle.
There are also some handy alias for keys, see bellow for details. e.g. ['a', 'b', 'numeric']
handleEventTypeStringkeydownKeyboard event type.
This can be 'keyup', 'keydown' or 'keypress'.
*Note: 'keypress' event only support printable keys. i.e. no support for modifier keys or 'tab', 'enter' etc.
handleFocusableElementsBoolfalseBy default, handler only handles key events sourced from doucment.body. When this props is set to true, it will also handle key events from all focusable elements. This props only apply when there are no children.
isDisabledBooleanfalseEnable/Disable handling keyboard events
isExclusiveBooleanfalseWhen set to true, all other handler instances are suspended.
This is useful for temporary disabling all other keyboard event handlers.
For example, for suppressing any other handlers on a page when a modal opens with its keyboard event handling.
onKeyEventfunction() => null

A callback function to call when the handler detects a matched key event.

The signature of the callback function is:
function(key, event) { ... }

key
The key name matches the current keyboard event.
event
The native keyboard event. e.g. you can use event.keyCode to get the numeric key code. This is useful for handling keys that are not supported (i.e. does not have a key name defined for the keys).
childrenAnynullIf KeyboardEventHandler wraps around any children elements, it will handle and ONLY handle key events sourced from its descendant elements, including any form controls, links or tab-enabled elements. handleFocusableElements has no effect when children exists.

Key names and key alias

The handleKeys prop accepts an array of key names. Key names and key alias free developers from dealing with numeric char codes and/or key codes and browser compatibility issues with KeyboardEvent.code and KeyboardEvent.key. (Ref: JavaScript Madness: Keyboard Events)

  • Key names are in LOWER CASE for consistency. handleKeys=['a'] will still handle key event for 'A' with caps lock on.
  • To handle combined keys like shift and a, use key names in the format of shift+a;
  • You can also use key name aliases like 'numbers' or 'alphanumeric'.

Common keys

You can handle one or more common keys by using an array of their names.

<KeyboardEventHandler
    handleKeys={['a']}
    onKeyEvent={(key, e) => console.log('only handle "a" key')} />

Key nameDescription / key code
a, b, ... zletter keys, 65 ~ 90 and 97 ~ 112
0, 1, ... 9number keys 48 ~ 57 and 41 , 96 ~ 105
f1, f2, ... f19function keys 112 ~ 130
backspace8
del/delete46
ins/insert45
tab9
enter/return13
esc27
space32
pageup33
pagedown34
end35
home36
left37
up38
right39
down40
shift16
ctrl17
alt18
cap20
numNum Lock, 144
clear12
metaMeta, Win, Window, Cmd, Command, 91
;186, 59
=187, 61
,188, 44
-/minus189, 45, 173, 109
.190, 110
/191, 111
`192
[219
\220
]221
*106
+/plus107
+/plus107
'/quote222

Note: Native keyboard events with modifier key(s) will NOT match common keys in handleKeys. e.g. handleKeys=['a'] will not handler events with combined keys 'Ctrl' and 'a'. To match native keyboard event with modifiers, read the next section.

Modifier keys

You can handle modifier keys combined with a common key by using key name in the format of ctrl+a or ctrl+shift+a. To use the + common key with modifier keys, use the alias key 'plus'. e.g. ctrl+plus.

<KeyboardEventHandler
    handleKeys={['ctrl+a']}
    onKeyEvent={(key, e) => console.log('only handle "a" key with control key pressed')} />

Key nameDescription
ctrlcontrol, ctrl key
shiftshift key
metameta, cmd, Window, command key
altoption, alt key

Tips:

  • Modifier keys only work well with common keys a-z. OS and/or browsers use other combinations for other purposes. For example, cmd + right is used as the shortcut to navigate 'forward' in some browsers.
  • Modifier keys are themself common keys. You can handle key event of single 'ctrl' key with handleKeys=['ctrl'];

Key set alias

Key set alias provide any easy way to specify common key sets. It is useful when you want to handle multiple keys and put all handling logic for each key inside the handler callback function.

<KeyboardEventHandler
    handleKeys={['numeric']}
    onKeyEvent={(key, e) => console.log('only handle number key events')} />

AliasKeysDescription
'alphabetic''a', 'b', ...'z'26 letter keys
'numeric''0', '1', ....'910 number keys
'alphanumeric''a'...'z', '0'...'9'36 alphanumeric keys
'function''f1'...'f19'19 Fn keys
'all'n/aAll keyboard events. If a key event does not match any common keys defined above, the key parameter to the callback function will have the value of 'other'. You can use the second parameter (the raw key event object) to implement you own key handling logic.

Note:

  1. Alias keys are aliases to a list of common keys. Expect the same behavior as if the respective array of common key names is in use.
  2. When a keyboard event matches, the first (key) parameter to the callback function will be the matched lowercase common key name. e.g. a for alias numeric.
  3. Alias key names do not work with modifiers. e.g. handleKeys=['ctrl+numeric'] // doesn't work
  4. You can mix alias with common keys. e.g. handleKeys=['numeric', 'a', 'enter', 'ctrl+b']

About exclusive handlers

For example, in an app with a list of products, you could have a handler for navigating (highlighting) the products with the up and down keys. Upon selecting (or hitting the 'enter' key on) a product, a modal pops up.

Within the modal is a list of options for the selected product. Another key handler can be used inside the modal using for navigating the options with the up and down keys, too.

However, the key handler for the product list should be first disabled (i.e. isDisabled={true}). Otherwise, the user will be navigating the product options in the modal and the product list in the background at the same time.

There could be other key handlers in your app, they all should be disabled to avoid unexpected results.

The isExclusive prop can be helpful in this situation. When a handler set to isExclusive, all other key handlers will be suspended.

In the above example, the key handler in the modal could set to be isExclusive. When the modal opens, all other handlers will be temporarily suspended. When the modal is closed/unmounted, they will be working again.

If more than one enabled handlers are isExclusive, the most recently mounted/assigned handler wins.

Technically, exclusive handlers are put into a stack upon mounted or when changed from non-exclusive to exclusive; Exclusive handlers are removed from the stack upon unmounted or disabled or changed to non-exclusive. The one left on the top of the stack is the one only exclusive handler.

About Higher Order Component

I believe this is not a good use case of HoC. I found it hard to come up with a meaningful use case for passing a keyboard event object or the relevant key to a component.

However, if you have a different view on this, please create an issue/request on GitHub.

Testing

Limitation

Unfortunately, there's no good way for testing keyboard events with Enzyme when using this react component.

Enzyme has two main limitations (ref: https://github.com/airbnb/enzyme/blob/master/docs/future.md):

  1. Event simulation is limited for Shallow rendering. But this component needs componentDidMount for registering keyboard events;

  2. Event propagation is not supported. However, Key events on wrapped components are bubbled up and handled by at the document level by this component.

Therefore, when testing with Enzyme:

  1. We can only simulate keyboard events fired from document.body;
  2. mount is required.
  3. There's no good way, if there's any, for testing/simulating key events from wrapped child component;

Example

  import simulateEvent from 'simulate-event';
  ...

  it('should be able to handle key events in case-insensitive way ', () => {
    const handleKeyEvent = Sinon.spy();
    render(<KeyboardEventHandler handleKeys={['ctRl + A']} onKeyEvent={handleKeyEvent} />);
    simulateEvent.simulate(document.body, 'keydown', { keyCode: 65, ctrlKey: true });
    expect(handleKeyEvent.calledWith('ctRl + A')).to.be.true;
  });

Keywords

FAQs

Last updated on 10 Jun 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc