Git Product home page Git Product logo

usekey-event-manager's Introduction

usekey-event-manager

npm npm bundle size (minified) npm A project badge feature text "PRs Welcome"

๐Ÿ”‘ Easily map window listeners to keyboard events in React

Prerequisites

useKey is a custom React hook, so you're project must be running React and ReactDOM versions 16.8+.

Installation

To install, use your package manager of choice. Here is the command for npm:

npm i usekey-event-manager

Usage

Import useKey from usekey-event-manager and pass it a keyboard event map:

import React from 'react'
import useKey from 'usekey-event-manager'

function Dialog(props) {
    useKey({ Escape: props.closeAndReturnFocus })
    return(
        <div role="alertdialog">
            {/* ... */}
        </div>
    )
}

export default Dialog

API

Version 1+ of usekey-event-manager comprises a single export: useKey.

useKey()

useKey is a custom React hook that assigns a window event listener on keydown. When an event is fired, the listener compares it to a set of selected keys, then calls the action and passes the event object if there is a match.

useKey(Object<String, Function>)

If there is a single key that you want to listen for, you can pass a map like so:

useKey({ Escape: close })

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Author

Sean McPherson

License

MIT

usekey-event-manager's People

Contributors

seanmcp avatar dependabot[bot] avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.