Class: Effective::FormInputs::Checks

Inherits:
CollectionInput show all
Defined in:
app/models/effective/form_inputs/checks.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

#name, #options

Instance Method Summary collapse

Methods inherited from CollectionInput

#assign_options_collection!, #assign_options_collection_methods!, #collection_options, #custom?, #group_label_method, #group_method, #grouped?, #html_options, #initialize, #inline?, #label_method, #option_key_method, #option_value_method, #options_collection, #polymorphic?, #polymorphic_id_method, #polymorphic_id_value, #polymorphic_type_method, #polymorphic_type_value, #polymorphic_value, #translate, #value_method

Methods inherited from Effective::FormInput

#hint_options, #initialize, #input_group_options, #input_js_options, #label_options, #to_html

Constructor Details

This class inherits a constructor from Effective::FormInputs::CollectionInput

Instance Method Details

#actions?Boolean

default true

Returns:

  • (Boolean)


92
93
94
95
# File 'app/models/effective/form_inputs/checks.rb', line 92

def actions? # default true
  return @actions unless @actions.nil?
  @actions = (options.delete(:actions) != false)
end

#build_input(&block) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'app/models/effective/form_inputs/checks.rb', line 6

def build_input(&block)
  html = @builder.collection_check_boxes(name, options_collection, value_method, label_method, collection_options, item_input_options) { |builder| build_item(builder) }

  if disabled? # collection_check_boxes doesn't correctly disable the input type hidden, but does on the build_items
    html = html.sub('<input type="hidden"', '<input type="hidden" disabled="disabled"').html_safe
  end

  html
end

#build_item(builder) ⇒ Object



67
68
69
70
# File 'app/models/effective/form_inputs/checks.rb', line 67

def build_item(builder)
  item_id = unique_id(builder.object)
  build_item_wrap { builder.check_box(id: item_id) + builder.label(item_label_options.merge(for: item_id)) }
end

#build_item_wrap(&block) ⇒ Object



72
73
74
75
76
77
78
# File 'app/models/effective/form_inputs/checks.rb', line 72

def build_item_wrap(&block)
  if custom?
    (:div, yield, class: 'custom-control custom-checkbox ' + (inline? ? 'custom-control-inline' : 'form-group'))
  else
    (:div, yield, class: 'form-check' + (inline? ? ' form-check-inline' : ''))
  end
end

#build_labelObject



52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'app/models/effective/form_inputs/checks.rb', line 52

def build_label
  return BLANK if options[:label] == false
  return BLANK if name.kind_of?(NilClass)

  text = (options[:label].delete(:text) || (object.class.human_attribute_name(name) if object) || BLANK).html_safe

  (:label, options[:label]) do
    text + (:div, class: 'effective-checks-actions text-muted') do
      unless disabled? || !actions?
        link_to('Select All', '#', 'data-effective-checks-all': true) + ' - ' + link_to('Select None', '#', 'data-effective-checks-none': true)
      end
    end
  end
end

#build_wrapper(&block) ⇒ Object



16
17
18
19
20
21
22
# File 'app/models/effective/form_inputs/checks.rb', line 16

def build_wrapper(&block)
  if layout == :horizontal
    (:fieldset, (:div, yield, class: 'row'), options[:wrapper])
  else
    (:fieldset, yield, options[:wrapper])
  end
end

#feedback_optionsObject



35
36
37
38
39
40
41
42
# File 'app/models/effective/form_inputs/checks.rb', line 35

def feedback_options
  return false if layout == :inline

  {
    valid: { class: 'valid-feedback' }.compact,
    invalid: { class: 'invalid-feedback' }.compact
  }
end

#input_html_optionsObject



44
45
46
47
48
49
50
# File 'app/models/effective/form_inputs/checks.rb', line 44

def input_html_options
  if custom?
    { class: 'custom-control-input' }
  else
    { class: 'form-check-input' }
  end
end

#item_input_optionsObject



80
81
82
# File 'app/models/effective/form_inputs/checks.rb', line 80

def item_input_options
  options[:input].except(:inline, :custom, :required)
end

#item_label_optionsObject



84
85
86
87
88
89
90
# File 'app/models/effective/form_inputs/checks.rb', line 84

def item_label_options
  if custom?
    { class: 'custom-control-label' }
  else
    { class: 'form-check-label' }
  end
end

#wrapper_optionsObject



24
25
26
27
28
29
30
31
32
33
# File 'app/models/effective/form_inputs/checks.rb', line 24

def wrapper_options
  { class: [
      'form-group effective-checks',
      ('no-feedback' unless feedback_options),
      tag_id,
      ('is-invalid' if feedback_options && has_error?(name)),
      ('is-valid' if feedback_options && has_error? && !has_error?(name))
    ].compact.join(' ')
  }
end