Sha256: 2cdf15b08032dab73989ed561a9c843a99d10c76d9a51e05c0dbb7744ccd6c25

Contents?: true

Size: 1.27 KB

Versions: 8

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

module EacRailsUtils
  module CommonFormHelper
    class FormBuilder
      module CurrencyField
        def currency_field(field_name, options = {})
          hidden_id = SecureRandom.hex(5)
          visible_id = SecureRandom.hex(5)
          cf = field(field_name, options) do
            form.hidden_field(field_name, id: hidden_id) <<
              helper.text_field_tag("#{field_name}_visible", '',
                                    id: visible_id, class: 'form-control')
          end
          cf << javascript_currency_mask(hidden_id, visible_id)
        end

        private

        def javascript_currency_mask(hidden_id, visible_id)
          helper.content_tag :script do
            helper.raw("new CurrencyField('#{hidden_id}', '#{visible_id}', " \
                       "#{mask_money_options});")
          end
        end

        def mask_money_options
          <<~JSON_CODE
            {
              prefix: '#{I18n.t('number.currency.format.unit')} ',
              allowNegative: true,
              thousands: '#{I18n.t('number.currency.format.delimiter')}',
              decimal: '#{I18n.t('number.currency.format.separator')}',
              affixesStay: false
            }
          JSON_CODE
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
eac_rails_utils-0.25.0 app/helpers/eac_rails_utils/common_form_helper/form_builder/currency_field.rb
eac_rails_utils-0.24.0 app/helpers/eac_rails_utils/common_form_helper/form_builder/currency_field.rb
eac_rails_utils-0.23.4 app/helpers/eac_rails_utils/common_form_helper/form_builder/currency_field.rb
eac_rails_utils-0.23.3 app/helpers/eac_rails_utils/common_form_helper/form_builder/currency_field.rb
eac_rails_utils-0.23.2 app/helpers/eac_rails_utils/common_form_helper/form_builder/currency_field.rb
eac_rails_utils-0.23.1 app/helpers/eac_rails_utils/common_form_helper/form_builder/currency_field.rb
eac_rails_utils-0.23.0 app/helpers/eac_rails_utils/common_form_helper/form_builder/currency_field.rb
eac_rails_utils-0.22.3 app/helpers/eac_rails_utils/common_form_helper/form_builder/currency_field.rb