Sha256: 5d1be0731238d237f2c476a1a1cfbc2f1326c77f4160f7d75a693bb5a6cabf5c

Contents?: true

Size: 1.34 KB

Versions: 42

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true

require "active_support/number_helper/number_converter"

module ActiveSupport
  module NumberHelper
    class NumberToCurrencyConverter < NumberConverter # :nodoc:
      self.namespace = :currency

      def convert
        format = options[:format]

        number_d = valid_bigdecimal
        if number_d
          if number_d.negative?
            number_d = number_d.abs
            format = options[:negative_format] if (number_d * 10**options[:precision]) >= 0.5
          end
          number_s = NumberToRoundedConverter.convert(number_d, options)
        else
          number_s = number.to_s.strip
          format = options[:negative_format] if number_s.sub!(/^-/, "")
        end

        format.gsub("%n", number_s).gsub("%u", options[:unit])
      end

      private
        def options
          @options ||= begin
            defaults = default_format_options.merge(i18n_opts)
            # Override negative format if format options are given
            defaults[:negative_format] = "-#{opts[:format]}" if opts[:format]
            defaults.merge!(opts)
          end
        end

        def i18n_opts
          # Set International negative format if it does not exist
          i18n = i18n_format_options
          i18n[:negative_format] ||= "-#{i18n[:format]}" if i18n[:format]
          i18n
        end
    end
  end
end

Version data entries

42 entries across 42 versions & 8 rubygems

Version Path
activesupport-8.0.2 lib/active_support/number_helper/number_to_currency_converter.rb
tailscale_middleware-0.0.3 vendor/cache/ruby/3.4.0/gems/activesupport-8.0.1/lib/active_support/number_helper/number_to_currency_converter.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-8.0.1 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-8.0.0.1 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-7.2.2.1 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-7.1.5.1 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-8.0.0 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-7.2.2 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-7.1.5 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-8.0.0.rc2 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-7.2.1.2 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-7.1.4.2 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-8.0.0.rc1 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-7.2.1.1 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-7.1.4.1 lib/active_support/number_helper/number_to_currency_converter.rb
activesupport-8.0.0.beta1 lib/active_support/number_helper/number_to_currency_converter.rb
omg-activesupport-8.0.0.alpha9 lib/active_support/number_helper/number_to_currency_converter.rb
omg-activesupport-8.0.0.alpha8 lib/active_support/number_helper/number_to_currency_converter.rb
omg-activesupport-8.0.0.alpha7 lib/active_support/number_helper/number_to_currency_converter.rb