rete-context-menu-plugin-bargz-fork
v0.5.0
Published
Rete context menu plugin ==== #### Rete.js plugin
Downloads
6
Readme
Rete context menu plugin
Rete.js plugin
import ContextMenuPlugin, {
VueMenu,
VueComponents,
ReactMenu,
ReactComponents,
IMenu
} from 'rete-context-menu-plugin';
editor.use(ContextMenuPlugin, {
Menu: ReactMenu, // required
searchBar: false, // true by default
searchKeep: title => true, // leave item when searching, optional. For example, title => ['Refresh'].includes(title)
delay: 100,
allocate(component) {
return ['Submenu'];
},
rename(component) {
return component.name;
},
items: {
'Click me'(){ console.log('Works!') }
},
nodeItems: {
'Click me'(){ console.log('Works for node!') }
}
});
| Options | Description | Default |
|-|-|-|
| Menu
|
| searchBar
| Showing search bar | true
| delay
| Delay hide, ms | 1000
| allocate
| function for placing of components into submenu | () => []
| rename
| function for renaming of items| component => component.name
| items
| custom items (Object
with nested objects and functions) | {}
| nodeItems
| custom items for Node menu | {}
You can arbitrarily put a component in a submenu. Examples:
allocate() { return ["Single submenu"] }
allocate(component) { return component.path } // where path is a stack of menu for every component
allocate(component) { return null } // exclude component from menu items
To change the items that create nodes, you may need to change the name.
class MyComponent {
constructor() {
super("My comp");
this.contextMenuName = "Add My comp";
}
}
///
rename(component) { return component.contextMenuName || component.name }