ThomasDotCodes / grapesjs-react

A React wrapper for GrapesJS library

Home Page:https://grapesjs-react.thanhtunguet.info

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

grapesjs-react

React wrapper for GrapesJS

I am looking for new maintainer for this package.

grapesjs-react v3 was fully rewritten from scratch. The package is now only responsible to expose hooks and control the editor lifecycle for these reasons:

  • This package depends on artf/grapesjs, which does not support Typescript. It is hard to implement custom features Components, Blocks without declaration files.
  • To be simple, this package should only control the lifecycle of the editor, leave the rest to the dependent projects.

Install

yarn add grapesjs-react
// or
npm i grapesjs-react --save

New editor props:

export interface EditorProps {
  // Prefix identifier that will be used inside storing and loading
  id?: string;
    
  presetType?: 'webpage' | 'newsletter' | 'mjml';
  
  // https://grapesjs.com/docs/modules/Plugins.html#basic-plugin
  plugins?: string[];
    
  children?: ReactElement<any> | Array<ReactElement<any>>;
   
  // https://github.com/artf/grapesjs/blob/dev/src/storage_manager/config/config.js
  storageManager?: any;
  
  // https://github.com/artf/grapesjs/blob/dev/src/block_manager/config/config.js
  blockManager?: any;
    
  // https://github.com/artf/grapesjs/blob/dev/src/style_manager/config/config.js  
  styleManager?: {};
    
  width?: string | number;
    
  height?: string | number;
  
  // https://grapesjs.com/docs/modules/Components.html
  components?: object[];
    
  blocks?: object[];
    
  onInit?(editor): void;
    
  onDestroy?(editor): void;
}

Default props of the editor:

Editor.defaultProps = {
  id: 'grapesjs-react-editor',
  presetType: 'newsletter',
  plugins: [],
  blocks: [],
  blockManager: {},
  storageManager: {},
  styleManager: {},
  width: 'auto',
  height: '100vh',
  components: [],
};

Introduce new hooks:

  • onInit: Called after editor initializing, used for adding custom components, blocks, etc, ...
  • onDestroy: Called before editor unmounting, used for cleaning up.

Import CSS:

import 'grapesjs/dist/css/grapes.min.css';

See storybook demo: https://grapesjs-react.thanhtunguet.info

About

A React wrapper for GrapesJS library

https://grapesjs-react.thanhtunguet.info


Languages

Language:TypeScript 54.5%Language:Shell 22.2%Language:JavaScript 21.2%Language:CSS 2.1%