Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@slimsag/react-shortcuts
Advanced tools
Declaratively and efficiently match shortcut combinations in your react application
@shopify/react-shortcuts
Declarative and performant library for matching shortcut combinations in React applications.
$ yarn add @shopify/react-shortcuts
The library exposes three main parts, <ShortcutProvider />
, <Shortcut />
and ShortcutManager
.
Wrapping your application in a <ShortcutProvider />
allows you to use <Shortcut />
components anywhere in your application, internally sharing a single ShortcutManager
instance to minimize listeners and collisions.
// App.ts
import * as React from 'react';
import {ShortcutProvider} from '@shopify/react-shortcuts';
export default function App() {
<ShortcutProvider>{/* the rest of your app */}</ShortcutProvider>;
}
Shortcut is used to register a new keyboard shortcut to ShortcutManager
. It can be triggered globally or only when a node is focused.
Note: a <Shortcut />
must have a <ShortcutProvider />
somewhere above it in the tree.
export interface Props {
/*
keys that, when pressed sequentially, will trigger `onMatch`
*/
ordered: Key[];
/*
keys that need to be kept pressed along with `keys` to trigger `onMatch`
*/
held?: ModifierKey[];
/*
a callback that will trigger when the key combination is pressed
*/
onMatch(matched: {ordered: Key[]; held?: ModifierKey[]}): void;
/*
a node that, when supplied, will be used to only fire `onMatch` when it is focused
*/
node?: HTMLElement | null;
/*
a boolean that lets you temporarily disable the shortcut
*/
ignoreInput?: boolean;
/*
a boolean that lets you opt out of swallowing the key event and let it propagate
*/
allowDefault?: boolean;
}
// MyComponent.tsx
import * as React from 'react';
import {Shortcut} from '@shopify/react-shortcuts';
export default function MyComponent() {
return (
<div>
{/* some app markup here */}
<Shortcut ordered={['f', 'o', 'o']} onMatch={() => console.log('foo')} />
</div>
);
}
// MyComponent.tsx
import * as React from 'react';
import {Shortcut} from '@shopify/react-shortcuts';
export default function MyComponent() {
return (
<div>
{/* some app markup here */}
<Shortcut
held={['Control', 'Shift']}
ordered={['B']}
onMatch={() => console.log('bar!')}
/>
</div>
);
}
Provide a node in the form of a ref
. <Shortcut />
will automatically subscribe to the ShortcutManager
once the node is available.
// MyComponent.tsx
import * as React from 'react';
import {Shortcut} from '@shopify/react-shortcuts';
class MyComponent extends React.Component {
state = {};
render() {
const {fooNode} = this.state;
return (
<div>
<button ref={node => this.setState({fooNode: node})} />
<Shortcut
node={fooNode}
ordered={['f', 'o', 'o']}
onMatch={() => console.log('foo')}
/>
</div>
);
}
}
ShortcutManager
is created by ShortcutProvider
and handles the logic for calling the appropriate shortcut callbacks and avoiding conflicts. You should never need to use it directly in application code, though you may want access to it in tests.
Given a component implementing a <Shortcut />
// MyComponent.tsx
export default function MyComponent() {
return (
<div>
{/* some app markup here */}
<Shortcut ordered={['f', 'o', 'o']} onMatch={() => console.log('foo')} />
</div>
);
}
you might want to add a ShortcutManager
to it's context in an enzyme test to prevent errors
// MyComponent.test.tsx
import * as React from 'react';
import {mount} from 'enzyme';
import {ShortcutManager, Shortcut} from '@shopify/react-shortcuts';
import MyComponent from './MyComponent';
describe('my-component', () => {
it('renders a shortcut for f,o,o', () => {
const component = mount(<MyComponent />, {
context: {shortcutManager: new ShortcutManager()},
});
const shortcut = component.find(Shortcut);
expect(shortcut.prop('ordered')).toEqual(['f', 'o', 'o']);
});
});
FAQs
Declaratively and efficiently match shortcut combinations in your react application
We found that @slimsag/react-shortcuts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.