npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

o-menu

v1.2.0

Published

Simple circular context menu based on svg

Downloads

17

Readme

O! Menu (o-menu)

Simple circular menu based on SVG

DEMO

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:array[object] - 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: array[object] - 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              : []
}