eckinox/tinymce-bundle

There is no license information available for the latest version (v5.0.0) of this package.

A Symfony bundle to add TinyMCE in your apps and forms.

Installs: 17 178

Dependents: 0

Suggesters: 0

Security: 0

Stars: 19

Watchers: 4

Forks: 3

Open Issues: 4

Language:JavaScript

Type:symfony-bundle

v5.0.0 2024-04-25 20:37 UTC

This package is auto-updated.

Last update: 2024-04-30 13:03:04 UTC


README

Getting started

1. Install this package via Composer

composer require eckinox/tinymce-bundle

2. Start using TinyMCE!

Using TinyMCE in Symfony forms

Adding a TinyMCE editor in your Symfony forms works like any other form types:

public function buildForm(FormBuilderInterface $builder, array $options): void
{
    $builder->add("comment", TinymceType::class, [
        "attr" => [
            "toolbar" => "bold italic underline | bullist numlist",
        ],
    ])
    // ...

Using TinyMCE in templates

To render a TinyMCE editor in Twig without using Symfony forms, you can use the tinymce() Twig function that is provided by this bundle.

Simply provide the value as the first argument and you're good to go.

You can also use the second argument to specify attributes to add to the element.

Here is an example:

{{ tinymce("<p>This is a note</p>", { name: "notes", skin: "oxide" }) }}

Using TinyMCE in Javascript

To render a TinyMCE editor in Javascript, first ensure that the main TinyMCE script is loaded.

If you already use the tinymce() Twig function or the TinymceType on the page, the scripts are already loaded. Otherwise, you can include them on the page either by adding the following scripts manually:

<script src="{{ asset('bundles/tinymce/ext/tinymce/tinymce.min.js') }}"></script>
<script src="{{ asset('bundles/tinymce/ext/tinymce-webcomponent.js') }}" type="module"></script>

or by using the tinymce_scripts() function like so:

{{ tinymce_scripts() }}

Then, all you have to do is add a TinyMCE editor web element on the page with the desired attributes and value.

Here's is an example:

const contentText = document.createTextNode("<p>Your original text goes here</p>");
const editor = document.createElement("tinymce-editor");

editor.append(contentText);
editor.setAttribute("skin", "appstack");

// Add the editor to the page
document.body.append(editor);

You can refer to Tiny's web component documentation for more information.

Configuring TinyMCE

This bundle includes and uses the web component version of TinyMCE.

You can configure TinyMCE by setting HTML attributes on the editor element itself (<tinymce-editor>).

When using the form type, you can use the attr option to set the attributes.
For example, you can set the toolbar's actions like so:

public function buildForm(FormBuilderInterface $builder, array $options): void
{
    $builder->add("comment", TinymceType::class, [
        "attr" => [
            "toolbar" => "bold italic underline | bullist numlist",
        ],
    ])
    // ...

For more information on the different configurations that TinyMCE offers, refer to Tiny's web component documentation.

Default configurations

You can set the following default options in a configuration file:

tinymce:
    # The configurations mirror the TinyMCE attributes.
    # Learn more about each option in Tiny's documentation: 
    # https://www.tiny.cloud/docs/tinymce/6/webcomponent-ref/
    skin: "oxide"
    content_css: "default"
    plugins: "advlist autolink link image media table lists"
    toolbar: "bold italic underline | bullist numlist"
    images_upload_url: "https://yoursite.com/upload"
    images_upload_route: "" # Name of the route for `images_upload_url` (leave `images_upload_url` blank if using this)
    images_upload_route_params: "" # Parameters of the route for `images_upload_url` (leave `images_upload_url` blank if using this)
    images_upload_handler: ""
    images_upload_base_path: ""
    images_upload_credentials: "true"
    images_reuse_filename: ""

File uploads (optional)

File uploads are not handled by default, as the process will vary from project to project.

To set this up, take a look at Tiny's web component file upload documentation.

To help you get started, we have provided an example of what the implementation may look like. You can find this example in docs/file-upload-example.md.

AppStack skin

This bundle comes with an appstack skin, which matches the style of the AppStack Bootstrap template.

This skin is an extension of the tinymce-5, and it has dark mode support built-in.

To use it, simply specify it in your configuration:

# config/packages/tinymce.yaml
tinymce:
    skin: appstack
    content_css: appstack

Versions

Bundle version TinyMCE version TinyMCE Web Component version
1.1 6.8.2 2.0.2
1.0 6.0.2 2.0.0

Contributing

Feel free to submit issues and PRs to the eckinox/tinymce-bundle repository on GitHub.

For more information on how to contribute, check out CONTRIBUTING.md.

License

This bundle is distributed under the MIT license.

TinyMCE and the TinyMCE web component are developed and distributed by Tiny® under the MIT license.