Socket
Socket
Sign inDemoInstall

@accessible/use-keycode

Package Overview
Dependencies
4
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @accessible/use-keycode

A React hook for handling specific keycodes with a callback on keydown


Version published
Weekly downloads
782
decreased by-33.62%
Maintainers
1
Install size
60.5 kB
Created
Weekly downloads
 

Readme

Source

useKeycode()

Bundlephobia Code coverage Build status NPM Version MIT License

npm i @accessible/use-keycode

A React hook for handling specific key codes with a callback on keydown

Quick Start

import {useKeycode, useKeycodes} from '@accessible/use-keycode'
// one keycode
const Component = () => {
  // logs event when escape key is pressed
  const ref = useKeycode(27, console.log)
  return <div ref={ref} />
}
// several keycodes
const Component = () => {
  // logs event when escape or enter key is pressed
  const ref = useKeycodes({27: console.log, 13: console.log})
  return <div ref={ref} />
}

API

useKeycode(which: number, callback: (event?: KeyboardEvent) => any)

Arguments
ArgumentTypeDefaultRequired?Description
whichnumberundefinedYesThe event.which you want to trigger the callback
callback(event?: KeyboardEvent) => anyundefinedYesThe callback you want to trigger when the event.which matches the latest keyUp event
Returns React.MutableRefObject<any>

useKeycodes(handlers: Record<number, (event?: KeyboardEvent) => any>)

Arguments
ArgumentTypeDefaultRequired?Description
handlersRecord<number, (event?: KeyboardEvent) => any>undefinedYesAn object with keys matching the event.which you want to trigger the callback value
Returns React.MutableRefObject<any>

LICENSE

MIT

Keywords

FAQs

Last updated on 07 Jul 2020

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