Wappler already has support for Summernote, however, Summernote is old and contains quite a few bugs, or missing features such as drag+drop support uploads (outside Base64).
A handful of users already use TinyMCE in their Wappler projects, including myself, as it’s quite simple to setup but it would be really nice to have this as a native integration in Wappler. The open source free version doesn’t require a signup, either. There’s also a crazy amount of plugins that are much better than summernotes.
As TinyMCE recently switched to MIT license and also are reworked their code base to the latest standards and browsers, it will definitely be a huge gain to integrate with Wappler, as native App Connect component.
I would love to see this. Summernote Lite and Medium Editor just don’t have the same appeal. I would convert my Summernote Lite inputs to TinyMCE in a heartbeat.
You can use the JS below if you'd like. I've been using it for a few years now. It handles getting TinyMCE to work along with image uploads. This is, however, being used on an older version of TinyMCE, so it might need some tweaks for the latest versions.
Use $_POST.file within Wappler's "File Upload". Use "Set Value" with the name "url" and the value as the image URL, and output this. That'll ensure the URL is updated in TinyMCE correctly.
<script>
document.addEventListener('DOMContentLoaded', function() {
tinymce.init({
selector: 'textarea', // Use the appropriate selector for your text area
// Other TinyMCE configuration options
});
});
</script>
Btw we are already busy for some time with TinyMCE as App Connect component and greater integration in Wappler. So it is coming up, probably shortly after the Wappler 6 release.
I know you don’t like to quote timescales @George… but my users are really struggling with Summernote, and I need to move over to something else by the end of this year… do you think you will have TinyMCE integrated by then?