@bigbinary/neeto-hotkeys v1.0.9
@bigbinary/neeto-hotkeys
The neeto-hotkeys package provides the useHotKeys hook, a versatile utility
for managing hotkeys in an application. This hook allows you to define specific
hotkey combinations and associate them with corresponding handler functions. The
associated handler is invoked upon pressing the configured hotkey(s), enabling
you to execute actions in response to keyboard input.
Installation
yarn add @bigbinary/neeto-hotkeysArguments that the useHotKeys hook accepts:
hotkey: A string specifying the hotkey(s) to listen for. Hotkeys can be defined in three formats:sequential,simultaneous&single.- Sequential: Any keys separated by a space are considered sequential. The
handler is invoked when the user presses the keys in sequence. For
example,
s rmeans that when the user pressessfollowed by anrthe correspondinghandlerwill be invoked. - Simultaneous: Simultaneous hotkeys require all specified keys to be
pressed at the same time to trigger the handler. For example,
command+shift+rmeans that whencommand,shift,rare pressed at the same time the handler will be invoked. - Single: As the name indicates, this denotes single keys like
r,k,returnetc. Wheneverris pressed its corresponding handler will be called.
The hotkey should be in MacOS format, the hook will take care of converting it to the users platform(eg: command -> ctrl for windows).
If we want to bind multiple hotkeys to the same handler we can pass in an array like so
useHotkeys(['a', 'b'], handler).- Sequential: Any keys separated by a space are considered sequential. The
handler is invoked when the user presses the keys in sequence. For
example,
handler: The function that should be invoked when the hotkey is pressed.Handler will receive the original key
event. This can be used to stop the default browser action like soevent.preventDefault().config: A config object which has 3 propertiesmode,unbindOnUnmount&enabled.- mode: The available values for mode are
default,global&scoped.- default: It is the default mode. Handlers will only be called if the user is outside of a textarea, input, or select element.
- global: Handlers will be fired even if the user is inside form elements like textarea.
- scoped: It is used for scoping a hotkey to a DOM element. You can use
this option if you want to invoke the handlers only if the user is
focused in a specific
div,button,textareaand so on. When this mode is set the hook will return aref, you need to attached thatrefto the element to which you need to scope the hotkey.
- unbindOnUnmount: By default its value will be
true. If you don't want a handler to be unregistered when a component is unmounted then set the value tofalse. - enabled: By default its value will be
true. Setting this tofalsewill not register the hotkey. - document: This is an optional property. If you want to listen for hotkeys
on an external document (e.g., an iframe), pass the reference of that
document using the
documentproperty in theconfigobject. If you do not provide this property, the hook will listen for hotkeys on the current document by default.
- mode: The available values for mode are
Return value:
inputRef: Arefwhich needs to be attached to the input element to be listened to.
Usage:
Following illustrates the usage of useHotKeys hook in implementing shortcut
for Sidebar opening.
import useHotKeys from "@bigbinary/neeto-hotkeys";
// openSidebar function will only be called if the user is focused inside the textarea and performs the key combination.
const ref = useHotKeys("command+shift+r", openSidebar, {
mode: "scoped",
});
return (
<div>
<div>Hello world</div>
<textarea ref={ref}></textarea>
</div>
);Hotkeys are a fundamental aspect of many applications, enhancing user efficiency and interactivity. The useHotKeys hook simplifies the implementation of these hotkeys by allowing you to specify the hotkey combinations in various formats, associated handlers, and configuration options.