vaadin-context-menu

WebJar for vaadin-context-menu

License

License

Categories

Categories

Vaadin User Interface Web Frameworks Github Development Tools Version Controls
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

github-com-vaadin-vaadin-context-menu
Last Version

Last Version

v3.0.0-beta1
Release Date

Release Date

Type

Type

jar
Description

Description

vaadin-context-menu
WebJar for vaadin-context-menu
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/vaadin/vaadin-context-menu

Download github-com-vaadin-vaadin-context-menu

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/github-com-vaadin-vaadin-context-menu/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>github-com-vaadin-vaadin-context-menu</artifactId>
    <version>v3.0.0-beta1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/github-com-vaadin-vaadin-context-menu/
implementation 'org.webjars.bower:github-com-vaadin-vaadin-context-menu:v3.0.0-beta1'
// https://jarcasting.com/artifacts/org.webjars.bower/github-com-vaadin-vaadin-context-menu/
implementation ("org.webjars.bower:github-com-vaadin-vaadin-context-menu:v3.0.0-beta1")
'org.webjars.bower:github-com-vaadin-vaadin-context-menu:jar:v3.0.0-beta1'
<dependency org="org.webjars.bower" name="github-com-vaadin-vaadin-context-menu" rev="v3.0.0-beta1">
  <artifact name="github-com-vaadin-vaadin-context-menu" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='github-com-vaadin-vaadin-context-menu', version='v3.0.0-beta1')
)
libraryDependencies += "org.webjars.bower" % "github-com-vaadin-vaadin-context-menu" % "v3.0.0-beta1"
[org.webjars.bower/github-com-vaadin-vaadin-context-menu "v3.0.0-beta1"]

Dependencies

compile (5)

Group / Artifact Type Version
org.webjars.bower : vaadin-themable-mixin jar [1.1.0,2)
org.webjars.bower : polymer jar [2.0.0,3)
org.webjars.bower : iron-overlay-behavior jar [2.0.0,3)
org.webjars.bower : iron-media-query jar [2.0.0,3)
org.webjars.bower : vaadin-overlay jar [1.1.0,2)

Project Modules

There are no modules declared in this project.

<vaadin-context-menu>

Live Demo | API documentation

<vaadin-context-menu> is a Web Component providing a contextual menu, part of the Vaadin components.

npm version Build Status Published on webcomponents.org Published on Vaadin Directory Stars on vaadin.com/directory Discord

<vaadin-context-menu>
  Open a context menu with <b>right click</b> or with <b>long touch.</b>
</vaadin-context-menu>

<script>
  const contextMenu = document.querySelector('vaadin-context-menu');
  contextMenu.renderer = function(root) {
    let listBox = root.firstElementChild;
    // Check if there is a list-box generated with the previous renderer call to update its content instead of recreation
    if (listBox) {
      listBox.innerHTML = '';
    } else {
      listBox = document.createElement('vaadin-list-box');
      root.appendChild(listBox);
    }

    ['First', 'Second', 'Third'].forEach(function(name) {
      const item = document.createElement('vaadin-item');
      item.textContent = name + ' menu item';
      listBox.appendChild(item);
    });
  };
</script>

Screenshot of vaadin-context-menu

Note: <vaadin-list-box> component used in the above example should be installed and imported separately.

Installation

Install vaadin-context-menu:

npm i @vaadin/vaadin-context-menu --save

Once installed, import it in your application:

import '@vaadin/vaadin-context-menu/vaadin-context-menu.js';

Getting started

Vaadin components use the Lumo theme by default.

To use the Material theme, import the correspondent file from the theme/material folder.

Entry points

  • The component with the Lumo theme:

    theme/lumo/vaadin-context-menu.js

  • The component with the Material theme:

    theme/material/vaadin-context-menu.js

  • Alias for theme/lumo/vaadin-context-menu.js:

    vaadin-context-menu.js

Running API docs and tests in a browser

  1. Fork the vaadin-context-menu repository and clone it locally.

  2. Make sure you have node.js 12.x installed.

  3. Make sure you have npm installed.

  4. When in the vaadin-context-menu directory, run npm install to install dependencies.

  5. Run npm start, browser will automatically open the component API documentation.

  6. You can also open visual tests, for example:

Running tests from the command line

  1. When in the vaadin-context-menu directory, run npm test

Debugging tests in the browser

  1. Run npm run debug, then choose manual mode (M) and open the link in browser.

Following the coding style

We are using ESLint for linting JavaScript code. You can check if your code is following our standards by running npm run lint, which will automatically lint all .js files.

Big Thanks

Cross-browser Testing Platform and Open Source <3 Provided by Sauce Labs.

Contributing

To contribute to the component, please read the guideline first.

License

Apache License 2.0

Vaadin collects development time usage statistics to improve this product. For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.

org.webjars.bower

Vaadin

An open platform for building modern web apps for Java back ends

Versions

Version
v3.0.0-beta1