chaitanya11 / grapesjs-plugin-button-event

Enables grapesjs to publish events on new button clicks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GrapesJS Plugin Button event

This plugin enables you to add button with event emitters to grapesJs panels.

Summary

  • Plugin
    • Name: gjs-plugin-button-event
    • Options:
      • buttons: [{ name: 'buttonName', panel: 'panelName', eventName: 'eventName', icon: 'ICON', active: boolean, data: { message: 'event message'} }]

Download

  • npm i grapesjs-plugin-button-event

Usage

<link href="path/to/grapes.min.css" rel="stylesheet"/>
<link href="path/to/grapesjs-plugin-button-event.css" rel="stylesheet"/>

<script src="path/to/grapes.min.js"></script>
<script src="path/to/grapesjs-plugin-button-event.min.js"></script>

<div id="gjs"></div>

<script type="text/javascript">
  var editor = grapesjs.init({
      container : '#gjs',
      plugins: ['gjs-plugin-button-event'],
      pluginsOpts: {
        'gjs-plugin-button-event': {/* ...options */}
      }
  });
</script>

Development

Clone the repository

$ git clone https://github.com/chaitanya11/grapesjs-plugin-button-event.git
$ cd grapesjs-plugin-button-event

Install it

$ npm i

The plugin relies on GrapesJS via peerDependencies so you have to install it manually (without adding it to package.json)

$ npm i grapesjs --no-save

Start the dev server

$ npm start

License

BSD 3-Clause

About

Enables grapesjs to publish events on new button clicks

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:JavaScript 56.3%Language:HTML 29.9%Language:CSS 13.8%