Module: ActionView::Helpers::FormHelper
- Defined in:
- app/helpers/action_mosaico/tag_helper.rb
Instance Method Summary collapse
-
#rich_text_mosaico(object_name, method, options = {}) ⇒ Object
Returns a
mosaico-editor
tag that instantiates the mosaico JavaScript editor as well as a hidden field that mosaico will write to on changes, so the content will be sent on form submissions.
Instance Method Details
#rich_text_mosaico(object_name, method, options = {}) ⇒ Object
Returns a mosaico-editor
tag that instantiates the mosaico JavaScript editor as well as a hidden field that mosaico will write to on changes, so the content will be sent on form submissions.
Options
-
:class
- Defaults to “mosaico-content” which ensures default styling is applied. -
:value
- Adds a default value to the HTML input tag. -
[:data][:direct_upload_url]
- Defaults torails_direct_uploads_url
. -
[:data][:blob_url_template]
- Defaults to rails_service_blob_url(“:signed_id”, “:filename”).
Example
form_with(model: @message) do |form|
form.rich_text_mosaico :content
end
# <input type="hidden" name="message[content]" id="message_content_mosaico_input_message_1">
# <mosaico-editor id="content" input="message_content_mosaico_input_message_1" class="mosaico-content" ...></mosaico-editor>
form_with(model: @message) do |form|
form.rich_text_mosaico :content, value: "<h1>Default message</h1>"
end
# <input type="hidden" name="message[content]" id="message_content_mosaico_input_message_1" value="<h1>Default message</h1>">
# <mosaico-editor id="content" input="message_content_mosaico_input_message_1" class="mosaico-content" ...></mosaico-editor>
84 85 86 |
# File 'app/helpers/action_mosaico/tag_helper.rb', line 84 def rich_text_mosaico(object_name, method, = {}) Tags::ActionMosaico.new(object_name, method, self, ).render end |