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

@janrywang/react-contextmenu

v2.0.0

Published

Context Menu implemented in React

Downloads

3

Readme

NPM version Build Status Dependency Status Dev Dependency Status Code Climate

React Contextmenu

ContextMenu in React.

Installation

npm install --save react-contextmenu

Usage

You need to setup two things:

  1. The ContextMenu
  2. The ContextMenuTrigger
import React from "react";
import ReactDOM from "react-dom";
import { ContextMenu, MenuItem, ContextMenuTrigger } from "react-contextmenu";

function handleClick(e, data) {
  console.log(data);
}

function MyApp() {
  return (
    <div>

      <ContextMenuTrigger id="some_unique_identifier">
        <div className="well">Right click to see the menu</div>
      </ContextMenuTrigger>

      <ContextMenu id="some_unique_identifier">
        <MenuItem data={"some_data"} onClick={this.handleClick}>
          ContextMenu Item 1
        </MenuItem>
        <MenuItem data={"some_data"} onClick={this.handleClick}>
          ContextMenu Item 2
        </MenuItem>
        <MenuItem divider />
        <MenuItem data={"some_data"} onClick={this.handleClick}>
   	      ContextMenu Item 3
        </MenuItem>
      </ContextMenu>

    </div>
  );
}

ReactDOM.render(<MyApp myProp={12}/>, document.getElementById("main"));

As you can see that the ContextMenu to be showed on any component is dependent on a unique id.

See examples for more in detail usage.

##Styling

The styling can be apllied to using following classes.

  • react-contextmenu : applied to menu root element.
  • react-contextmenu--visible : applied to menu root element when visible.
  • react-contextmenu-item : applied to menu items.
  • react-contextmenu-link : applied to menu links inside items.
  • react-contextmenu-link--disabled : applied to links (title in submenu) when they are disabled.
  • react-contextmenu-link--active : applied to title in submenu when submenu is open.
  • react-contextmenu-wrapper : applied to wrapper around elements in ContextMenuTrigger.
  • react-contextmenu-submenu : applied to items that are submenus.

Note: This package does note include any styling by default. You can use react-contextmenu.css from examples for quick setup.

API

The module exports the following:

  • ContextMenu
  • ContextMenuTrigger
  • MenuItem
  • SubMenu

ContextMenu(props)

Type: React Component

Base Contextmenu Component.

props.id

Type: String required

A unique identifier for the menu.

props.onHide

Type: Function (optional)

Callback called when the menu is hidden.

props.onShow

Type: Function (optional)

Callback called when the menu is shown.

ContextMenuTrigger(props)

Type: React Component

Contextmenu Trigger Component

props.id

Type: String (required)

The unique identifier of the menu to be called.

props.attributes

Type: Object (optional)

The attributes will be passed directly passed to the root element of component. Use this to customize it like adding custom classes, adding colspan etc.

props.collect

Type: Function (optional)

A simple function which takes props as input and returns the data to be passed to contextmenu.

props.holdToDisplay

Type: Number (optional)

Default: 1000

This is applicable only for touch screens. The time (in ms) for which, user has to hold down his/her finger before the menu is shown.

props.renderTag

Type: String or React Element (optional)

The element inside which the Component must be wrapped. By default div is used. But this prop can used to customize it.

MenuItem(props)

Type: React Component

A Simple Component for menu items.

props.onClick

Type: Function (required)

The function to be called on click of item. The function will receive three parameters.

  • The first is event object.
  • The second is the merged data passed using props.data and collect from ContextMenuTrigger.
  • The third is the element on which right-click occured.

props.data

Type: Object (optional)

Default: {}

The extra data (if required) to be passed to onClick event.

props.disabled

Type: Boolean (optional)

Default: false

If true, disables the click event and adds .disabled class.

props.preventClose

Type: Boolean (optional)

Default: false

By default, the context menu is closed as soon as an item is clicked. Set this prop to control this behavior.

props.attributes

Type: Object (optional)

The attributes will be passed directly passed to the root element of MenuItem. Use this to customize it like adding custom classes, etc.

SubMenu(props)

Type: React Component

A component for using submenus within the contextmenu.

props.title

Type: String (required)

The content to be displayed in parent menu.

props.disabled

Type: Boolean (optional)

Default: false

If true, disables the menu from opening and adds .disabled class.

props.hoverDelay

Type: Number (optional)

Default: 500

The time (in ms) after which the menu is to be displayed when hovered upon.

Contributors

All Contributors

Changelog

For Changelog, see releases

License

MIT. Copyright(c) Vivek Kumar Bansal