Class: Effective::FormInputs::Editor
- Inherits:
-
Effective::FormInput
- Object
- Effective::FormInput
- Effective::FormInputs::Editor
- Defined in:
- app/models/effective/form_inputs/editor.rb
Constant Summary
Constants inherited from Effective::FormInput
Effective::FormInput::BLANK, Effective::FormInput::EXCLUSIVE_CLASS_PREFIXES, Effective::FormInput::EXCLUSIVE_CLASS_SUFFIXES
Instance Attribute Summary
Attributes inherited from Effective::FormInput
Instance Method Summary collapse
- #build_input(&block) ⇒ Object
-
#delta? ⇒ Boolean
default false.
- #input_html_options ⇒ Object
- #input_js_options ⇒ Object
-
#toolbar ⇒ Object
Commented out ‘Full’ toolbar options because currently we don’t want headers / source / code options.
Methods inherited from Effective::FormInput
#feedback_options, #hint_options, #initialize, #input_group_options, #label_options, #to_html, #wrapper_options
Constructor Details
This class inherits a constructor from Effective::FormInput
Instance Method Details
#build_input(&block) ⇒ Object
5 6 7 8 9 10 |
# File 'app/models/effective/form_inputs/editor.rb', line 5 def build_input(&block) content = value.presence || (capture(&block) if block_given?) @builder.super_text_field(name, [:input]) + content_tag(:div, '', class: 'ql-effective', id: unique_id + '_editor') end |
#delta? ⇒ Boolean
default false
31 32 33 34 35 36 37 38 39 |
# File 'app/models/effective/form_inputs/editor.rb', line 31 def delta? # default false return @delta unless @delta.nil? if .key?(:html) @delta = (.delete(:html) == false) else @delta = (.delete(:delta) || false) end end |
#input_html_options ⇒ Object
12 13 14 |
# File 'app/models/effective/form_inputs/editor.rb', line 12 def { class: 'effective_editor form-control', id: unique_id } end |
#input_js_options ⇒ Object
16 17 18 |
# File 'app/models/effective/form_inputs/editor.rb', line 16 def { modules: { toolbar: }, theme: 'snow', placeholder: "Add #{name.to_s.pluralize}...", delta: delta? } end |
#toolbar ⇒ Object
Commented out ‘Full’ toolbar options because currently we don’t want headers / source / code options
21 22 23 24 25 26 27 28 29 |
# File 'app/models/effective/form_inputs/editor.rb', line 21 def [ # [{'header': [1, 2, 3, 4, false] }], ['bold', 'italic', 'underline'], ['link', 'image', 'video'], # also 'code-block' [{'list': 'ordered'}, { 'list': 'bullet' }], [{'align': [] }, 'clean'], ] end |