项目作者: artf

项目描述 :
Enable Filestack uploader inside the Asset Manager
高级语言: JavaScript
项目地址: git://github.com/artf/grapesjs-plugin-filestack.git
创建时间: 2017-03-06T21:52:25Z
项目社区:https://github.com/artf/grapesjs-plugin-filestack

开源协议:BSD 3-Clause "New" or "Revised" License

下载


GrapesJS Filestack

This plugin replaces the default file uploader with the one from Filestack

Demo: http://grapesjs.com/demo.html

GrapesJS



Summary

  • Plugin
    • Name: gjs-plugin-filestack
    • Options:
      • key Filestack’s API key (required)
      • btnEl Custom button element which triggers Filestack modal
      • btnText Text for the button in case the custom one is not provided, default: Add images
      • filestackOpts Filestack’s options, default: {accept: 'image/*', maxFiles: 10}
      • onComplete On complete upload callback, eg. onComplete: (blobs, assets) => {...}
        blobs Array of Objects, eg. [{url:’…’, filename: ‘name.jpeg’, …}]
        assets Array of inserted assets

Prerequisites

  • filestack-js up to v0.11.5 only (not compatible with filestack-js v1 and above)

Download

Usage

  1. <link href="path/to/grapes.min.css" rel="stylesheet"/>
  2. <link href="path/to/grapesjs-plugin-filestack.css" rel="stylesheet"/>
  3. <script src="path/to/grapes.min.js"></script>
  4. <script src="path/to/grapesjs-plugin-filestack.min.js"></script>
  5. <div id="gjs"></div>
  6. <script type="text/javascript">
  7. var editor = grapesjs.init({
  8. container : '#gjs',
  9. plugins: ['gjs-plugin-filestack'],
  10. pluginsOpts: {
  11. 'gjs-plugin-filestack': {/* ...options */}
  12. }
  13. });
  14. </script>

Development

Clone the repository

  1. $ git clone https://github.com/artf/grapesjs-plugin-filestack.git
  2. $ cd grapesjs-plugin-filestack

Install it

  1. $ npm i

The plugin relies on GrapesJS via peerDependencies so you have to install it manually (without adding it to package.json)

  1. $ npm i grapesjs --no-save

Start the dev server

  1. $ npm start

License

BSD 3-Clause