All Projects → FlusherDock1 → Gutenberg

FlusherDock1 / Gutenberg

Licence: MIT license
Gutenberg for October CMS

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to Gutenberg

gutenberg-forms
The Next Generation WordPress Form Builder.
Stars: ✭ 98 (+88.46%)
Mutual labels:  gutenberg
slotfill-and-filter-demos
This repo can be used as reference or can be installed as a plugin in any WordPress install to make code changes as needed. Each SlotFill or filter is explained with examples. This is meant to be a working document and will change as Gutenberg does.
Stars: ✭ 93 (+78.85%)
Mutual labels:  gutenberg
tei2html
XSLT stylesheets to convert TEI to HTML and ePub format.
Stars: ✭ 29 (-44.23%)
Mutual labels:  gutenberg
character-extraction
Extracts character names from a text file and performs analysis of text sentences containing the names.
Stars: ✭ 40 (-23.08%)
Mutual labels:  gutenberg
benenson
A Gutenberg WordPress theme
Stars: ✭ 70 (+34.62%)
Mutual labels:  gutenberg
noptin
Noptin is the best email newsletter plugin for WordPress.
Stars: ✭ 13 (-75%)
Mutual labels:  gutenberg
block-unit-test
Preparing WordPress themes for Gutenberg with the Block Unit Test WordPress Plugin
Stars: ✭ 60 (+15.38%)
Mutual labels:  gutenberg
jarvis
A speedy Gutenberg ready theme
Stars: ✭ 50 (-3.85%)
Mutual labels:  gutenberg
gutenberg
Scraper for downloading the entire ebooks repository of project Gutenberg
Stars: ✭ 100 (+92.31%)
Mutual labels:  gutenberg
remove-gutenberg-panel
Removes the Try Gutenberg panel from the WP-Admin Dashboard, introduced in WordPress 4.9.5 Beta 1. We only want to try Gutenberg once it's ready. Not now.
Stars: ✭ 16 (-69.23%)
Mutual labels:  gutenberg
gutenberg-workshop
⚒️ A Gutenberg Workshop 🅱️
Stars: ✭ 21 (-59.62%)
Mutual labels:  gutenberg
browser-shots
A WordPress plugin for taking screenshots of websites using the block editor.
Stars: ✭ 17 (-67.31%)
Mutual labels:  gutenberg
gumponents
Essential Gutenberg components for WordPress.
Stars: ✭ 29 (-44.23%)
Mutual labels:  gutenberg
gutendex
Web API for Project Gutenberg ebook metadata
Stars: ✭ 91 (+75%)
Mutual labels:  gutenberg
block-navigation
Sidebar with the current post blocks and some tools to facilitate the editing process in the Gutenberg editor.
Stars: ✭ 16 (-69.23%)
Mutual labels:  gutenberg
eightshift-forms
WordPress plugin project for Gutenberg forms
Stars: ✭ 23 (-55.77%)
Mutual labels:  gutenberg
disable-drop-cap
Plugin to disable drop cap in Gutenberg editor paragraph block.
Stars: ✭ 11 (-78.85%)
Mutual labels:  gutenberg
dynamicpdf-plugin
https://octobercms.com/plugin/renatio-dynamicpdf
Stars: ✭ 26 (-50%)
Mutual labels:  octobercms-plugin
oc-backup-plugin
Backup system for October CMS
Stars: ✭ 18 (-65.38%)
Mutual labels:  octobercms-plugin
icon-block
A simple little WordPress block that allows you add an SVG icon or graphic to your website.
Stars: ✭ 24 (-53.85%)
Mutual labels:  gutenberg

Gutenberg for OctoberCMS

PLUGIN CURRENTLY IN BETA. AND IT WILL STAY IN BETA MAYBE FOREVER.

This text in russian

Gutenberg is a rich-text visual editor from WordPress, with the features of bulidng content with blocks. With Gutenberg, you can create truly unique content for your website by simply dragging and dropping blocks.

You can test it online here Gutenberg playground.

This plugin allows you to embed Gutenberg in the backend form of your own model by creating Polymorph relation .

Integration of Laraberg by VanOns\Laraberg for OctoberCMS. All credits goes to VanOns.

Working integrations:

Coming Soon integrations:

Available blocks:

  • Code preview and all standard features such as: custom styles, block settings, reusable blocks.
  • Common blocks
    • Paragraph - (All text formatting also works).
    • Image
    • Heading
    • Audio
    • Gallery
    • Cover
    • File
    • List
    • Quote
    • Video
  • Formatting
    • Code
    • Preformatted
    • Pull quote
    • Classic
    • Custom HTML
    • Table
    • Verse
  • Layout elements
    • Media & text
    • Columns
    • Button
    • Separator
    • Spacer
  • Embeds
    • All embeds

In work:

  • Mediauploader with native OctoberCMS Medialibrary DONE in 1.0.7 update
  • Reusable blocks aren't working DONE in 1.0.8 update
  • Removing WP widgets DONE in 1.0.9 update
  • RainLab.Blog integration DONE in 1.1.0 update
  • Lovata.GoodNews integration DONE in 1.1.2 update
  • Migration to release version of Laraberg DONE in 1.2.0 update
  • Indikator.News integration DONE in 1.2.5 update
  • RainLab.StaticPages integration

Later work:

  • Inline image incorrect behavior (Gutenberg.js bug, need updates from them)
  • Multiple instances of Gutenberg on one page (Gutenberg.js bug, need updates from them)

I will be happy if you help me with any form of custom functions implementation.

Please sumbit your PR in plugin Github Repository.

Notes

As we now on Laraberg 1.0.0-rc.1, i will investigate more about creating multiple instances of Gutenberg on one page.


Installation

Install plugin by OctoberCMS plugin updater.

Go to Settings –> Updates&Plugins find Gutenberg in plugin search. Click on icon and install it.

or via Composer

composer require reazzon/gutenberg

Usage

This plugin works only by implementing Gutenberg behavior in your model. It will create morphOne relation with Gutenberg\Content model.

Go to your model and add behavior in $implement array:

public $implement = ['ReaZzon.Gutenberg.Behaviors.Gutenbergable'];

After you need to add behavior to $implement array in your model controller.

public $implement = ['ReaZzon.Gutenberg.Behaviors.GutenbergController'];

Done. Your model now has morphOne with Gutenberg\Content Model by content field that renders only on created model page.

Rendering

Rendering examples below.

{{ post.content.render }}
$post->content->render();

In order to correctly display Gutenberg styles. You must add laraberg public styles to your page:

<link href="/plugins/reazzon/gutenberg/assets/laraberg.min.css" rel="stylesheet">

Working with source js code

If you want to add some features you can work with source files of Laraberg in /plugins/reazzon/gutenberg/formwidgets/gutenberg/assets/resources, to set up all environment follow these steps:

  1. Clone Gutenberg rep.: git clone https://github.com/WordPress/gutenberg.git gutenberg
  2. After cloning execute these commands:
    cd gutenberg           // go to Gutenberg folder
    npm i                  // install all dependencies
    npm run build          // Build Gutenberg
    sudo npm link          // Link it to your global node_modules 
    cd ..                  // Go back to Laraberg root
    npm i                  // install all dependencies
    npm link gutenberg     // Link Gutenberg package to Laraberg
  3. Now you set up.

Developed by reazzon.ru

Russian OctoberCMS developer community OctoClub.ru

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].