Socket
Socket
Sign inDemoInstall

sc-keycodes

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sc-keycodes

Simple package for dealing with JS key codes


Version published
Maintainers
1
Created

Readme

Source

sc-keycodes

A simple package to make working with browser key events a little more convenient.

API

dispatch(evt, callbackTable)

A convenience API for mapping key combinations to callback functions. Takes an event object and a table of key combinations to callback functions.

const keycodes = require('sc-keycodes');

const MyReactComponent = React.createClass({
    render : function() {
        ...
    },
    _handleKeyPress: function (evt) {
        keycodes.dispatch(evt, {
            "SHIFT+UP":         this._moveUp(),
            "SHIFT+DOWN":       this._moveDown(),
            "CTRL+S":           this._saveData(),
            "TAB, SHIFT+RIGHT": this._indent(),
        });
    }
});

KeyCodes

A map of keys by string name to keyCode numeric values.

var keycodes = require('sc-keycodes');

$('#my_div').on('keydown', function (evt) {
    if (evt.keyCode === keycodes.KeyCodes["ENTER"]) {
        doSomething();
    }
});

This is just a simple associative array so key combinations are not supported.

Keywords

FAQs

Last updated on 03 Jan 2016

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