1.0.1 • Published 3 months ago

grapesjs-carousel-component v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Grapesjs Carousel Component

DEMO

Provide a live demo of your plugin For a better user engagement create a simple live demo by using services like JSFiddle CodeSandbox CodePen and link it here in your README (attaching a screenshot/gif will also be a plus). To help you in this process here below you will find the necessary HTML/CSS/JS, so it just a matter of copy-pasting on some of those services. After that delete this part and update the link above

HTML

<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-carousel-component"></script>

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

JS

const editor = grapesjs.init({
  container: "#gjs",
  height: "100%",
  fromElement: true,
  storageManager: false,
  plugins: ["grapesjs-carousel-component"],
  // very important to add below scripts to editor canvas
  canvas: {
    scripts: [
      "https://cdn.jsdelivr.net/npm/@redoc_a2k/splide@4.1.4/dist/js/splide.min.js",
    ],
    styles: [
      "https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/css/splide.min.css",
    ],
  },
});

CSS

body,
html {
  margin: 0;
  height: 100%;
}

Summary

  • Plugin name: grapesjs-carousel-component
  • Components
    • component-id-1
    • component-id-2
    • ...
  • Blocks
    • block-id-1
    • block-id-2
    • ...

Options

OptionDescriptionDefault
option1Description optiondefault value

Download

  • CDN
    • https://unpkg.com/grapesjs-carousel-component
  • NPM
    • npm i grapesjs-carousel-component
  • GIT
    • git clone https://github.com/redoC-A2k/grapesjs-carousel-component.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-carousel-component.min.js"></script>

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

<script type="text/javascript">
  var editor = grapesjs.init({
    container: "#gjs",
    // ...
    plugins: ["grapesjs-carousel-component"],
    pluginsOpts: {
      "grapesjs-carousel-component": {
        /* options */
      },
    },
    // very important to add below scripts to editor canvas
    canvas: {
      scripts: [
        "https://cdn.jsdelivr.net/npm/@redoc_a2k/splide@4.1.4/dist/js/splide.min.js",
      ],
      styles: [
        "https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/css/splide.min.css",
      ],
    },
  });
</script>

Modern javascript

import grapesjs from 'grapesjs';
import plugin from 'grapesjs-carousel-component';
import 'grapesjs/dist/css/grapes.min.css';

const editor = grapesjs.init({
  container : '#gjs',
  // ...
  plugins: [plugin],
  pluginsOpts: {
    [plugin]: { /* options */ }
  }
  // or
  plugins: [
    editor => plugin(editor, { /* options */ }),
  ],
  // very important to add below scripts to editor canvas
  canvas: {
    scripts: [
      "https://cdn.jsdelivr.net/npm/@redoc_a2k/splide@4.1.4/dist/js/splide.min.js",
    ],
    styles: [
      "https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/css/splide.min.css",
    ],
  },
});

Development

Clone the repository

$ git clone https://github.com/redoC-A2k/grapesjs-carousel-component.git
$ cd grapesjs-carousel-component

Install dependencies

$ npm i

Start the dev server

$ npm start

Build the source

$ npm run build

License

MIT

1.0.1

3 months ago

1.0.1-0

3 months ago

1.0.0

3 months ago