Sha256: aaab82ba4777bcf0dda3c65a3befc9125dfce530cc7259a799b1dcc45ed28311

Contents?: true

Size: 1.61 KB

Versions: 26

Compression:

Stored size: 1.61 KB

Contents

# frozen_string_literal: true

require "active_support/number_helper/number_converter"

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" * precision
              a, b = s.split(".", 2)
              a << "."
              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

26 entries across 26 versions & 3 rubygems

Version Path
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/number_helper/number_to_rounded_converter.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.6.1 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.6 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.5.1 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.5 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.4.8 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.4.7 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.4.6 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.4.5 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.4.4 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.4.3 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.4.2 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.4.1 lib/active_support/number_helper/number_to_rounded_converter.rb
mumukit-content-type-1.11.1 vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.4/lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.4 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.3.7 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.3.6 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.3.5 lib/active_support/number_helper/number_to_rounded_converter.rb
activesupport-6.0.3.4 lib/active_support/number_helper/number_to_rounded_converter.rb