Forum Academy Marketplace Showcase Pricing Features

šŸš€[NEW PLUGIN] Advanced WYSIWYG text editor

Hello fellow Bubblers!
We have recently published a new plugin and would like to share this news with you:

editor_icon

Advanced WYSIWYG HTML editor - the plugin is based on the SunEditor (WYSIWYG web editor).
The Advanced WYSIWYG HTML editor is a lightweight, flexible, customizable WYSIWYG text editor for your web applications.

Key features:

  • Configurable toolbar with option to add/remove controls. 37+ toolbar buttons. The ability to model the toolbar (buttons) as you need.
  • Option to change the order of the controls in the toolbar.
  • Option to conditionally show hide toolbar.
  • Support for inline styles: Bold, Italic, Underline, StrikeThrough, Code, Subscript, Superscript.
  • Support for block types: Paragraph, H1 - H6, Blockquote, Code.
  • Support for setting font-size and font-family and option to add custom types.
  • Support for ordered / unordered lists and indenting.
  • Support for text-alignment.
  • Support for coloring text or background and option to add your own color values.
  • Support for adding / editing links
  • Support for adding / uploading images.
  • Support for aligning images, setting height, width.
  • Support for Embedded links, flexibility to set height and width.
  • Option of undo and redo.
  • Configurable behavior for RTL and Spellcheck.
  • Support for placeholder.
  • Support for internationalization. 19 interface languages: ckb, da, de, en, es, fr, he, it, ja, ko,l v, nl, pl, pt_br, ro, ru, se, ua, zh_cn.
  • Light and dark themes.
  • 4 mode of the editor (ā€˜classic’, ā€˜inline’, ā€˜balloon’, ā€˜balloon-always’).
  • Pasting from Microsoft Word and Excel.
  • Custom table selection, merge and split.
  • Media embed, images upload (Possibility to insert images, video and audio.).
  • Can use KaTeX (math plugin).
  • A large number of element actions (run in workflows): Set, Get, Show Editor, Hide Editor, Disable Editor, Enable Editor, Append contents to Editor, getText, Show Toolbar, Hide Toolbar, Disable Toolbar, Enable Toolbar, readOnly
  • Browser Support:
    Chrome, Firefox, Opera, Safari, Edge, Internet Explorer -11+
  • And… many other features :slight_smile:

Installation:

  1. Install the plugin. Place the ā€œWYSIWYG editorā€ from elements to wherever part you need.
  2. That’s it. You can refer to the content as that ā€œWYSIWYG editorā€ editor’s content.

Demo:
For detailed connection and demo information, visit the plugin demo page at

There you can go to the editor (OPEN EDITOR).

Plugin page:

Need help adjusting your new application? Our Plugin and Template customers receive a 20% discount for all our Design and Development work.
Contact Jay at [email protected]

Support:
If you have questions, reach out to us at [email protected]

We appreciate your reviews and suggestions.

Cheers
Jay | Mindforapps

.

.

8 Likes

Please, could this plugin already receive pre-defined data, and also dynamic data, pulling from a repeating group, to then generate a pdf?

Thanks

1 Like

You can use the ā€œInitial Contentā€ parameter to pass initial predefined data to the editor. You can see it on the main demo page.

You can dynamically set content through a workflow using the ā€œsetā€ action. ā€œsetā€ - completely replaces the content. But in the next update, an additional ā€œappendContentsā€ action will be added - allowing you to add new data to the end of existing ones.

Whoa… Just discovered this editor, quite amazing… And, your implementation… it’s amazing! Can’t believe how customizable it is and your documentation is perfect.

One question : I see the states ā€œeditor contentā€ and ā€œeditor text contentā€, is there a way they get updated automatically? (on demo page, they stay empty)

Hello!

The ā€œeditor contentā€ and ā€œeditor text contentā€ states are designed to get actual data (content). ā€œeditor text contentā€ returns only text, while ā€œeditor contentā€ returns HTML with all tags and styles.
Content is written to these states after clicking the ā€œSaveā€ button on the toolbar.

In the next update, the ā€œSaveā€ action will be added to write data through the workflow, as well as the ā€œonChangeā€ trigger will be added, which will fire on any content change.
You can save content even after each added letter, or save every few seconds.

Or did you mean something else?

Nope, exactly it. Was just wondering if there was any special action to perform to update the states cause they weren’t updating automatically on the demo page :wink: Thanks!

Other questions while i’m at it lol…

  • Does it work great in repeating groups?
  • I’ve checked the docs a little and I found ā€œimageUploadUrlā€ and ā€œimageUploadHeaderā€, do you think you could make those as variables (to allow someone to upload a picture to an external API/hosting service/etc)? (I see a great use case to send a request to a backend workflow to upload the file to Wasabi, AWS, etc…)
  • What’s the css file someone has to attach to use this editor to build emails and keep the styling?

There are no demos for these states on the demo page.
Now they are updated after clicking the ā€œSaveā€ button on the toolbar.
When we add (I think in a day or two) a ā€œSaveā€ action to the workflow and an ā€œonChangeā€ trigger, you will be able to update states through the workflow. You yourself will be able to determine how to update either after any changes in the content or after a certain time.

1 Like

Yes, the plugin element is inserted into a repeating group and works normally.

These functions are not yet implemented in our plugin. Perhaps in the future we will add this feature.

Here I think it is better to use templates. You can read about templates on the demo page.

1 Like

Hello!

Update v1.0.1

Changes:

  • Added action to workflow - ā€œSaveā€. Now you can save content not only by pressing the ā€œSaveā€ button on the toolbar, but also through the workflow.
  • Added ā€œcontent_changedā€ trigger that fires on any content change.
  • Added the ability to hide the toolbar (hideToolbar).
  • fixed minor bugs in dark theme colors.
  • plus other minor improvements
2 Likes

Provide examples for us to understand how it works and how to put it in our projects

Grateful

The ā€œSaveā€ action writes content to states (ā€œeditor text contentā€ only writes text, while ā€œeditor contentā€ writes formatted HTML along with tags and styles).
Those. by running ā€œSaveā€ (either by clicking the button on the toolbar or through the workflow) we will get the content from the editor for further use.

We’ve added a ā€œSaveā€ workflow action. This allows you to automate the process of updating these states (ā€œcontent editorā€ and ā€œtext content editorā€)

The simplest example is to use this to prevent the loss of data (content) that the user enters into the editor. Content can be saved at specific intervals or immediately after any content change.
Those. in the workflow, you can call the ā€œSaveā€ action, for example, every 10 seconds and after that save the data (write data from ā€œeditor contentā€ or ā€œeditor text contentā€ to the database). Or you can use the ā€œcontent_changedā€ trigger and call the ā€œSaveā€ action after it fires. Here you can choose the method that suits you best.

1 Like

Hi @MindForApps,

Feels like a tool I’m about to use but I need to clarify some points:

  1. Can you disable copy / pasting images into the editor ?
  2. How pasted images behave in the reponsive ?
  3. Can you make those images private?

Thank you !

What I would like to see is how to feed the editor with dynamic data, once the ā€œtemplateā€ has been opened.

Sorry, perhaps I do not quite understand your question, but data can only be inserted into the editor in one whole block. It will not work to add dynamic data inside this data block.
It is possible to replace the entire data block (ā€œSetā€ action) or add some additional data to the end of an existing data block (ā€œAppend contents to Editorā€ action)

Officially, the library that is used to create the plugin does not provide such an opportunity. But I think that we can find a workaround thanks to which it will be possible to disable or allow the ability to paste images through copy paste (from the clipboard).

Well, everything seems to be in order (I guess). When responsive, the height of the image changes depending on the width. Those. proportions are maintained. You can check it out on the demo page. You can insert your images in the demo editors and see how the images behave in the adaptive.

Right now, images can be inserted in two ways:

  1. insert a link to an image already saved somewhere
  2. upload an image that will be encoded in Base64 and inserted into the content in this form.
    But we’re working on giving users the ability to upload images to the app’s database. And so that a link to the uploaded image (and not Base64) is automatically inserted into the content of the editor. I think that we will also be able to make the ability to make these images private (attachTo: optional parameter to attach the file to. It has to be a thing in Bubble). But at the moment I am not ready to talk about the exact timing of the completion of this work.

I would like to expand on my previous answer:

As I wrote, it will not be possible to dynamically insert data into separate places of content in the editor. But you can make something like a content template and dynamically insert data into it. Then, if necessary, run the ā€œSetā€ action, which will replace the existing content with a new one with changed data.

Here is a simple example of a content template with dynamic data connected:

Little bug with the state ā€œeditor text contentā€ : It does not convert breakline to spaces…

This :
Hey
How’s
it going.

Will result in :
HeyHow’sit going.
:slight_smile:

Do you have any way to set the borders? (roundness, color, on hover, on focus, etc) Thanks!

Hello!

Yes you are right. Now I see it too.

After not much testing, it became clear that this is not a big bug in the library that we use to create the plugin.
I wrote to the author of the library and am now waiting for a response from him.
.
.

.
Do you mean the borders around the edit area? Something like that?

If yes, then we will add this feature. But it seems to me that it makes no sense to enable this function on hover. I think that we will make it work when receiving focus. Let’s add the ability to choose the color, thickness and radius of the border.