All Projects → telecta → react-mousetrap

telecta / react-mousetrap

Licence: MIT license
HOC for Mousetrap

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to react-mousetrap

keys
⌨️ Keyboard Shortcuts for 'shiny'
Stars: ✭ 37 (+23.33%)
Mutual labels:  mousetrap
Mousetrap
Simple library for handling keyboard shortcuts in Javascript
Stars: ✭ 10,937 (+36356.67%)
Mutual labels:  mousetrap
react-hotkey-tooltip
A global Hotkey provider with built in tooltip for React
Stars: ✭ 34 (+13.33%)
Mutual labels:  mousetrap

react-mousetrap Build Status npm version

React's high order component for Mousetrap integration.

Setup

Yarn install

yarn add react-mousetrap

Example

Create higher order component

    import mouseTrap from 'react-mousetrap';

    class YourComponent extends React.Component {
        componentWillMount {
            this.props.bindShortcut('right', this._goToNext);
        }
    }

    export default mouseTrap(BaseComponent);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].