本仓库由https://github.com/jaywcjlove/react-hotkeys
改进而来,因为原来仓库在react19.0会存在类型问题。由此我想重新改写一遍。
React component to listen to keydown and keyup keyboard events, defining and dispatching keyboard shortcuts. Uses a fork of hotkeys.js for keydown detection of special characters. You give it a keymap of shortcuts & it bind it to the mousetrap singleton. The, it'll unbind it when the component unmounts.
npm i -S hotkey-react
Preview demo.
import React from 'react';
import { Hotkeys } from 'hotkeys-react';
export function HotkeysDemo() {
const [output, setOutput] = useState("Hello, I am a component that listens keydown and keyup of a")
const handleKeyUp = (keyName, e, handle) {
console.log("test:onKeyUp", e, handle)
setOutput(`onKeyUp ${keyName}`)
}
const handleKeyDown(keyName, e, handle) {
console.log("test:onKeyDown", keyName, e, handle)
setOutput(`onKeyDown ${keyName}`)
}
return (
<Hotkeys
keyName="shift+a,alt+s"
onKeyDown={handleKeyDown}
onKeyUp={handleKeyUp}
>
<div style={{ padding: "50px" }}>
{output}
</div>
</Hotkeys>
)
}
Supported keys ⇧
, shift
, option
, ⌥
, alt
, ctrl
, control
, command
, ⌘
.
⌘
Command()
⌃
Control
⌥
Option(alt)
⇧
Shift
⇪
Caps Lock
fn
Function key is fn
(not supported)
↩︎
return/enter
space
space keys
Callback function to be called when user pressed the target buttons
space
space keys
Callback function to be called when user key uped the target buttons
allowRepeat?: boolean;
allowRepeat
to allow auto repeating key down
disabled?: boolean;
Disable onKeyDown
and onKeyUp
events. Default: undefined
INPUT
SELECT
TEXTAREA
default does not handle. filter
to return to the true shortcut keys set to play a role, flase shortcut keys set up failure.
<Hotkeys
keyName="shift+a,alt+s"
+ filter={(event) => {
+ return true;
+ }}
onKeyDown={handleKeyDown}
onKeyUp={handleKeyUp}
/>
Licensed under the MIT License.