npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@silexlabs/grapesjs-directus-storage

v1.0.23

Published

Grapesjs Directus Storage

Downloads

34

Readme

Grapesjs Directus Storage

Directus as a backend for GrapesJS

/!\ This code uses an outdated SDK from directus project

This code is part of a bigger project: about Silex v3

Screenshot from the plugin in grapesjs demo

Links

The plugin currently has these features

  • Authentication commands using Directus API to login/logout the user
  • Custom StorageManager to store the website data in a Directus collection
  • Custom AssetManager which integrates with Directus assets
  • This plugin provides easy versioning of the website data and assets
  • The JSON data of the website and the assets are readable and editable in Directus
  • Directus provides no-code flow automations

Here is grapesjs data in directus

grapesjs  data in directus

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/@silexlabs/grapesjs-directus-storage"></script>

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

JS

const editor = grapesjs.init({
  container: '#gjs',
  height: '100%',
  fromElement: true,
  storageManager: {
    type: 'directus',
    autoload: false,
  },
  plugins: ['@silexlabs/grapesjs-directus-storage'],
  pluginsOpts: {
    '@silexlabs/grapesjs-directus-storage': {
      directusUrl: prompt('You need a Directus server to test this plugin. Directus server URL', 'http://localhost:8055')
    }
  }
});

CSS

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

Directus settings

On the Directus side, you need

  1. A collection to store your website data (has to be a list, singleton not yet supported)
  2. A user with access right to the collection and to the collection directus_files

The collection to store your data needs to have these fields

  • pages
  • styles
  • fonts (optional, for use with @silexlabs/grapesjs-fonts)
  • symbols (optional, for use with @silexlabs/grapesjs-symbols)

These fields can be code fields of type JSON so that the UI is adequat, or they can be simple text fields

As the plugin needs to connect to your Directus server, you need to handle CORS on the server, read Directus docs on CORS

Directus data model

Options

| Option | Description | Default | |-|-|-| | directusUrl | Directus URL | Required | | collection | Name of the directus collection to hold silex website data | silex | | assets | Path to directus assets folder, relative to the server root | /assets | | formClassName | CSS classes to add to the login form | directus__login | | styles | CSS Styles to apply to the login form | See source code | | userCreated | Wether to update the user_created field | true | | userUpdated | Wether to update the user_updated field | true |

Actions

| Action | Description | |-|-| | login | Show the login form and login | | logout | Log out the user | | relogin | Log out and login immediately again |

Event

| Event | Description | Params | |-|-|-| | login:start | Show login form to start loging in | - | | login:success | The user is logged in | An object with 2 methods: getUser() and getToken() | | login:error | An error occured while login, e.g. wrong password | The error object, with a message field | | logout:success | The user is logged out | - |

Download

  • CDN
    • https://unpkg.com/@silexlabs/grapesjs-directus-storage
  • NPM
    • npm i @silexlabs/grapesjs-directus-storage
  • GIT
    • git clone https://github.com/silexlabs/grapesjs-directus-storage.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-directus-storage.min.js"></script>

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

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

Modern javascript

import grapesjs from 'grapesjs';
import plugin from '@silexlabs/grapesjs-directus-storage';
import 'grapesjs/dist/css/grapes.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/silexlabs/grapesjs-directus-storage.git
$ cd grapesjs-directus-storage

Install dependencies

$ npm i

Start the dev server

$ npm start

Build the source

$ npm run build

License

MIT