Class: Effective::FormInputs::UrlField

Inherits:
Effective::FormInput show all
Defined in:
app/models/effective/form_inputs/url_field.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_js_options, #label_options, #to_html, #wrapper_options

Constructor Details

This class inherits a constructor from Effective::FormInput

Instance Method Details

#input_group_optionsObject



17
18
19
# File 'app/models/effective/form_inputs/url_field.rb', line 17

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

#input_html_optionsObject



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

def input_html_options
  {
    class: 'form-control',
    placeholder: 'https://www.example.com',
    id: tag_id,
    pattern: '(http:\/|https:\/)?\/[^\/+].+',
    type: 'text'
  }
end

#validated?(name) ⇒ Boolean

This has gotta be a valid pattern

Returns:

  • (Boolean)


22
23
24
# File 'app/models/effective/form_inputs/url_field.rb', line 22

def validated?(name)
  true
end