Class: Effective::FormInputs::ArticleEditor

Inherits:
Effective::FormInput show all
Defined in:
app/models/effective/form_inputs/article_editor.rb

Constant Summary

Constants inherited from Effective::FormInput

Effective::FormInput::BLANK, Effective::FormInput::DEFAULT_FEEDBACK_OPTIONS, Effective::FormInput::DEFAULT_INPUT_GROUP_OPTIONS, Effective::FormInput::EMPTY_HASH, Effective::FormInput::EXCLUSIVE_CLASS_PREFIXES, Effective::FormInput::EXCLUSIVE_CLASS_SUFFIXES, Effective::FormInput::HORIZONTAL_LABEL_OPTIONS, Effective::FormInput::HORIZONTAL_WRAPPER_OPTIONS, Effective::FormInput::INLINE_LABEL_OPTIONS, Effective::FormInput::VERTICAL_WRAPPER_OPTIONS

Instance Attribute Summary

Attributes inherited from Effective::FormInput

#name, #options

Instance Method Summary collapse

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

#active_storageObject



65
66
67
68
69
70
71
72
73
# File 'app/models/effective/form_inputs/article_editor.rb', line 65

def active_storage
  return @active_storage unless @active_storage.nil?

  @active_storage = if options.key?(:active_storage)
    options.delete(:active_storage)
  else
    defined?(ActiveStorage).present?
  end
end

#build_input(&block) ⇒ Object



5
6
7
# File 'app/models/effective/form_inputs/article_editor.rb', line 5

def build_input(&block)
  @builder.super_text_area(name, options[:input])
end

#input_html_optionsObject



9
10
11
# File 'app/models/effective/form_inputs/article_editor.rb', line 9

def input_html_options
  { class: 'effective_article_editor form-control', id: unique_id, autocomplete: 'off' }
end

#input_js_optionsObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'app/models/effective/form_inputs/article_editor.rb', line 13

def input_js_options
  {
    active_storage: active_storage,
    css: '/assets/effective_article_editor/',
    custom: {
      css: ['/assets/application.css', '/assets/effective_bootstrap_article_editor.css']
    },
    classes: {
      body: 'article-editor-body',
      table: 'table'
    },
    grid: {
      classname: 'row',
      columns: 12,
      gutter: '1px',
      offset: {
        left: '15px',
        right: '15px',
      },
      patterns: {
        '6|6': 'col-sm-6|col-sm-6',
        '4|4|4': 'col-sm-4|col-sm-4|col-sm-4',
        '3|3|3|3': 'col-sm-3|col-sm-3|col-sm-3|col-sm-3',
        '2|2|2|2|2|2': 'col-sm-2|col-sm-2|col-sm-2|col-sm-2|col-sm-2|col-sm-2',
        '3|6|3': 'col-sm-3|col-sm-6|col-sm-3',
        '2|8|2': 'col-sm-2|col-sm-8|col-sm-2',
        '5|7': 'col-sm-5|col-sm-7',
        '7|5': 'col-sm-7|col-sm-5',
        '4|8': 'col-sm-4|col-sm-8',
        '8|4': 'col-sm-8|col-sm-4',
        '3|9': 'col-sm-3|col-sm-9',
        '9|3': 'col-sm-9|col-sm-3',
        '2|10': 'col-sm-2|col-sm-10',
        '10|2': 'col-sm-10|col-sm-2',
        '12': 'col-sm-12'
      }
    },
    plugins: ['blockcode', 'imageposition', 'imageresize', 'inlineformat', 'removeformat', 'reorder', 'style'],
    quote: {
      template: '<blockquote><p></p></blockquote>'
    },
    styles: {
      table: {
        'bordered': { title: 'Bordered', classname: 'table-bordered' },
        'responsive': { title: 'Responsive', classname: 'table-responsive' },
        'small': { title: 'Small', classname: 'table-sm' },
        'striped': { title: 'Striped', classname: 'table-striped' },
      }
    }
  }
end