Simple projects and templates manage plugin for GrapesJS
<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet">
<script src="https://unpkg.com/grapesjs"></script>
<script src="https://unpkg.com/grapesjs-templates"></script>
<div id="gjs"></div>const editor = grapesjs.init({
container: '#gjs',
height: '100%',
fromElement: true,
storageManager: false,
plugins: ['grapesjs-templates'],
pluginsOpts: {
'grapesjs-templates': {
templates: 'http://localhost:3000/templates',
projects: 'http://localhost:3000/projects',
}
}
});body, html {
margin: 0;
height: 100%;
}Plugin name: grapesjs-templates
| Option | Description | Default |
|---|---|---|
templates |
API endpoint for templates. | null |
projects |
API endpoint for projects. | null |
onLoad |
Method to load projects or templates. | undefined |
onStore |
Method to store data. | undefined |
onDelete |
Method to delete a project. | undefined |
Let me know if you need further assistance!
-
templates:- Type:
Stringornull - Description: API endpoint for templates.
- Default:
null
- Type:
-
projects:- Type:
Stringornull - Description: API endpoint for projects.
- Default:
null
- Type:
-
onLoad:- Type:
Function - Description: Method to load projects or templates.
- Default:
undefined - Parameters:
type(String): Type of data to load (templatesorprojects).
- Returns:
Arrayornull: Array of loaded data or null if not found.
- Type:
-
onStore:- Type:
Function - Description: Method to store data.
- Default:
undefined - Parameters:
payload(Object): Data to be stored.
- Returns:
Boolean:trueif stored successfully,falseotherwise.
- Type:
-
onDelete:- Type:
Function - Description: Method to delete a project.
- Default:
undefined - Parameters:
id(String): ID of the project to delete.
- Returns:
Boolean:trueif deletion is successful,falseotherwise.
- Type:
- CDN
https://unpkg.com/grapesjs-templates
- NPM
npm i grapesjs-templates
- GIT
git clone https://github.com/dipaksarkar/grapesjs-templates.git
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-templates.min.js"></script>
<div id="gjs"></div>
<script type="text/javascript">
var editor = grapesjs.init({
container: '#gjs',
// ...
plugins: ['grapesjs-templates'],
pluginsOpts: {
'grapesjs-templates': { /* options */ }
}
});
</script>Modern javascript
import grapesjs from 'grapesjs';
import plugin from 'grapesjs-templates';
import 'grapesjs/dist/css/grapes.min.css';
const editor = grapesjs.init({
container : '#gjs',
// ...
plugins: [plugin],
pluginsOpts: {
[plugin]: { /* options */ }
}
// or
plugins: [
editor => plugin(editor, { /* options */ }),
],
});Clone the repository
$ git clone https://github.com/dipaksarkar/grapesjs-templates.git
$ cd grapesjs-templatesInstall dependencies
$ npm iStart the dev server
$ npm startBuild the source
$ npm run buildMIT
