2.0.0 • Published 3 years ago

grapesjs-uppy v2.0.0

Weekly downloads
59
License
MIT
Repository
github
Last release
3 years ago

Grapesjs Uppy

Uppy file uploader for grapesjs.WIP

Add companion to use other image sources other than local. At the moment only tus is supported for file uploads

Screenshot: screenshot

DEMO

HTML

<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet">
<script src="https://unpkg.com/grapesjs"></script>
<link href="https://unpkg.com/grapesjs-uppy/dist/grapesjs-uppy.min.css" rel="stylesheet">
<script src="https://unpkg.com/grapesjs-uppy"></script>

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

JS

const editor = grapesjs.init({
	container: '#gjs',
  height: '100%',
  fromElement: true,
  storageManager: false,
  plugins: ['grapesjs-uppy'],
});

CSS

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

Summary

  • Plugin name: grapesjs-uppy

Options

OptionDescriptionDefault
btnElCustom button element which triggers Uppy modal
btnTextText for the button in case the custom one is not providedAdd images
themeUppy's filepicker themedark
uppyOptsUppy's options{...}
dashboardOptsUppy's dashboard options{...}
companionUrlUppy companion urlhttps://companion.uppy.io
endpointTus endpoint urlhttps://tusd.tusdemo.net/files/
onCompleteOn complete upload callbackconsole.log('successful files:', assets)
onFailedOn failed upload callbackconsole.log('failed files:', assets)
googledriveUse pluginfalse
dropboxUse pluginfalse
instagramUse pluginfalse
facebookUse pluginfalse
onedriveUse pluginfalse
unsplashUse pluginfalse
webcamUse plugintrue
screencaptureUse plugintrue

Download

  • CDN
    • https://unpkg.com/grapesjs-uppy
  • NPM
    • npm i grapesjs-uppy
  • GIT
    • git clone https://github.com/Ju99ernaut/grapesjs-uppy.git

Usage

Directly in the browser

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

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

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

Modern javascript

import grapesjs from 'grapesjs';
import plugin from 'grapesjs-uppy';
import 'grapesjs/dist/css/grapes.min.css';
import 'grapesjs-uppy/dist/grapesjs-uppy.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/Ju99ernaut/grapesjs-uppy.git
$ cd grapesjs-uppy

Install dependencies

$ npm i

Build css

$ npm run build:css

Start the dev server

$ npm start

Build the source

$ npm run build

License

MIT