leapt / froala-editor-bundle
Provides a Froala editor integration for Symfony 6 & 7.
Installs: 9 267
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 2
Forks: 1
Open Issues: 2
Type:symfony-bundle
Requires
- php: ^8.2
- ext-zip: *
- symfony/asset: ^6.4 || ^7.0
- symfony/console: ^6.4 || ^7.0
- symfony/form: ^6.4 || ^7.0
- symfony/framework-bundle: ^6.4 || ^7.0
- symfony/http-client: ^6.4 || ^7.0
- symfony/string: ^6.4 || ^7.0
- symfony/twig-bundle: ^6.4 || ^7.0
- twig/twig: ^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.64.0
- phpstan/phpstan: ^1.12.5
- phpstan/phpstan-deprecation-rules: ^1.2.1
- phpunit/phpunit: ^9.6.16
- symfony/css-selector: ^6.4 || ^7.0
- symfony/dom-crawler: ^6.4 || ^7.0
- symfony/yaml: ^6.4 || ^7.0
README
Introduction
This bundle aims to easily integrate & use the Froala editor in Symfony 6.4+/7.0+.
This bundle is a maintained fork of the KMSFroalaEditorBundle.
The changelog is available here:
Table of Contents
- Migration to Leapt Froala Editor bundle from KMS
- Installation
- More configuration
- TODO
- Licence
- Contributing
Migration to Leapt Froala Editor bundle from KMS
It now supports only Symfony 6.4+ & 7.0+, and PHP >= 8.2. Symfony 5.3 is supported in v1.0.0, but its support has been dropped in v1.1.0. Symfony < 6.4 is supported in v1.4.0, but its support has been dropped in v1.5.0.
Replace occurrences of "kms" by "leapt" everywhere (matching case: KMS
becomes Leapt
& kms
becomes leapt
).
Available demo
If you want to try the bundle before installing it in your own projects, you can run this demo project locally: https://github.com/leapt/demo
Installation
Step 1: Install the bundle using composer
composer require leapt/froala-editor-bundle
Note: if you install the bundle using Symfony Flex & accepted the recipe, you can skip steps 2 to 4.
Step 2: Add the bundle to your bundles.php
// config/bundles.php return [ //.. Leapt\FroalaEditorBundle\LeaptFroalaEditorBundle::class => ['all' => true], ];
Step 3: Import routes
# config/routes.yaml leapt_froala_editor: resource: '@LeaptFroalaEditorBundle/Resources/config/routing.php' prefix: /froalaeditor
Step 4: Load Twig form widget
# In config/packages/twig.yaml twig: form_themes: - '@LeaptFroalaEditor/Form/froala_widget.html.twig'
Step 5: Configure the bundle
Required
First, you have to select your language, other settings are optional (see below).
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: language: 'nl'
Other options
All Froala options (list provided here) are supported.
Just add the option name (prefixed with froala_
if it's in your form type) with your value.
If you want to keep Froala default value, don't provide anything in your config file.
For options which require an array, provide a value array.
For options which require an object, provide a key/value array.
Note that some options need some plugins (all information provided in the Froala documentation).
Example for each option type below:
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: toolbarInline: true tableColors: [ '#FFFFFF', '#FF0000' ] saveParams: { "id" : "myEditorField" }
To provide a better integration with Symfony, some custom options are added, see the full list below:
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: # Froala licence number if you want to use a purchased licence. serialNumber: 'XXXX-XXXX-XXXX' # Disable CodeMirror inclusion. includeCodeMirror: false # Disable Font Awesome inclusion. includeFontAwesome: false # Disable all bundle JavaScript inclusion (not concerning CodeMirror). # Usage: if you are using Grunt or Webpack or other, and you want to include yourself all scripts. includeJS: false # Disable all bundle CSS inclusion (not concerning Font Awesome nor CodeMirror). # Usage: if you are using Grunt or Webpack or other, and you want to include yourself all stylesheets. includeCSS: false # Change the froala base path. # Useful eg. when you load it from your own public directory. # Defaults to "/bundles/leaptfroalaeditor/froala_editor" basePath: '/my/custom/path' # Custom JS file. # Usage: add custom plugins/buttons... customJS: '/custom/js/path'
Step 6: Add Froala to your form
Just add a Froala type in your form:
use Leapt\FroalaEditorBundle\Form\Type\FroalaEditorType; $builder->add('field', FroalaEditorType::class);
All configuration items can be overridden:
$builder->add('field', FroalaEditorType::class, [ 'froala_language' => 'fr', 'froala_toolbarInline' => true, 'froala_tableColors' => ['#FFFFFF', '#FF0000'], 'froala_saveParams' => ['id' => 'myEditorField'], ]);
Step 7: Install asset files
To install the asset files, there is froala:install
command that downloads the last version available of Froala Editor
and puts it by default in the vendor/leapt/froala-editor-bundle/src/Resources/public/froala_editor/
directory:
bin/console froala:install
There are a few arguments/options available:
- First (and only) argument (optional): the absolute path where the files will be put after download.
Defaults to
vendor/leapt/froala-editor-bundle/src/Resources/public/froala_editor/
. - Option
tag
: the version of Froala that will be installed (eg.v4.0.1
). Defaults tomaster
. - Option
clear
(no value expected, disabled by default): Allow the command to clear a previous install if the path already exists.
After you launched the install command, you have to link assets, eg.:
bin/console assets:install --symlink public
Step 8: Display editor content
Manually
To preserve the look of the edited HTML outside of the editor you have to include the following CSS files:
<!-- CSS rules for styling the element inside the editor such as p, h1, h2, etc. --> <link href="../css/froala_style.min.css" rel="stylesheet" type="text/css" />
Also, you should make sure that you put the edited content inside an element that has the class fr-view:
<div class="fr-view"> {{ myContentHtml|raw }} </div>
Using the Twig extension
To use the Twig extension, simply call the display function (note that the front CSS file is not included if the parameter includeCSS is false):
{{ froala_display(myContentHtml) }}
Step 9: Profiles (custom configurations)
You can define several configuration profiles that will be reused in your forms, without repeating these configurations.
When using a profile, the root configuration options will be used & overridden:
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: heightMax: 400 attribution: false profiles: profile_1: heightMax: 500
use Leapt\FroalaEditorBundle\Form\Type\FroalaEditorType; $builder->add('field', FroalaEditorType::class, [ 'froala_profile' => 'profile_1', ]);
In this example, profile_1
profile will have these configuration options set:
heightMax
: 500attribution
: false
More configuration
Plugins
All Froala plugins are enabled, but if you don't need one of them, you can disable some plugins...
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: # Disable some plugins. pluginsDisabled: [ 'save', 'fullscreen' ]
... or chose only plugins to enable:
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: # Enable only some plugins. pluginsEnabled: [ 'image', 'file' ]
Plugins can be enabled/disabled for each Froala instance by passing the same array in the form builder.
Concept: Image upload/manager
This bundle provides an integration of the Froala image upload concept to store your images on your own web server (see custom options for configuration like upload folder).
If you want to use your own uploader, you can override the configuration (if you need to do that, please explain me why to improve the provided uploader).
To provide a better integration with Symfony, some custom options are added, see the full list below:
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: # The image upload folder in your /web directory. # Default: "/upload". imageUploadFolder: '/my/upload/folder' # The image upload URL base. # Usage: if you are using URL rewriting for your assets. # Default: same value as provided as folder. imageUploadPath: '/my/upload/path'
Concept: File upload
This bundle provides an integration of the Froala file upload concept to store your files on your own web server (see custom options for configuration like upload folder).
If you want to use your own uploader, you can override the configuration (if you need to do that, please explain me why to improve the provided uploader).
To provide a better integration with Symfony, some custom options are added, see the full list below:
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: # The file upload folder in your /web directory. # Default: "/upload". fileUploadFolder: '/my/upload/folder' # The file upload URL base. # Usage: if you are using URL rewritting for your assets. # Default: same value as provided as folder. fileUploadPath: '/my/upload/path' # Your public directory, from the root directory. # Default: "/public" publicDir: '/home'
Concept: Auto-save
The Froala auto-save concept to automatically request a save action on your server is working, just enter the correct options in your configuration file:
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: saveURL: 'my_save_route' saveInterval: 2500 saveParam: "content"
To provide a better integration with Symfony, some custom options are added, see the full list below:
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: # Add some parameters to your save URL. # Usage: if you need parameters to generate your save action route (see save explaination below). # Default: null. saveURLParams: { "id" : "myId" }
You can add some parameters in your save route (see custom options).
Webpack Encore configuration
If you want to load Froala asset files using npm/yarn and Webpack Encore, here's how to do it:
import FroalaEditor from 'froala-editor'; import 'froala-editor/css/froala_editor.pkgd.min.css'; import 'froala-editor/css/froala_style.min.css'; // Load your languages import 'froala-editor/js/languages/fr.js'; // Load all plugins, or specific ones import 'froala-editor/js/plugins.pkgd.min.js'; import 'froala-editor/css/plugins.pkgd.min.css'; window.FroalaEditor = FroalaEditor; /** * @param editor Editor instance * @param error Error object generated by Froala * @param response Response object coming from the server */ function froalaDisplayError(editor, error, response) { alert(`Error ${error.code}: ${error.message}`); } window.froalaDisplayError = froalaDisplayError;
Instead of defining a generic froalaDisplayError
function, you can also define one per error event, using these
function names:
froalaImageErrorEventHandler
froalaImageManagerErrorEventHandler
froalaSaveErrorEventHandler
froalaFileErrorEventHandler
froalaVideoErrorEventHandler
Now you can disable Froala bundle CSS/JS inclusion:
# config/packages/leapt_froala_editor.yaml leapt_froala_editor: includeJS: false includeCSS: false
Don't forget to import the generated Encore CSS/JS files in your HTML if needed.
TODO
- Add some tests
Licence
This bundle provides an integration of the WYSIWYG Froala Editor commercial version. Please read the Froala licence agreement and go to the pricing page if you don't have a licence.
Contributing
Feel free to contribute, like sending pull requests to add features/tests.
Note there are a few helpers to maintain code quality, that you can run using these commands:
composer cs:dry # Code style check composer phpstan # Static analysis vendor/bin/phpunit # Run tests