Class: SimpleForm::Inputs::BankAccountNumberInput

Inherits:
StringInput
  • Object
show all
Defined in:
lib/simple_form/bank_account_number.rb

Instance Method Summary collapse

Instance Method Details

#inputObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/simple_form/bank_account_number.rb', line 7

def input
  country = options.delete(:country) || raise(ArgumentError, "You must set the :country key.")
  full_number = options.fetch(:value, "")
  number_parts = SimpleForm::BankAccountNumber::Formatter.(full_number, country).parts
  format = SimpleForm::BankAccountNumber::Format.for_country(country)

  format.parts.map do |part|
    input_html_options.delete(:country) # don't include it in the markup

    input_html_options[:type] = "text"
    input_html_options[:required] = "required"
    input_html_options[:autocomplete] = "off"
    input_html_options[:name] = "#{lookup_model_names.join('_')}[#{reflection_or_attribute_name}][]"
    input_html_options[:pattern] = "^#{part.format.source}$"
    input_html_options[:title] = part.title
    input_html_options[:style] = "width: auto; display: inline; margin-right: .2em"
    input_html_options["data-label"] = part.label
    input_html_options["data-multiline"] = format.multiline

    # Twitter Bootstrap tooltips
    input_html_options["data-toggle"] = "tooltip"
    input_html_options["data-original-title"] = part.title
    input_html_options["data-placement"] = "bottom"

    if length = part.format.source.scan(/\b\d}/).map(&:to_i).max
      input_html_options[:size] = length
      input_html_options[:maxlength] = length
    else
      input_html_options[:size] = nil
      input_html_options[:maxlength] = nil
    end

    input_html_options[:value] = number_parts.shift

    super
  end.join
end