1.1.0 • Published 2 years ago
caymland-react-builder v1.1.0
Caymland React Editor
Installation
The easiest way to use React Email Editor is to install it from NPM and include it in your own React build process.
npm install caymland-react-editor --saveor
yarn add caymland-react-editorUsage
Require the EmailEditor component and render it with JSX:
import React, { useRef } from 'react';
import { render } from 'react-dom';
import EmailEditor from 'caymland-react-editor';
const App = (props) => {
const emailEditorRef = useRef(null);
const exportHtml = () => {
emailEditorRef.current.editor.exportHtml((data) => {
const { design, html } = data;
console.log('exportHtml', html);
});
};
const onReady = () => {
// editor is ready
// you can load your template here;
// const templateJson = {};
// emailEditorRef.current.editor.loadDesign(templateJson);
};
return (
<div>
<div>
<button onClick={exportHtml}>Export HTML</button>
</div>
<EmailEditor displayMode="email" ref={emailEditorRef} onReady={onReady} />
</div>
);
};
render(<App />, document.getElementById('app'));Methods
| method | params | description |
|---|---|---|
| loadDesign | Object data | Takes the design JSON and loads it in the editor |
| saveDesign | Function callback | Returns the design JSON in a callback function |
| exportHtml | Function callback | Returns the design HTML and JSON in a callback function |
See the example source for a reference implementation.
Properties
editorIdStringHTML div id of the container where the editor will be embedded (optional)displayModeStringstyle object for the editor container (required 'email' | 'web' | 'popup')styleObjectstyle object for the editor container (default {})minHeightStringminimum height to initialize the editor with (default 500px)onLoadFunctioncalled when the editor instance is createdonReadyFunctioncalled when the editor has finished loadingoptionsObjectoptions passed to the Unlayer editor instance (default {})toolsObjectconfiguration for the built-in and custom tools (default {})appearanceObjectconfiguration for appearance and theme (default {})projectIdIntegerUnlayer project ID (optional)
See the Unlayer Docs for all available options.
Custom Tools
Custom tools can help you add your own content blocks to the editor. Every application is different and needs different tools to reach it's full potential. Learn More
License
Copyright (c) 2023 Unlayer. MIT Licensed.
