grapesjs-indexeddb
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

GrapesJS IndexedDB

IndexedDB storage wrapper for GrapesJS

Requires GrapesJS v0.19.* or higher

Summary

  • Plugin name: grapesjs-indexeddb
  • Storage
    • indexeddb

Options

Option Description Default
type Type id used to register the new storage. You can use this option in case you want to replace the already available storages (eg. local). indexeddb
options Default storage options. { key: 'gjsProject', dbName: 'gjs', objectStoreName: 'projects' }

Download

  • CDN
    • https://unpkg.com/grapesjs-indexeddb
  • NPM
    • npm i grapesjs-indexeddb
  • GIT
    • git clone https://github.com/GrapesJS/storage-indexeddb.git

Usage

<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-indexeddb.min.js"></script>

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

<script type="text/javascript">
  var editor = grapesjs.init({
      container : '#gjs',
      ...
      storageManager: { type: 'indexeddb' },
      plugins: ['grapesjs-indexeddb'],
      pluginsOpts: {
        'grapesjs-indexeddb': {
          options: {
            // In case of multiple projects on the same page indicate an id to
            // prevent collisions
            key: 'user-project-id',
            // Update IndexedDB name for the DB and the table containing project data
            dbName: 'editorLocalData',
            objectStoreName: 'projects',
          }
        }
      }
  });
</script>

Development

Clone the repository

$ git clone https://github.com/GrapesJS/storage-indexeddb.git
$ cd grapesjs-indexeddb

Install dependencies

$ npm i

Start the dev server

$ npm start

License

BSD 3-Clause

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i grapesjs-indexeddb

    Weekly Downloads

    425

    Version

    1.0.5

    License

    BSD-3-Clause

    Unpacked Size

    16 kB

    Total Files

    6

    Last publish

    Collaborators

    • artf