npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-key-shortcuts

v0.5.14

Published

This library is build over [**mousetrap**](https://www.npmjs.com/package/mousetrap). it gives you the ability to register all your shortcuts with action names in order to listen to this action name in any component.

Downloads

59

Readme

react-key-shortcuts

This library is build over mousetrap. it gives you the ability to register all your shortcuts with action names in order to listen to this action name in any component.

Why to Use

This library gives you the capability to register all your shortcuts with names once across the system, So you can bind action on the name direct not the shortcut. also it gives you the capability to bind action on the specific shortcut in one component.

How to use

  • wrap the app in 'index.js' with KeyShortcutprovider. (you can pass all shortcuts direct in the KeyShortcutProvider if you want)
import React from 'react';
import ReactDOM from 'react-dom';
import {KeyShortcutProvider} from 'react-key-shortcuts';
import App from './environment/App';

ReactDOM.render(
  <React.StrictMode>
    <KeyShortcutProvider>
      <App />
    </KeyShortcutProvider>
  </React.StrictMode>,
  document.getElementById('root')
);
  • Register shortcuts in App component
import React from 'react';
import {useRegisterShortcuts} from 'react-key-shortcuts';

import Test1 from './Test1';
import Test2 from './Test2';

const App = () => {
  useRegisterShortcuts({
    zoom: ['ctrl+z', 'ctrl+d'],
    open: 'ctrl+d',
  });
  return (
    <div>
      <Test1 />
      <Test2 />
    </div>
  );
};

export default App;
  • Bind action in the components
//first component
import React from 'react';
import {useShortcutCallback} from 'react-key-shortcuts';

const Test1 = () => {
  useShortcutCallback('zoom', () => {
    console.log('test1 is zooming');
  });
  return (
    <div>
      press anyKey
    </div>
  );
};

export default Test1;
//second component
import React from 'react';
import {useShortcutCallback} from 'react-key-shortcuts';

const Test2 = () => {
  useShortcutCallback('zoom', () => {
    console.log('test2 is zooming');
  });
  useShortcutCallback('open', () => {
    console.log('Test2 is opening');
  });
  return (
    <div
      style={{
        display: 'inline-block',
        width: 300,
        height: 300,
        border: '1px solid green',
      }}
    />
  );
};

export default Test2;

API

Hook | Description | Syntax | Params ----|----|----|---- useRegisterShortcuts | used to register shortcut with name | useRegisterShortcuts(shortcuts)| shortcuts: object {shortcut,name}. shortcut accept the same input of shortcut in mousetrap useShortcutCallback | used to bind action to one of the shortcut name | useShortcutCallback(name,callback)| name is the register name for the shortcut useTriggerShortcut | used to trigger shortcut in order to simulate keyboard action programmatically | useTriggerShortcut(shortcutOrName) | shortcutOrName is wether an action name (zoom) or a real shortcut(ctrl+z) useShortcut | used to bind action to a specfic shortcut to deliver the default behaviour of mousetrap | useShortcut(shortcut,callback)| shortcut accept the same input of shortcut in mousetrap