1.2.0 • Published 6 years ago

o-menu v1.2.0

Weekly downloads
16
License
MIT
Repository
github
Last release
6 years ago

O! Menu (o-menu)

Simple circular menu based on SVG

DEMO

npm.io

Installation

npm i --save o-menu

Usage

Options for menu:

  • menu:
    • padding: number - padding for menu
    • positioningMode: string(relativeToParent|relativeToScreen) - Tells menu how to positioning on page, takes two possible values
      • relativeToParent - default menu behavior will be similar to css absolute element (menu) positionig in relative parent (menu parent element)
      • relativeToScreen - menu behavior will be similar to css position: absolute
    • closeMenuOn: string|boolean - close menu on event, if false close only manually by close method in object returns by oMenu function call
    • elClass: string - css class which will be bounded to the menu main element
    • circleDegOrigin: number - default is -90
    • innerCircleWidth: number - radius width of inner circle
    • innerCircleContent: string - HTML string, defines what render in inner circle
    • firstLevelSliceWidth: number - width of first level slices radius
    • nthLevelSliceWidth: number - width of second level slices radius
    • menuShowTime: number - time in ms, defines speed of innerCircle show animation
    • menuHideTime: number - time in ms, defines speed of innerCircle hide animation
    • styles: object - all styles needs to be written in camel case notation
      • innerCircle: object - any initial CSS styles for inner circle
      • hidden: object - styles appiled to element when it is hidden
      • visible: object - styles appiled to element when it is visible
      • defaults: object - initial styles for root menu element
  • slice: object - Default options for first level slices
    • contentSize: number - size of slice content in pixels (it is usualy icon so content is always square thats width = height)
    • contentMoveX:number - slice content move in pixels at x axis
    • contentMoveY:number - slice content move in pixels at y axis
    • parentFillMode:number - Number in range -1 to 1. Negative - color darker, positive - color brighter, 0 - not set. Option for nested slices. When it is different from zero fill color will be based on parent's color, but will be darker or brighter depending on the parentFillMode value.
    • iconDistanceFromInnerCircle:number content distance from inner circle, for nested slices inner circle is radius of parent's slices
    • content:string - HTML string with content for slice
    • sliceClass:string - class which will be appiled to slice element
    • sliceShowTime:number - slice show animation duration
    • sliceHideTime:number - slice hide animation duration
    • slices:arrayobject - children slices
    • data:any - data will be passed as property of Event parameter for on callback
    • onClick: function - callback fired when slice was clicked
    • styles:object
      • defaults:object - default styles for slice
      • contentContainer:object - slice content container default styles
      • hover:object: styles appiled to slice after hover on it
  • nthSlice: object - Default options for second level slices, same as slice
  • slices: arrayobject - Array of objects which can contains same options as described in slice, options set here are overwrite these set in slice or nthSlice as default.
  • onOpen:function - callback which can return object with new options for menu, it can overwrite any options set for menu, slice, nthSlice and slices. It's mean, you can change all menu depending eg.: on element which was clicked and show user different options
  • onClose:function - callback fired immediately after close event
  • onEndCloseAnimation:function - callback fired after all close animations of menu and slices will ends, in parameter gets data which was set in slice options

Simple example

import oMenu from 'o-menu';

// create menu instance, firstly you need to pass parent element id for menu, secondly default options for menu
const omenu = oMenu('main', {
    menu: {
        innerCircleRadius: 55
    },
    nthSlice: {
        contentSize: 22,
        iconDistanceFromInnerCircle: 5,
        parentFillMode: -0.3,
        styles: {
            contentContainer:{
                fontSize: 22,
                color: '#efefef'
            }
        }
    },
    slice: {
        contentSize : 30,
        iconDistanceFromInnerCircle: 10,
        styles: {
            contentContainer:{
                fontSize: 30,
                color: '#efefef'
            },
        }
    },
    onOpen: onOpenCb,
    onEndCloseAnimation: val => {
        if(val)
            alert(`You want to: ${val}`)
    }
});

omenu.on('sliceEnter', ev => {
    console.log(ev); // => oMenu Event
});

document.body.addEventListener('contextmenu', ev => {
    ev.preventDefault();

    omenu.open(ev, {
       slices :[
           {
               content: 'A',
               styles:{
                   defaults: {
                       fill: '#8BC34A'
                   }
               },
               data: 'send email'
           },
           {
               content: 'B',
               styles:{
                   defaults: {
                       fill: '#F44336'
                   }
               },
               data: 'delete user'
           }
       ]
    });
}

/**
 in const c we have object with three methods for manual open, close and trigger menu
 c = {
    open: function(ev, options){...} - function which opens menu, requires event in first param and dynamic menu options
                                       for second. WARNING! if you open menu manually, onOpen callback will never be called
                                       therfore you need to pass options directly to open method.
    close: function(ev){...} - function which close menu, requires event in first param
    trigger: function(ev){...} - function which triggers menu
 }
*/

API

When oMenu('main', ...) function is called, returns object which provides api for menu management, it looks like:

  • open(ev, dynamicOptions) - function which opens menu, requires event in first param and dynamic menu options for second.
  • close(ev) - function which close menu, requires event in first param
  • trigger(ev) - function which triggers menu
  • on(eventName, cb) - works exactly like well known equivalents from other libraries. Accepts two params - string with event name and callback function. Callback functions gets in first param oMenu special Event class instance. List of all available events: sliceClick, sliceEnter, sliceLeave, openMenu, closeMenu, hideAnimationEnd, showAnimationEnd. oMenu Event shape:
{
 "originalEvent": oMenuEvent|Event|null, - original event which triggered action
 "type": string, -  one of mentioned above events
 "data": any|null, - data passed by user in slice definition
 "target": Slice|null, - target slice
 "hasNestedSlices": boolean|number, - if Slice event and target slice has slices
 "isSlice": boolean - if slice then true
}

Full default options

{
    menu                : {
        padding : 10,
        elClass : 'circle-menu',
        circleDegOrigin: -90,
        innerCircleWidth: 45,
        innerCircleContent: ``,
        firstLevelSliceWidth: 70,
        nthLevelSliceWidth: 50,
        menuShowTime: 100,
        menuHideTime: 100,
        styles : {
            innerCircle: {
                strokeColor: '',
                strokeWidth: '',
                fill: '#fff',
            },
            hidden : {
                zIndex: -1,
                visibility: 'hidden'
            },
            visible: {
                zIndex: 9999,
                visibility: 'visible'
            },
            defaults: {
                position: 'fixed'
            }
        }
    },
    slice               : {
        contentSize : 38,
        contentMoveX: 0,
        contentMoveY: 0,
        parentFillMode : 0,
        iconDistanceFromInnerCircle: 0,
        content: null,
        sliceClass : 'circle-slice',
        sliceShowTime: 100,
        sliceHideTime: 100,
        slices: [],
        data: null,
        styles: {
            defaults: {
                cursor: 'pointer',
                fill: '#f1f1f1'
            },
            contentContainer: {
                color: 'red',
                fontSize: 38,
                cursor: 'pointer'
            },
            hover: {

            }
        }
    },
    nthSlice            : {
        contentSize : 38,
        contentMoveX: 0,
        contentMoveY: 0,
        parentFillMode : 0,
        iconDistanceFromInnerCircle: 0,
        content: null,
        sliceClass : 'circle-slice',
        sliceShowTime: 100,
        sliceHideTime: 100,
        slices: [],
        data: null,
        styles: {
            defaults: {
                cursor: 'pointer',
                fill: '#f1f1f1'
            },
            contentContainer: {
                color: 'red',
                fontSize: 38,
                cursor: 'pointer'
            },
            hover: {

            }
        }
    },
    slices              : []
}
1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago