Package Exports
- react-context-menu
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-context-menu) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-context-menu
A lightweight right-click context menu implemented in React.

To use:
Install the component in your project:
npm install react-context-menu --save
Import the component into your project:
import ContextMenu from 'react-context-menu';Pass a contextID, and an array of menu items with icons, labels, and functions through props -- like so:
<ContextMenu contextID={'clickable-area'} items={[{'icon': wheel, 'label': 'Configure', 'function': this.configHandler}, {'icon': trash, 'label': 'Delete', 'function': this.deleteHandler}]} />Where wheel and trash are image files imported into the parent component like so:
import wheel from './wheel.svg';
import trash from './trash.svg';The contextID is the area in which you'd like right-click functionality. Add a unique id to your right-clickable element, and react-context-menu will be available anywhere within that element.
Your functions will reside in your parent component. By default, when you right click an element, the event.target is stored in state and is passed to the menu item functions. This can be useful for DOM manipulation -- for instance, removing an element from the DOM via a "delete" function passed to ContextMenu's props.