@asup/context-menu
v1.3.12
Published
REACT Typescript Context menu component
Downloads
212
Readme
@asup/context-menu
REACT Context menu, because I couldn't quite find what I wanted.
Installation
# with npm
npm install @asup/context-menu
Usage
Context menu provider, takes a list of available actions and renders a context menu on appropriate click. Sub menus can be added within each item. Wrap around the elements that need to have the menu.
import { ContextMenuProvider, IMenuItem } from '@asup/context-menu';
<ContextMenuHandler
menuItems={[
{
label: 'Item 1',
action: () => {
console.log('Item 1 function run');
},
},
{
label: 'Item 2',
action: () => console.log('Item 2 function run'),
group: [
{ label: 'Subitem 2.1', action: () => console.log('Item 2.1 function run') },
],
},
{
label: 'Item 3',
action: () => console.log('Item 3 function run'),
disabled: true,
},
]}
>
<Chilren
where the context menu is applied...
/>
</ContextMenuHandler>
import { ContextWindowStack, ContextWindow }
// Context window stack needs to cover the application, or portion where context windows cannot clash with each other
<ContextWindowStack>
...rest of app
<ContextWindow
id='window-1'
title={'Window 1'}
visible={visible}
style={ window styling, applied to the window div}
onOpen={ called function on opening}
onClose={ called function on closing (close cross in the window)}
>
{window contents}
</ContextWindow>
<ContextWindow
id='window-2'
title={'Window 2'}
visible={visible}
style={ window styling, applied to the window div}
onOpen={ called function on opening}
onClose={ called function on closing (close cross in the window)}
>
{window contents}
</ContextWindow>
...end of app
</ContextWindowStack>