jacobfitzp / laravel-tiptap-validation
Laravel validation rules for the Tiptap WYSIWYG editor.
Installs: 1 361
Dependents: 0
Suggesters: 0
Security: 0
Stars: 20
Watchers: 1
Forks: 0
Open Issues: 2
Requires
- php: ^8.1
- laravel/helpers: ^1.6
- spatie/laravel-package-tools: ^1.15.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.4
- pestphp/pest: ^2.0
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- roave/security-advisories: dev-latest
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2025-03-11 12:36:59 UTC
README
Configurable Laravel validation rule for Tiptap editor content.
$rules = [ 'tiptap_content' => [ 'required', TiptapValidation::content() ->whitelist() ->nodes('text', 'paragraph') ->marks('bold', 'italic', 'link'), TiptapValidation::containsText() ->between(18, 256), ], ];
Validate Tiptap content in your back-end to prevent unwanted elements and styling from being used.
Please note
This package only works with JSON output, not the raw HTML. You can read more about outputting Tiptap JSON content here.
Installation
You can install the package via composer:
composer require jacobfitzp/laravel-tiptap-validation
And then add the service provider to config/app.php
JacobFitzp\LaravelTiptapValidation\TiptapValidationServiceProvider::class,
Usage
Content
The TiptapContent
rule is used to validate the basic structure and format, as well as limit what nodes and marks are allowed.
Simply call TiptapValidation::content()
within your rules.
TiptapValidation::content()
Blacklisting
Only nodes and marks which are not specified in the blacklist will be allowed, anything else will fail validation.
TiptapValidation::content() ->blacklist() ->nodes('orderedList', 'listItem') ->marks('italic', 'link')
Whitelisting
Only specified nodes and marks are allowed, anything not in the whitelist will fail validation.
TiptapValidation::content() ->whitelist() ->nodes('text', 'paragraph') ->marks('bold')
Extension
Instead of having to configure the rule each time, you could simply create an extension that has your default preferences set.
class MyCustomTiptapValidationRule extends TiptapContent { protected TiptapValidationRuleMode $mode = TiptapValidationRuleMode::WHITELIST; protected array $nodes = ['text', 'paragraph', 'table']; protected array $marks = ['italic', 'link']; }
This can then be used without the need for further configuration:
MyCustomTiptapValidationRule::make(),
Contains Text
The TiptapContainsText
rule is used for verifying that the content contains text, and meets an optional character count requirements.
TiptapValidation::containsText() ->minimum(12) // Minimum character requirement ->maximum(156) // Maximum character requirement ->between(12, 156) // Minimum and maximum character requirement
Configuration
Error messages
First publish the translation files:
php artisan vendor:publish --provider="JacobFitzp\LaravelTiptapValidation\TiptapValidationServiceProvider" --tag="tiptap-validation-translations"
And then you can configure the error messages in lang/vendor/tiptap-validation/messages.php
Testing
composer test
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.