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

@joe_kerr/vue-context-menu

v1.0.5

Published

Context menu plugin. Easy install. Call with directive or store dispatch.

Downloads

2

Readme

Context menu plugin for Vue

Make everything a context menu: A context menu wrapper for Vue as a configurable plugin.

Features

  • Declarative definitions of context menus.
  • Open with v-contextmenu or dispatch("contextMenu/open").
  • Put in any content within <context-menu> ... </context-menu>.
  • Component name and store namespace configurable.
  • Right-click or left-click.
  • Does not go out of the viewport.

Demo

See it in action.

Requirements

  • Vue >= 2.6 (v-slot)
  • Vuex
  • dev environment such as Vue Cli ("soft" requirement / recommended)

Install

1)

npm install @joe_kerr/vue-context-menu

2a) dev environment

import {installer, component} from "@joe_kerr/vue-context-menu"; 

or

import * as contextMenu_or_whatever from "@joe_kerr/vue-context-menu"; 

2b) Pure node or browser

const contextMenu = require("path_to_node_modules/@joe_kerr/vue-context-menu/dist/contextMenu.common.js");

or

<html> <script src="path_to_node_modules/@joe_kerr/vue-modal-dialogs/dist/contextMenu.umd.min.js"></script>

3)

Vue.use(contextMenu.installer, configuration);

4) [if not installed globally]

import {component} from "@joe_kerr/vue-context-menu";
//or
const {component} = require("path_to_node_modules/@joe_kerr/vue-context-menu/dist/contextMenu.common.js");
//or
const component = contextMenu.component;

Use

Configuration

Provide configuration properties on the second parameter of the Vue.use(plugin, config) call.

vuex (mandatory)

A reference to your Vuex store instance.

namespace

The namespace of the store module. Default: "contextMenu"

componentName

The name of the context menu component. Default: "context-menu"

globalInstall

Should the component be available in all your templates without importing it? Default: true

If set to false, you need to import the component yourself. See above.

modalService

Context menus are usually modal, i.e. you click elsewhere in order to close them. This modal behaviour is not exclusive to just context menus. Therefore, it appeared to made sense to decouple it. The "modalService" requires the following interface:

modalService.start(<dom node>element, <func>callback[, {<bool>stopPropagation: true}])

modalService.stop()

If no modalService is provided, the context menu will not be modal (see "menu.close" below). The optional config parameter "stopPropagation" refers to event.stopPropagation(). It is assumed that the modal click-handler should consume the click event.

While we are at it. Maybe check this out: StackThemModals - a modal stack controller

Build menu components

<context-menu menu="specific_id" v-slot:default="menuProps">		
 //e.g.
 <h2>{{menuProps.context.name}}</h2>
 
 <your-menu-item :mProps="menuProps"></your-menu-item>
 
 <button v-on:click="menuProps.close">Close</button>

</context-menu>	

Configure component

v-slot:default="menuProps"

  • menuProps.context: custom data
  • menuProps.close: function that closes the menu
  • menuProps.onResize: function that checks whether the menu is out of bounds and if so corrects position

prop "menu" (mandatory)

The unique menu name (id) with which you open this context menu.

Open menus

via directive

<img :src="file.path" v-contextmenu.left|right="{menu: 'specific_id', context: {name: file.name, what: "ever"}}" />

via method

methods: {
 click(event, context) {
  this.$store.dispatch("contextMenu/open", {menu: 'specific_id', context, event});
 }
}

Notice:

  • "specific_id" links the context menu and the opening directive.
  • "context" in v-contextmenu is passed as object property to "menuProps" in v-slot.
  • The identifier in v-slot:default="menuProps" (i.e. "menuProps") can be named anything you like.
  • The directive modifier is optional and defaults to ".right".

Notes

  • Only one context menu can be open at a time.
  • The context menu is not dynamically extensible. All menu items need to be defined in your template and are then set in stone.
  • Just to be sure: this plugin is a wrapper that takes care of the logic of context menus. There is no items or styling/theming.

Versions

1.0.5

  • Changed: Click outside context menu does not stop propagation anymore
  • Changed: Test refactoring and package updates

1.0.4

  • Fixed: v-contextmenu directive blocked @click.right directive on the same tag/component (issue #2)
  • Fixed: .gitignore not in the file list of the build script
  • Changed: made live demo prettier
  • Changed: some refactoring

1.0.3

  • Added: live demo with github pages

1.0.2

  • Fixed: ohh, I see now: https://github.com/webpack/webpack/issues/7646

1.0.1

  • Changed: module import facilitated.

1.0.0

  • Public release.

Copyright

MIT (c) Joe Kerr 2019