Skip to content

TinyMCE integration plugin for the Trestle admin framework

License

Notifications You must be signed in to change notification settings

nhphuc412/trestle-tinymce

 
 

Repository files navigation

Trestle TinyMCE Integration (trestle-tinymce)

TinyMCE integration plugin for the Trestle admin framework

Getting Started

These instructions assume you have a working Trestle application. To integrate trestle-tinymce, first add it to your application's Gemfile:

gem 'trestle-tinymce'

Run bundle install, and then restart your Rails server.

To add a TinyMCE editor to your form, use the editor (or tinymce) field type:

Trestle.resource(:articles) do
  form do |article|
    editor :content
  end
end

The default TinyMCE configuration can be edited by defining options within config/initializers/trestle.rb. The default configuration is shown below:

Trestle.configure do |config|
  config.tinymce.default.configure do |c|
    c.skin = "trestle"
    c.selector = "textarea.tinymce"
    c.branding = false
    c.elementpath = false
    c.menubar = false
    c.statusbar = false
    c.plugins = [
      :lists,
      :link,
      :image,
      :charmap,
      :table,
      :code,
      :hr,
      :paste
    ]
    c.toolbar = [
      "styleselect | bold italic underline strikethrough | subscript superscript hr | alignleft aligncenter alignright alignjustify",
      "bullist numlist | indent outdent | undo redo | link unlink | image charmap table | code"
    ]
    c.link_context_toolbar = true
    c.convert_urls = false
    c.file_picker_types = 'image'
    c.file_picker_callback = "function (cb, value, meta) {
      var input = document.createElement('input');
      input.setAttribute('type', 'file');
      input.setAttribute('accept', 'image/*');

      input.onchange = function () {
        var file = this.files[0];

        var reader = new FileReader();
        reader.onload = function () {
          var id = 'blobid' + (new Date()).getTime();
          var blobCache =  tinymce.activeEditor.editorUpload.blobCache;
          var base64 = reader.result.split(',')[1];
          var blobInfo = blobCache.create(id, file, base64);
          blobCache.add(blobInfo);

          cb(blobInfo.blobUri(), { title: file.name });
        };
        reader.readAsDataURL(file);
      };

      input.click();
    }"
  end
end

License

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

About

TinyMCE integration plugin for the Trestle admin framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 96.1%
  • Less 2.6%
  • Ruby 1.1%
  • JavaScript 0.2%