3.0.2 • Published 4 years ago

react-context-menu v3.0.2

Weekly downloads
472
License
ISC
Repository
github
Last release
4 years ago

react-context-menu

A lightweight right-click context menu implemented in React.

example right-click menu

To use:

Install the component in your project:

npm install react-context-menu --save

or, if using yarn:

yarn add --dev react-context-menu

Import the component into your project:

import ContextMenu from 'react-context-menu';

Pass a contextId, and an array of menu items with labels, onClick functions, and optional icon paths -- like so:

<ContextMenu
  contextId={'clickable-area'}
  items={[
    {
      label: 'Configure',
      onClick: this.configHandler,
      icon: 'path/to/icon.svg'
    },
    {
      label: 'Delete',
      onClick: this.deleteHandler
    }
  ]} />

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.

Pass closeOnClick (boolean defaulted to false) to ContextMenu to close the menu upon item click.

Pass closeOnClickOut (boolean defaulted to false) to ContextMenu to close the menu upon clicking outside of the menu (versus the default, which will close the menu when the mouse moves outside of the menu boundary).

3.0.2

4 years ago

3.0.1

5 years ago

3.0.0

5 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.1.0

7 years ago

1.0.3

7 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago