Skip to content

scssyworks/context-builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Sachin Singh
Nov 5, 2021
8bf6dff · Nov 5, 2021

History

52 Commits
Nov 5, 2021
Aug 23, 2020
Nov 5, 2021
Aug 7, 2020
Sep 7, 2020
Aug 6, 2020
Aug 17, 2020
Aug 13, 2020
Nov 5, 2021
Nov 5, 2021
Nov 5, 2021
Nov 5, 2021
Sep 7, 2020

Repository files navigation

Context Builder

A powerful and easy to use library for building custom context menus.

npm i @scssyworks/context-builder

How does it work?

Create a context menu instance for a given target.

import { ContextMenu } from '@scssyworks/context-builder';

const contextMenu = new ContextMenu('div');
// ...
const contextMenu = new ContextMenu(); // For body element

If you don't specify a target selector, context menu is enabled for body element.

Add context menu items

import { ContextMenu, ContextItem } from '@scssyworks/context-builder';

const contextMenu = new ContextMenu('div');
contextMenu.add(
    new ContextItem('Option 1'),
    new ContextItem('Option 2'),
    // ...
);

Add nested menu items

import { ContextMenu, ContextItem, ContextList } from '@scssyworks/context-builder';

const contextMenu = new ContextMenu('div');
contextMenu.add(
    new ContextItem('Option 1'),
    new ContextItem('Option 2'),
    (new ContextList('Option 3')).add(
        new ContextItem('Child Option 1')
    )
    // ...
);

Context builder supports nesting of elements up to nth level.

Listen to click events

import { ContextMenu, ContextItem, ContextList } from '@scssyworks/context-builder';

const contextMenu = new ContextMenu('div', {
    onClick(event) {
        // Use event.target to get the target element
        // ...
        return true; // Return true to automatically close the menu
    }
});
// ...

Listen to activate and deactivate events

Activate and Deactivate listeners are great for adding entry and exit transitions

import { ContextMenu, ContextItem, ContextList } from '@scssyworks/context-builder';

const contextMenu = new ContextMenu('div', {
    onActivate(elements) {
        elements.map(el => {
            el.classList.add('show'); // Adding "show" class adds an entry transition
        });
    },
    onDeactivate(elements, callback) {
        elements.once('transitionend', callback); // Callback function is "required" to complete the exit transition
        elements.map(el => {
            el.classList.remove('show'); // Removing "show" class triggers an exit transition
        });
    }
});
// ...

Listen to "contextmenu" event

You can listen to original contextmenu event if you want to capture text selection or do more stuff.

import { ContextMenu, ContextItem, ContextList } from '@scssyworks/context-builder';

const contextMenu = new ContextMenu('div', {
    onContextMenu(event) {
        console.log(event);
    }
});
// ...

Destroy context menu

contextMenu.cleanup();

Customize

Context Builder is fully customizable. You can use your own elements to build context menu. Use the following guide to customize your context menus:

https://github.com/scssyworks/context-builder/blob/master/CUSTOMIZE.md