@guzzj/clappr-context-menu-plugin

0.0.8 • Public • Published

npm bundle size Travis (.com) Coveralls github

Clappr context menu plugin

screenshot

Demo

https://joaopaulovieira.github.io/clappr-context-menu-plugin/

Table of Contents

Features

  • Default actions:
    • Copy URL of the site where Clappr is playing;
    • Copy URL with the current time of the video;
    • Enable/Disable loop state;
  • Default info:
    • Clappr version;
  • Support to add new custom actions;
  • Support to add custom style;

Usage

You can use it from JSDelivr:

https://cdn.jsdelivr.net/npm/clappr-context-menu-plugin@latest/dist/clappr-context-menu-plugin.min.js
# Using yarn
yarn add clappr-context-menu-plugin

# Using npm
npm i clappr-context-menu-plugin

Then just add ContextMenuPlugin into the list of plugins of your player instance

var player = new Clappr.Player({
  source: 'http://your.video/here.mp4',
  plugins: [ContextMenuPlugin]
});

Configuration

The options for the plugin go in the contextMenu property as shown below

var player = new Clappr.Player({
  source: 'http://your.video/here.mp4',
  plugins: [ContextMenuPlugin],
  contextMenu: {
    menuItems: [`copyURL`, `copyURLCurrentTime`, `loop`, `playerVersion`],
    extraOptions: [
      {
        name: 'test',
        label: 'Test Label',
        //optional
        callback: function() {
          console.log('A absolutely awesome extra context menu item action')
        }
      }
    ],
    customStyle: {
      container: {
        'display': 'block'
      },
      list: {
        'background-color': 'gray'
      },
      items: {
        'color': 'yellow'
      }
    }
  }
});

menuItems {Array}

An array where each item is a name that matches one of the default menu items. The valid values are: ['copyURL', 'copyURLCurrentTime', 'loop', 'playerVersion']

extraOptions {Array}

An array of items to add on the context menu. Each context menu item on this array is an object which contains the parameters name, label, and callback

  • name {String}

    Name of the extra item

  • label {String}

    The label that will be displayed on the menu

  • callback {Function}

    A method that will be triggered when clicking on the item label. This option is not required if your desired menu item not have one action to call on click (like the playerVersion default menu item)

customStyle {Object}

Styles to apply to mapped elements on the context menu. This option is an object with the parameters container, list and items

  • container {Object}

    Attributes that will be applied in the main element. This option is an object that receives CSS attributes like the options example at the beginning of this section

  • list {Object}

    Attributes that will be applied in the <ul> element. This option is an object that receives CSS attributes like the options example at the beginning of this section

  • items {Object}

    Attributes that will be applied in each <li> element. This option is an object that receives CSS attributes like the options example at the beginning of this section

Development

Install dependencies: npm install

Run: npm start

Test: npm test

Lint: npm run lint

Build: npm run build

Minified version: npm run release

Package Sidebar

Install

npm i @guzzj/clappr-context-menu-plugin

Weekly Downloads

0

Version

0.0.8

License

BSD-3-Clause

Unpacked Size

65.4 kB

Total Files

12

Last publish

Collaborators

  • guzz-junqueira