Sha256: 0484801b519fff3db3bc2fd21ebbbb19908f3070c65e5f64bd520a2fb16bd182

Contents?: true

Size: 1.57 KB

Versions: 48

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true

module ActiveSupport
  module NumberHelper
    class NumberToRoundedConverter < NumberConverter # :nodoc:
      self.namespace      = :precision
      self.validate_float = true

      def convert
        helper = RoundingHelper.new(options)
        rounded_number = helper.round(number)

        if precision = options[:precision]
          if options[:significant] && precision > 0
            digits = helper.digit_count(rounded_number)
            precision -= digits
            precision = 0 if precision < 0 # don't let it be negative
          end

          formatted_string =
            if BigDecimal === rounded_number && rounded_number.finite?
              s = rounded_number.to_s("F")
              s << "0".freeze * precision
              a, b = s.split(".".freeze, 2)
              a << ".".freeze
              a << b[0, precision]
            else
              "%00.#{precision}f" % rounded_number
            end
        else
          formatted_string = rounded_number
        end

        delimited_number = NumberToDelimitedConverter.convert(formatted_string, options)
        format_number(delimited_number)
      end

      private

        def strip_insignificant_zeros
          options[:strip_insignificant_zeros]
        end

        def format_number(number)
          if strip_insignificant_zeros
            escaped_separator = Regexp.escape(options[:separator])
            number.sub(/(#{escaped_separator})(\d*[1-9])?0+\z/, '\1\2').sub(/#{escaped_separator}\z/, "")
          else
            number
          end
        end
    end
  end
end

Version data entries

48 entries across 48 versions & 7 rubygems

Version Path
activesupport-5.2.8.1 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.8 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.7.1 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.7 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.6.3 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.6.2 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.6.1 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.6 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.4.6 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.5 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.4.5 lib/active_support/number_helper/number_to_rounded_converter.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.4.1/lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.4.4 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.4.3 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.4.2 lib/active_support/number_helper/number_to_rounded_converter.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.4.1 lib/active_support/number_helper/number_to_rounded_converter.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.4 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-5.2.4.rc1 lib/active_support/number_helper/number_to_rounded_converter.rb