fwiech / use-keyboard-shortcut

A custom hook that allows adding keyboard shortcuts to React applications

Repository from Github https://github.comfwiech/use-keyboard-shortcutRepository from Github https://github.comfwiech/use-keyboard-shortcut

useKeyboardShortcut

npm version

Click here for a small demo!

A custom React hook that allows adding keyboard shortcuts to a React application.

import React from 'react'
import useKeyboardShortcut from 'use-keyboard-shortcut'

const App = () => {
  useKeyboardShortcut(['Shift', 'H'], () => console.log('Shift + H has been pressed.'), { overrideSystem: false })

  return (
    <div>Hello World</div>
  )
}

For another example on how to use this hook, please see the example project

Documentation

useKeyboardShortcut(keysArray, callback)

keysArray should be an array of KeyboardEvent.key strings. A full list of strings can be seen here

callback should be a function that is called once the keys have been pressed.

options an object containing some configuration options.

Options

A list of possible options to put in the options object passed as the third parameters to the hook.

overrideSystem overrides the default browser behavior for that specific keyboard shortcut

Bugs / Problems

Please create an issue.

About

A custom hook that allows adding keyboard shortcuts to React applications


Languages

Language:JavaScript 100.0%