Class: Effective::FormInputs::PhoneField

Inherits:
Effective::FormInput show all
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::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, #label_options, #to_html, #wrapper_options

Constructor Details

This class inherits a constructor from Effective::FormInput

Instance Method Details

#input_group_optionsObject



16
17
18
# File 'app/models/effective/form_inputs/phone_field.rb', line 16

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

#input_html_optionsObject



8
9
10
# File 'app/models/effective/form_inputs/phone_field.rb', line 8

def input_html_options
  { class: 'form-control effective_phone', placeholder: '(555) 555-5555' }
end

#input_js_optionsObject



12
13
14
# File 'app/models/effective/form_inputs/phone_field.rb', line 12

def input_js_options
  { mask: ((cell? || fax?) ? DEFAULT_CELL_MASK : DEFAULT_TEL_MASK), placeholder: '_' }
end

#validated?(name) ⇒ Boolean

This has gotta be a valid pattern

Returns:

  • (Boolean)


21
22
23
# File 'app/models/effective/form_inputs/phone_field.rb', line 21

def validated?(name)
  true
end