Git Product home page Git Product logo

grapesjs-preset-mautic's Introduction

GrapesJS Preset Mautic

All Contributors

This preset configures GrapesJS to be used as a Mautic Builder with some unique features and blocks.

Plugin to add GrapesJS features

  • Add function to edit source code
  • Extend the original image and add a confirm dialog before removing it
  • Option to hide/show Layers Manager
  • Option to enable/disable Import code button
  • Move Settings panel inside Style Manager panel
  • Open Block Manager at launch
  • Add Dynamic Content Block used in Mautic

Options

Option Description Default
sourceEdit Activate source code edition true
sourceEditBtnLabel Label for source code button save 'Edit'
sourceCancelBtnLabel Label for source code button cancel 'Cancel'
sourceEditModalTitle Title for source code modal 'Edit code'
deleteAssetConfirmText Label for asset deletion confirm 'Are you sure?'
showLayersManager Show Layers Manager panel false
combineSettingsAndSm Show settings combined with the Style Manager true
showImportButton Show Import code button false
defaultPanel Set the panel that should be open by default: Button ids 'open-blocks'
categorySectionLabel Category 'section' label 'Sections'
categoryBlockLabel Category 'block' label 'Blocks'
dynamicContentModalTitle Title for Dynamic Content modal 'Edit Dynamic Content'

Summary

  • Plugin name: grapesjs-preset-mautic

Download

  • GIT
    • git clone https://github.com/mautic/grapesjs-preset-mautic.git

Usage

Directly in the browser

<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet"/>
<script src="https://unpkg.com/grapesjs"></script>
<script src="path/to/grapesjs-preset-mautic.min.js"></script>

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

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

Modern javascript

import grapesjs from 'grapesjs';
import plugin from 'grapesjs-preset-mautic';
import 'grapesjs/dist/css/grapes.min.css';

const editor = grapesjs.init({
  container : '#gjs',
  // ...
  plugins: [plugin],
  pluginsOpts: {
    [plugin]: { /* options */ }
  }
  // or
  plugins: [
    editor => plugin(editor, { /* options */ }),
  ],
});

Development

Clone the repository

$ git clone https://github.com/mautic/grapesjs-preset-mautic.git
$ cd grapesjs-preset-mautic

Install dependencies

$ npm i

Start the dev server

$ npm start

Build the source and use js from build folder to your project

$ npm run build

Dependencies

Html needs to be beautified for the click tracking to work. Therefore, we can not use the built in command: mjml-get-code but we have to use mjml2html directly.

beautify option is deprecated in mjml-core and only available in mjml cli. mautic/mautic#10331

Logging

How to log

this.logger = new Logger(editor);
this.logger.debug('Some info for debugging', {param} );
this.logger.info('Some info for debugging');
this.logger.warning('Some info for debugging');
this.logger.error('Some info for debugging');

Changing the log level

During development the log level can be set to debug in index.js

  const config = {
    showLayersManager: 0,
    showImportButton: 0,
    logFilter: 'log:debug',
    // logFilter: 'log:info',
    ...opts,
  };

Dynamic Content

  • Takes HTML from the Dynamic Content popup and adds it to the canvas based on the text (html) or mj-text (mjml) component.

How to test a preset pull request

  1. Build the preset: npm run build (done by author)
  2. Create a PR (done by author)
  3. Fork the repo: gh repo fork mautic/grapesjs-preset-mautic
  4. Clone the repo: gh repo clone USERNAME/grapesjs-preset-mautic && gh pr checkout PRNUMBER>
  5. Change into the plugin directory: e.g. cd mautic/plugins/GrapesJSBuilderBundle
  6. Optional: Is the plugin code touched by this preset code change too? Checkout the correct plugin PR from github.com/mautic/mautic as well. E.g. gh pr checkout PR when you are in the Mautic directory (not the preset directory).
  7. Change the code for the import path of the preset in plugins/GrapesJsBuilderBundle/Assets/library/js/builder.service.js to the local version of the preset. E.g.
// import grapesjsmautic from 'grapesjs-preset-mautic';
import grapesjsmautic from '../../../../../../grapesjs-preset-mautic/src';
  1. Change the code for the import path of the preset in plugins/GrapesJsBuilderBundle/Assets/library/js/codeMode/codeEditor.js to the local version of the preset. E.g.
import MjmlService from '../../../../../../../grapesjs-preset-mautic/dist/mjml/mjml.service';
import ContentService from '../../../../../../../grapesjs-preset-mautic/dist/content.service';

Locate the preset repo by starting from this location: plugins/GrapesJsBuilderBundle/Assets/library/js/. In the above example we assume that the preset is one folder above Mautic

  1. Install the global dependency (make sure it is v1): npm install parcel@1
  2. Install the project depencencies: npm install
  3. Build the JS code of the plugin 'plugin-grapesjs-builder' in the dev mode (not minified): npm run build-dev
  4. Test the code locally. Make sure nothing is cached. Recommended way is using the incognito mode. E.g. https://mautic.ddev.site/s/emails
  5. Check the browser console if you find errors. They help a lot with debugging!

License

MIT

Contributors ✨

Thanks goes to these wonderful people (emoji key):

Disha P
Disha P

πŸ’»
Adrian
Adrian

πŸ’» πŸ“– πŸ‘€ πŸ““
Irfan Hanfi
Irfan Hanfi

πŸ’»
Ekkehard GΓΌmbel
Ekkehard GΓΌmbel

πŸ““
John Linhart
John Linhart

πŸ‘€
Volha Pivavarchyk
Volha Pivavarchyk

πŸ““
Anna Munk
Anna Munk

πŸ’»
Patryk Gruszka
Patryk Gruszka

πŸ‘€

This project follows the all-contributors specification. Contributions of any kind welcome!

grapesjs-preset-mautic's People

Contributors

adiux avatar allcontributors[bot] avatar annamunk avatar dennisameling avatar disha1611 avatar enc3phale avatar escopecz avatar irfanhanfi avatar kuzmany avatar mollux avatar rcheesley avatar volha-pivavarchyk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

grapesjs-preset-mautic's Issues

`No component or dynamic content item` error after editing an email with dynamic content in GrapeJS code mode

Editing an email via the code mode editor fails if you have a Dynamic Content element in your email.

  1. Add a Dynamic Content block to an email
  2. Open the code mode editor pane (Edit Code)
  3. Edit some code (or don't) and click Save

The editor shows an alert:

No component or dynamic content item

see this isse for further reference: mautic/mautic#12481

The issue is in https://github.com/mautic/grapesjs-preset-mautic/blob/main/src/dynamicContent/dynamicContent.service.js#L151. dcItem is undefined when you try to save.

(wrong parcel version) This experimental syntax requires enabling the parser plugin: 'classProperties'

I searched ion this for hours and want to prevent others to have this, so for the public memory:

I always got this error when running npm run start-mautic or npm run start-mautic
`grapesjs-preset-mautic/src/logger.js:2:8: This experimental syntax requires enabling the parser plugin: 'classProperties' (2:8)
1 | export default class Logger {

2 | editor;
| ^
3 |
4 | static namespace = 'grapesjs-preset';
5 |`

The solution was to force parcel 1 to be installed:
npm install parcel@1

After this I could successfully npm run build this plugin (with my changes)

Mjml to html conversion needs the beautify option which is depreciated in browser mode

We are currently using the browser mode to convert mjml to HTML.

Html needs to be beautified for the click tracking to work. Therefore, we can not use the built-in command: mjml-get-code in order convert mjml to HTML. But we have to use mjml2html directly with the beautified option tuned on. This option is depreciated.

beautify option is deprecated in mjml-core and only available in mjml cli.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.