Class: Effective::FormInputs::PhoneField
- Inherits:
-
Effective::FormInput
- Object
- Effective::FormInput
- Effective::FormInputs::PhoneField
- Defined in:
- app/models/effective/form_inputs/phone_field.rb
Constant Summary collapse
- DEFAULT_TEL_MASK =
'(999) 999-9999? x99999'
- DEFAULT_CELL_MASK =
'(999) 999-9999'
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
Instance Method Summary collapse
- #input_group_options ⇒ Object
- #input_html_options ⇒ Object
- #input_js_options ⇒ Object
-
#validated?(name) ⇒ Boolean
This has gotta be a valid pattern.
Methods inherited from Effective::FormInput
#feedback_options, #hint_options, #initialize, #label_options, #to_html, #wrapper_options
Constructor Details
This class inherits a constructor from Effective::FormInput
Instance Method Details
#input_group_options ⇒ Object
18 19 20 |
# File 'app/models/effective/form_inputs/phone_field.rb', line 18 def { input_group: { class: 'input-group' }, prepend: content_tag(:span, icon('phone'), class: 'input-group-text') } end |
#input_html_options ⇒ Object
10 11 12 |
# File 'app/models/effective/form_inputs/phone_field.rb', line 10 def { class: 'form-control effective_phone', placeholder: '(555) 555-5555', id: tag_id } end |
#input_js_options ⇒ Object
14 15 16 |
# File 'app/models/effective/form_inputs/phone_field.rb', line 14 def { mask: ((cell? || fax?) ? DEFAULT_CELL_MASK : DEFAULT_TEL_MASK), placeholder: '_' } end |
#validated?(name) ⇒ Boolean
This has gotta be a valid pattern
23 24 25 |
# File 'app/models/effective/form_inputs/phone_field.rb', line 23 def validated?(name) true end |