Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@chassis-wp/keyhandler
Advanced tools
Handle keyboard shortcuts in your React components, and automatically show hints to users.
Handle keyboard shortcuts in your React components, and automatically show hints to users.
# With yarn:
yarn add @chassis-wp/keyhandler
# With npm:
npm install --save @chassis-wp/keyhandler
To use Keyhandler, first render the Keyhandler provider at the top-level of your tree. This provider should be rendered above any Keyhandler components.
import { Provider } from '@chassis-wp/keyhandler';
ReactDOM.render(
<Provider>
<App />
</Provider>,
document.getElementById( 'root' )
);
Then, wherever you want to register a keyboard shortcut, render a KeyHandler component.
import React from 'react';
import KeyHandler from '@chassis-wp/keyhandler';
function SaveButton( props ) {
return (
<button
className="SaveButton"
type="button"
onClick={ props.onSave }
>
<KeyHandler
shortcut="cmd+s"
onTrigger={ props.onSave }
/>
Save
</button>
);
}
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.
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
:
<Key disableHint shortcut="cmd+k" />
To disable this behaviour globally, set the disableHints
prop on the provider to true
:
<ShortcutProvider disableHints>
<App />
</ShortcutProvider>
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.
FAQs
Handle keyboard shortcuts in your React components, and automatically show hints to users.
The npm package @chassis-wp/keyhandler receives a total of 1 weekly downloads. As such, @chassis-wp/keyhandler popularity was classified as not popular.
We found that @chassis-wp/keyhandler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.