@f/keychord

1.1.1 • Public • Published

keychord

Build status Git tag NPM version Code style

Takes in a keypress/keydown/keyup event and returns a chord striE.g. 'ctrl+shift+t'

Installation

$ npm install @f/keychord

Usage

var keychord = require('@f/keychord')

function render () {
  return <div onKeypress={handleKeypress} />
}

function handleKeypress (e) {
  switch (keychord(e)) {
    case 'enter':
      // handle enter
      break
    case 'shift+enter':
      // handle shift+enter
      break
    case 'ctrl+up':
      // handle ctrl+up
      break
  }
}

API

keychord(event)

Returns: A keychord string. If only one key is being pressed, just returns the name of that key. If it is a sequence of keys, returns a string of the form 'ctrl+shift+enter'.

License

MIT

Dependencies (1)

Dev Dependencies (1)

Package Sidebar

Install

npm i @f/keychord

Weekly Downloads

1

Version

1.1.1

License

MIT

Last publish

Collaborators

  • f