Skip to content

micro-js/keychord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

keychord

Build status Git tag NPM version Code style

Takes in a keypress/keydown/keyup event and returns a chord string. E.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