Class: Effective::FormInputs::PercentField

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

#feedback_options, #hint_options, #initialize, #input_js_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
# File 'app/models/effective/form_inputs/percent_field.rb', line 5

def build_input(&block)
  @builder.hidden_field(name, value: percent_to_integer, id: tag_id + '_value_as_integer') +
  @template.text_field_tag(name, percent_to_s, options[:input].merge(id: tag_id, name: nil))
end

#input_group_optionsObject



10
11
12
# File 'app/models/effective/form_inputs/percent_field.rb', line 10

def input_group_options
  { input_group: { class: 'input-group' }, prepend: (:span, icon('percent'), class: 'input-group-text') }
end

#input_html_optionsObject



14
15
16
# File 'app/models/effective/form_inputs/percent_field.rb', line 14

def input_html_options
  { class: 'form-control effective_percent', autocomplete: 'off' }
end

#validated?(name) ⇒ Boolean

This has gotta be a valid pattern

Returns:

  • (Boolean)


19
20
21
# File 'app/models/effective/form_inputs/percent_field.rb', line 19

def validated?(name)
  true
end