Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/solidusio-contrib/solidus_editor
:pencil: Adds support for WYSIWYG editors to Solidus
https://github.com/solidusio-contrib/solidus_editor
ckeditor solidus tinymce
Last synced: 20 days ago
JSON representation
:pencil: Adds support for WYSIWYG editors to Solidus
- Host: GitHub
- URL: https://github.com/solidusio-contrib/solidus_editor
- Owner: solidusio-contrib
- License: bsd-3-clause
- Created: 2016-02-02T00:46:45.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T08:33:49.000Z (about 2 years ago)
- Last Synced: 2024-12-20T14:33:01.889Z (about 1 month ago)
- Topics: ckeditor, solidus, tinymce
- Language: Ruby
- Homepage:
- Size: 1.33 MB
- Stars: 19
- Watchers: 14
- Forks: 34
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Solidus Editor
[![CircleCI](https://circleci.com/gh/solidusio-contrib/solidus_editor.svg?style=svg)](https://circleci.com/gh/solidusio-contrib/solidus_editor)
This extension provides an inline rich-text editor for Solidus. It is based off [spree_editor](https://github.com/spree-contrib/spree_editor). It implements different types of editors:
- [CKEditor][1]
- [TinyMCE][2]Please not that this extension is just a simple integration of some pretty complex gems: [`ckeditor`][9] and [`tinymce-rails`][10].
If you have issues, please check their issues trackers first.
---
## Installation
1. Add the Solidus Editor gem to your `Gemfile`:
```ruby
gem 'solidus_editor', github: 'solidusio-contrib/solidus_editor', branch: 'master'
```2. Run:
```sh
$ bundle install
$ rails g solidus_editor:install
```3. If using CKEditor, and would like to enable file uploads run the ckeditor generator:
```sh
$ rails g ckeditor:install --orm=active_record --backend=paperclip && rake db:migrate
```4. In order to secure your file uploads to only be accessed by admins you will also need to configure config/initializers/ckeditor.rb:
```ruby
config.authorize_with :cancan, Spree::Ability
```5. In order to precompile CKEditor's generated assets, you will need to add a line in config/initializers/assets.rb:
```ruby
Rails.application.config.assets.precompile += %w( ckeditor/*)
```
---## Configuration
solidus\_editor should be configured inside an initializer
```ruby
# Required if using solidus_frontend
Spree::Config[:show_raw_product_description] = trueSpreeEditor::Config.tap do |config|
config.ids = 'product_description page_body event_body'# change the editor to CKEditor
config.current_editor = 'CKEditor'
end
```Solidus itself should be configured to show
The default values are:
```ruby
config.enabled = true,
config.current_editor = 'TinyMCE',
config.ids = 'product_description page_body'
```---
## Language-Support
To obtain support for multiple languages with TinyMCE add tinymce-rails-langs to your Gemfile:
```ruby
gem 'tinymce-rails-langs'
```TinyMCE will not be loaded unless it finds a language package matching your `Spree::Config.default_locale`.
---
Testing
-------First bundle your dependencies, then run `rake`. `rake` will default to building the dummy app if it does not exist, then it will run specs, and [Rubocop](https://github.com/bbatsov/rubocop) static code analysis.
```shell
bundle
bundle exec rake
```When testing your application's integration with this extension you may use its factories.
Simply add this require statement to your spec_helper:```ruby
require 'solidus_editor/factories'
```---
Copyright (c) 2016 [James Whelton][5] and other [contributors][6], released under the [New BSD License][7]
[1]: http://ckeditor.com
[2]: http://www.tinymce.com
[3]: http://www.fsf.org/licensing/essays/free-sw.html
[4]: https://github.com/solidusio-contrib/solidus_editor/issues
[5]: https://github.com/Whelton
[6]: https://github.com/solidusio-contrib/solidus_editor/graphs/contributors
[7]: https://github.com/solidusio-contrib/solidus_editor/blob/master/LICENSE.md
[8]: https://github.com/solidusio-contrib/v/blob/master/CONTRIBUTING.md
[9]: https://github.com/galetahub/ckeditor
[10]: https://github.com/spohlenz/tinymce-rails