Как настроить CKEditor в Rails 3.1 (конвейер Gem + Asset)
Я успешно настроил драгоценный камень ckeditor из https://github.com/galetahub/ckeditor на моем Rails 3.1 приложение. Моя проблема в том, что я не могу понять, как настроить CKEditor. Файлы, используемые в соответствии с Readme, просто не существуют в приложении Rails 3.1 с включенным конвейером активов.
5 ответов
ответ был простым, как только я понял брошенное сообщение об ошибке.
/ app / активы / javascript / ckeditor
CKEDITOR.editorConfig = function( config )
{
config.toolbar_MyToolbar =
[
{ name: 'document', items : [ 'NewPage','Preview' ] },
{ name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
{ name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','Scayt' ] },
{ name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'
,'Iframe' ] },
'/',
{ name: 'styles', items : [ 'Styles','Format' ] },
{ name: 'basicstyles', items : [ 'Bold','Italic','Strike','-','RemoveFormat' ] },
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote' ] },
{ name: 'links', items : [ 'Link','Unlink','Anchor' ] },
{ name: 'tools', items : [ 'Maximize','-','About' ] }
];
}
это важная часть, поместите require_tree (который включает ckeditor/config.в JS) после требование для ckeditor: / app / assets / javascript / application.js
//= require jquery
//= require jquery_ujs
//= require ckeditor/ckeditor
//= require_tree .
Итак, я получил эту работу вчера для Rails 4.0 rc1 и Ruby 2.0, оставив CKEDITOR.editorConfig = часть функции (config) {}.
мой окончательный код в app/assets/javascripts/ckedtior / config.js был
CKEDITOR.config.toolbar= [
{ name: 'basicstyles', items: [ 'Bold', 'Italic' ] }
]
это обновлено ответ рельсы 4.1 С ckeditor 4.1.0 для пользовательской настройки панели инструментов ckeditor.
на ваш взгляд, используя simple_form, вам нужно настроить ввод, как в этом примере:
и _form.ФОРМАТ HTML.Эрб
<%= simple_form_for(@foo) do |f| %>
<%= f.input :bar, as: :ckeditor %>
<%= f.button :submit %>
<% end %>
в ваших активах Javascript вам нужно создать папку под названием "ckeditor" и там создать файл под названием "конфигурация.js"
../ JAVASCRIPTS/CKEDITOR / CONFIG.JS
CKEDITOR.editorConfig = function(config) {
//config.language = 'es'; //this could be any language
config.width = '725';
config.height = '600';
// Filebrowser routes
// The location of an external file browser, that should be launched when "Browse Server" button is pressed.
config.filebrowserBrowseUrl = "/ckeditor/attachment_files";
// The location of an external file browser, that should be launched when "Browse Server" button is pressed in the Flash dialog.
config.filebrowserFlashBrowseUrl = "/ckeditor/attachment_files";
// The location of a script that handles file uploads in the Flash dialog.
config.filebrowserFlashUploadUrl = "/ckeditor/attachment_files";
// The location of an external file browser, that should be launched when "Browse Server" button is pressed in the Link tab of Image dialog.
config.filebrowserImageBrowseLinkUrl = "/ckeditor/pictures";
// The location of an external file browser, that should be launched when "Browse Server" button is pressed in the Image dialog.
config.filebrowserImageBrowseUrl = "/ckeditor/pictures";
// The location of a script that handles file uploads in the Image dialog.
config.filebrowserImageUploadUrl = "/ckeditor/pictures";
// The location of a script that handles file uploads.
config.filebrowserUploadUrl = "/ckeditor/attachment_files";
// You could delete or reorder any of this elements as you wish
config.toolbar_Menu = [
{ name: 'document', items: ['Source', '-', 'Save', 'NewPage', 'DocProps', 'Preview', 'Print', '-', 'Templates'] },
{ name: 'clipboard', items: ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo'] },
{ name: 'editing', items: ['Find', 'Replace', '-', 'SelectAll', '-', 'SpellChecker', 'Scayt'] },
{ name: 'tools', items: ['Maximize', 'ShowBlocks', '-', 'About'] }, '/',
{ name: 'basicstyles', items: ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat'] },
{ name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl'] },
{ name: 'links', items: ['Link', 'Unlink', 'Anchor'] }, '/',
{ name: 'styles', items: ['Styles', 'Format', 'Font', 'FontSize'] },
{ name: 'colors', items: ['TextColor', 'BGColor'] },
{ name: 'insert', items: ['Image', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak'] }
];
config.toolbar = 'Menu';
return true;
};
конфигурация для приложения.js выглядит так, Обратите внимание, что порядок ckeditor и require_tree важно
приложение.JS
//= require jquery
//= require jquery_ujs
//= require ckeditor/init
//= require_tree .
теперь в вашем ckeditor.rb вы должны раскомментировать эту строку " config.asset_path " и добавьте путь к конфигурации.JS файл, который вы создали до которого "/активы / ckeditor/"
../ CONFIG / ИНИЦИАЛИЗАТОРЫ / CKEDITOR.RB
# Use this hook to configure ckeditor
Ckeditor.setup do |config|
# ==> ORM configuration
# Load and configure the ORM. Supports :active_record (default), :mongo_mapper and
# :mongoid (bson_ext recommended) by default. Other ORMs may be
# available as additional gems.
require "ckeditor/orm/active_record"
# Customize ckeditor assets path
# By default: nil
config.asset_path = "/assets/ckeditor/"
end
надеюсь, это поможет: D!
по состоянию на ckeditor
gem версии 3.7.1, у меня все еще нет успеха с конвейером активов на производстве. Тем не менее, у меня был успех с ckeditor_rails
камень. Инструкция по установке находится на странице GitHub проекта, и ее очень легко настроить.
для CKEditor gem v > 4.0
- добавить ниже в приложении.js
//= require_tree ./ckeditor
- Добавить файл config.js в app/assets/javascript / ckeditor
пример конфига.js
if(typeof(CKEDITOR) != 'undefined') { CKEDITOR.editorConfig = function(config) { config.uiColor = "#AADC6E"; config.toolbar = [ [ 'Source', 'Bold' ], ['CreatePlaceholder'] ]; } } else{ console.log("ckeditor not loaded") }