The project is in a healthy, maintained state
TinyMCE editor for rails_admin
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

TinyMCE plugin for rails_admin

Gem Version

RailsAdmin extension for enabling the TinyMCE editor.

  • Does not yet support ActiveStorage for image/files.
  • Tested with tinymce-rails 6.7.2.
  • Turbo Drive is supported (even though tinymce-rails doesn't support it yet).

Installation

To enable rails_admin_tinymce, add the following to your Gemfile:

gem 'rails_admin'
gem 'rails_admin_tinymce'

Then create config/tinymce.yml according to step 2 of tinymce-rails' instructions.

Finally make sure the TinyMCE Javascript is loaded. That may differ depending on how you're using Javascript in Ruby on Rails.

Importmap

Add to importmap.rails_admin.rb:

pin 'tinymce'
pin 'tinymce.rails_admin'

Add to rails_admin.js:

import 'tinymce';
import 'tinymce.rails_admin';

Bundler

TODO

Configuration

RailsAdmin.config do |config|
  config.model Team do
    edit do
      field :description, :tinymce
    end
  end
end

Or, you can provide more options to customize:

RailsAdmin.config do |config|
  config.model Team do
    edit do
      field :description, :tinymce do
        # choose another configuration set from tinymce.yml
        config 'alternate'
        # or override specific options, see https://www.tiny.cloud/docs/tinymce/6/basic-setup/
        options ({ plugins: [:image, :link] })
      end
    end
  end
end

License

The gem is available as open source under the terms of the MIT License.