LaravelPackages.net
Acme Inc.
Toggle sidebar
abdelhamiderrahmouni/filament-editorjs

Next generation block styled editor.

2.384
1
v0.1.0
About abdelhamiderrahmouni/filament-editorjs

abdelhamiderrahmouni/filament-editorjs is a Laravel package for next generation block styled editor.. It currently has 1 GitHub stars and 2.384 downloads on Packagist (latest version v0.1.0). Install it with composer require abdelhamiderrahmouni/filament-editorjs. Discover more Laravel packages by abdelhamiderrahmouni or browse all Laravel packages to compare alternatives.

Last updated

Filament EditorJs

Filament EditorJs Latest Version on Packagist Total Downloads

EditorJs integration for Filament Admin/Forms.

Installation

You can install the package via composer:

composer require abdelhamiderrahmouni/filament-editorjs

Usage

use FilamentEditorJs\Forms\Components\EditorJs;

EditorJs::make('content')

Customization

Tools

By default all tools are enabled. This is a list of available tools:

[
    'attaches',         // @editorjs/attaches
    'checklist',        // @editorjs/checklist
    'code',             // @editorjs/code
    'delimiter',        // @editorjs/delimiter
    'header',           // @editorjs/header
    'image-gallery',    // editorjs-gallery
    'image',            // @editorjs/image
    'inline-code',      // @editorjs/inline-code
    'link',             // @editorjs/link
    'list',             // @editorjs/list
    'marker',           // @editorjs/marker
    'nested-list',      // @editorjs/nested-list
    'paragraph',        // @editorjs/paragraph
    'quote',            // @editorjs/quote
    'raw',              // @editorjs/raw
    'style',            // editorjs-style
    'table',            // @editorjs/table
    'underline',        // @editorjs/underline
    'warning',          // @editorjs/warning
]

You can disable any of them using by passing an array of tool names:

EditorJs::make('content')
    ->disableTools(['image', 'raw']);

Also you can enable only certain tools:

EditorJs::make('content')
    ->tools(['image', 'raw']);

Tools Options

You can pass options to the tools:

EditorJs::make('content')
    ->toolsOptions([
        'attaches' => [
            'endpoint' => '/upload/file',
        ],
        'image' => [
            'endpoints' => [
                'byFile' => '/upload/image',
                'byUrl' => '/upload/image-by-url',
            ],
        ],
    ]);

Debugging

To debug the editor, you can enable the debug mode:

EditorJs::make('content')
    ->debug();

Changelog

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

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

Comments