2.0.21 • Published 7 years ago

react-contexify-ext v2.0.21

Weekly downloads
20
License
MIT
Repository
github
Last release
7 years ago

React-contexify-ext

Add a context menu to your react application with ease !

Demo

Live demo here

Installation

$ yarn add react-contexify-ext
or
$ npm install --save react-contexify-ext

You also need to include the css file provided. Otherwise it wont work as expected.

Style Loader :

import 'react-contexify-ext/dist/ReactContexify.min.css' 

1998 Script tag :

<link rel="stylesheet" href="/dist/ReactContexify.min.css"/>

Features

  • The context menu never leave the visible screen. You can reduce the window to check the behavior
  • The callback provide an access to the wrapped component
  • One menu can be use for multiple targets
  • Create as many contextual menu as you want, as long as the id is unique
  • Easily customizable. Theme are split into different sass file. Fifteen line of code can be enough to create a theme
  • Don't rely on findDOMNode

How it works ?

Create your menu

import { ContextMenu, Item, Separator, IconFont } from 'react-contexify-ext';

function onClick(targetNode, ref, data) {
    // targetNode refer to the html node on which the menu is triggered
    console.log(targetNode);
    //ref will be the mounted instance of the wrapped component
    //If you wrap more than one component, ref will be an array of ref
    console.log(ref);
    // Additionnal data props passed down to the `Item`
    console.log(data);
}

// create your menu first
const MyAwesomeMenu = () => (
    <ContextMenu id='menu_id'>
        <Item leftIcon={<IconFont className="fa fa-plus" />} onClick={onClick}>
            Add
        </Item>
        <Item leftIcon={<IconFont className="material-icons">remove_circle</IconFont>} onClick={onClick}>
            Remove
        </Item>
        <Item><IconFont className="fa fa-scissors" />cut</Item>
        <Separator/>
        <Item disabled>
            Paste
        </Item>
    </ContextMenu>
);

Define which component can display the menu

import { ContextMenuProvider, menuProvider } from 'react-contexify-ext';

//wrap your component with the `ContextMenuProvider`

const Foo = () => <ContextMenuProvider id="menu_id">bar</ContextMenuProvider>;
const Bar = () => <ContextMenuProvider id="menu_id">baz</ContextMenuProvider>;

// or you can use the curried function to add the same menu for many components, it's up to you

const addContextMenu = menuProvider('menu_id'); 
const Foo = addContextMenu(YourComponent);
const Bar = addContextMenu(YourCompoenent);

All together

import React from 'react';

import MyAwesomeMenu from './MyAwesomeMenu';
import Foo from './Foo';
import Bar from './Bar';

const App = () => (
    <div>
        <Foo />
        <Bar />
        <MyAwesomeMenu/>
    </div>
)

ReactDOM.render(
  <App />,
  document.getElementById('root')
);

Add a context menu to a table

import { ContextMenuProvider } from 'react-contexify-ext';

//You need to use a tr as a render tag otherwise your browser console will bleed !
const Tr = (props) => (
  <ContextMenuProvider id="menu_id" renderTag="tr">
    <td>{props.cel1}</td>
    <td>{props.cel2}</td>
  </ContextMenuProvider>
);

class Table extends Component {
  render() {
    return (
      <table>
        <thead>
        <tr>
        <th>Cel 1</th>
        <th>Cel 2</th>
        </tr>
        </thead>
        <tbody>
          <Tr cel1="lorem" cel2="ipsum" />
          <Tr cel1="foo" cel2="bar" />
        </tbody>
      </table>
  )
  }
}

Api

ContextMenu (Type : React Component)

PropsTypeDefaultRequiredPossible ValueDescription
idstring|int--Used to identify the corresponding menu
childrenItem|null--Menu item
themestringlight | darkTheme is appended to react-contexify__theme--${given theme}
animationstringfade | flip | pop | zoomAnimation is appended to .react-contexify__will-enter--${given animation}

You can set built-in theme and animation using ContextMenu constant as follow :

<ContextMenu id="foo" theme={ContextMenu.THEME.dark} animation={ContextMenu.ANIMATION.pop}> ... </ContextMenu>

Item (Type : React Component)

PropsTypeDefaultRequiredDescription
childrennode-Any valid node to render(string, react component...)
leftIconnodeAny valid node to render(string, react component...)
rightIconnodeAny valid node to render(string, react component...)
disabledboolfalseDisable the item
onClickfunctionCallback when the item is clicked
dataanyAdditional data that will be passed to the callback

onClick

When an you select an Item your callback will receive 3 parameters: targetNode, refs, data.

  • if you wrap a single react component refs will be the mounted instance of the wrapped component
  • If you wrap more than one component refs will be an array of ref

ref will be an instance of the react component only if the component is declared as a class

If you use any flux store like redux or mobx stick with it.

For more details about ref please read this

Separator (Type : React Component)

Don't expect any props. It's just a separator xD.

<Separator />

IconFont (Type : React Component)

PropsTypeDefaultRequiredDescription
childrennode-Menu item
classNamestringAdditional className
stylestringAdditional style

The icon font render a i tag.

//example with Font Awesome 
<IconFont className="fa fa-trash" />
//example with material icons
<IconFont className="material-icons">remove_circle</IconFont>

ContextMenuProvider (Type : React Component)

PropsTypeDefaultRequiredPossible ValueDescription
idstring or int--Id used to map your component to a context menu
renderTagnodediv-The render tag of the wrapper
eventstringonContextMenuSame as React Event (onClick, onContextMenu ...)Event to trigger the context menu
classNamestringAdditional className
styleobjectAdditional style
const Foo = () => <ContextMenuProvider id="menu_id"><MyComponent /></ContextMenuProvider>;

menuProvider (Type : function)

ArgsTypeDefaultRequiredPossible ValueDescription
idstring--Id used to map your component to a context menu
  • Function returned by menuProvider expect :
ArgsTypeDefaultRequiredPossible ValueDescription
targetComponentReact Component--The component on which you want to add a context menu
renderTagnodediv-The render tag of the wrapper
eventstringonContextMenuSame as React Event (onClick, onContextMenu ...)Event to trigger the context menu
classNamestringAdditional className
styleobjectAdditional style

Migration from v1 to v2

Breaking changes are a pain for developers but sometimes we have too.

Item Component: You can render whatever you want now, which gives you more control.

//before
<Item label="foo" />
// now
<Item>foo</Item>

onClick callback: Having access to the instance of the react component can be sometimes really useful.

//before
onClick(targetNode, data)
// now
onClick(targetNode, refs, data)

Release Notes

2.0.7

2.0.6

  • Typo fix in documentation
  • Pass props down to menuProvider function

2.0.5

  • Will now hide menu on mousedown.Relate to issue 19
  • Added flag noIdents to cssnano to avoid animation name collision with other libs

Bug Fix

  • Fixed zoom animation

2.0.4

  • Minor code cleanup

2.0.3

Bug Fix

  • Firefox trigger a click event also on context menu which was making the menu disappear. Relate to issue 16

2.0.2

Bug Fixes

  • Fix issue #14

2.0.1

Bug Fixes

  • conditional rendering was badly tested, shame on me !

2.0.0

  • This version introduce breaking changes for the item component
  • Upgrade to prop-types
  • Tested with jest and enzyme
  • Reviewed build system

Features

  • The onClick callback provide a ref to the wrapped component
  • Can now use condtionnal rendering for dynamic menu. Relate to issue 12
  • Added IconFont component

Bug Fixes

  • Fixed right click behavior. Relate to issue 11

1.1.0

Features

  • Added possibility to set the render tag for the wrapper
  • Added a ContextMenuProvider component
  • Added possibility to set className and style to ContextMenuProvider
  • Removed ContextMenuProvider style.Was too unpredictable

Bug Fixes

  • fixed incorrect PropTypes used
  • dead code elimination

Contribute

Any idea and suggestions are welcome.

Thanks

Big thanks to Tobias Reich. This project is based on basicContext. A vanilla js context menu.

License

React Contexify is licensed under MIT.

2.0.21

7 years ago

2.0.20

7 years ago

2.0.19

7 years ago

2.0.18

7 years ago

2.0.17

7 years ago

2.0.16

7 years ago

2.0.15

7 years ago

2.0.14

7 years ago

2.0.13

7 years ago

2.0.12

7 years ago

2.0.11

7 years ago

2.0.10

7 years ago

2.0.9

7 years ago

2.0.8

7 years ago

2.0.7

7 years ago