Sha256: 044db543143e20c6b77331213527a8b4c136954b8b8d0c00756d80e9d9dbe40d

Contents?: true

Size: 1.55 KB

Versions: 1

Compression:

Stored size: 1.55 KB

Contents

# frozen_string_literal: true

require 'bigdecimal'

module Thinreports
  module Core
    module Shape
      module TextBlock
        module Formatter
          class Number < Formatter::Basic
            private

            def apply_format_to(value)
              precision = format.format_number_precision
              delimiter = format.format_number_delimiter

              if_applicable value do |val|
                unless blank_value?(precision)
                  val = number_with_precision(val, precision)
                end
                unless blank_value?(delimiter)
                  val = number_with_delimiter(val, delimiter)
                end
                val
              end
            end

            def if_applicable(value, &block)
              normalized_value = normalize(value)
              normalized_value.nil? ? value : block.call(normalized_value)
            end

            def normalize(value)
              if value.is_a?(String)
                # rubocop:disable Style/RescueModifier
                (Integer(value) rescue nil) || (Float(value) rescue nil)
              else
                value
              end
            end

            def number_with_delimiter(value, delimiter = ',')
              value.to_s.gsub(/(\d)(?=(\d{3})+(?!\d))/) { "#{$1}#{delimiter}" }
            end

            def number_with_precision(value, precision = 3)
              value = BigDecimal(value.to_s).round(precision)
              sprintf("%.#{precision}f", value)
            end
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thinreports-0.10.0 lib/thinreports/core/shape/text_block/formatter/number.rb