pdik/filamenteditorjs

Filament EditorJs

Fund package maintenance!
Pdik

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Language:CSS

v1.0.0-beta 2025-04-04 07:50 UTC

This package is auto-updated.

Last update: 2025-04-04 10:38:57 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

A FilamentPHP custom form field that brings the power of Editor.js into your admin panel. This field gives you a clean, structured, block-style content editor that stores data as JSON โ€” perfect for building rich, flexible, and API-friendly content.

Ideal for use cases like blog posts, lesson content, FAQs, or any interface where structured content matters.

โœจ Features

  • โšก Block-style editing with Editor.js
  • ๐Ÿ”Œ Drop-in Filament form component
  • ๐Ÿงฑ Configurable tools (header, paragraph, image, list, and more)
  • ๐Ÿ’พ Stores content as JSON
  • ๐ŸŽจ Built for the TALL stack (Livewire + Alpine.js)
  • ๐Ÿ”ง Publishable config and views for customization

๐Ÿ“ฆ Installation

Install via composer:

composer require pdik/filamenteditorjs

Optional:

php artisan vendor:publish --tag="filamenteditorjs-config"
php artisan vendor:publish --tag="filamenteditorjs-views"

๐Ÿ›  Usage

Inside a Filament form:

use Pdik\FilamentEditorJs\Forms\Components\EditorJs;

\Pdik\FilamentEditorJs\FilamentEditorJs::make('content')
    ->label('Content')
    ->tools(['header', 'paragraph', 'list', 'image']) // Optional: configure active tools
    ->required(),

The field will save content as Editor.js-compatible JSON. You can render it on the frontend with the official Editor.js renderer or any custom solution. Soon there will be a Entry Field to Render the content

๐Ÿงช Testing

composer test

๐Ÿ—บ Coming Soon

  • ๐Ÿงพ EditorJS Entries Viewer โ€“ Easily preview and manage stored Editor.js content inside your Filament panel
  • ๐Ÿงฉ Tool plugin registration via config
  • ๐Ÿ›ก๏ธ Validation support for Editor.js blocks
  • ๐Ÿ“„ Blade component renderer for frontend use

๐Ÿ“œ Changelog

Please see CHANGELOG for more information on what has changed recently.

๐Ÿค Contributing

Please see CONTRIBUTING for details.

๐Ÿ” Security

Please review our security policy for guidelines on reporting vulnerabilities.

๐Ÿ‘ฅ Credits

โš–๏ธ License

The MIT License (MIT). See License File for more information.