Sha256: 2c0ffb1c5cf5e91a31558ff348552b8dfb6a1f85fd399c214c7f18657a56876c

Contents?: true

Size: 1.2 KB

Versions: 4

Compression:

Stored size: 1.2 KB

Contents

require_relative 'number_formats/number_format'
module OoxmlParser
  # Parsing `numFmts` tag
  class NumberFormats < OOXMLDocumentObject
    # @return [Array, NumberFormat] array of number formats
    attr_accessor :number_formats_array

    def initialize(parent: nil)
      @number_formats_array = []
      @parent = parent
    end

    # @return [Array, NumberFormats] accessor
    def [](key)
      @number_formats_array[key]
    end

    # Parse NumberFormats data
    # @param [Nokogiri::XML:Element] node with NumberFormats data
    # @return [NumberFormats] value of NumberFormats data
    def parse(node)
      node.attributes.each do |key, value|
        case key
        when 'count'
          @count = value.value.to_i
        end
      end

      node.xpath('*').each do |node_child|
        case node_child.name
        when 'numFmt'
          @number_formats_array << NumberFormat.new(parent: self).parse(node_child)
        end
      end
      self
    end

    # @param id [Integer] id of format
    # @return [NumberFormat, nil] value of format
    def format_by_id(id)
      @number_formats_array.each do |cur_format|
        return cur_format if cur_format.id == id
      end
      nil
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ooxml_parser-0.4.1 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/number_formats.rb
ooxml_parser-0.4.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/number_formats.rb
ooxml_parser-0.3.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/number_formats.rb
ooxml_parser-0.2.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/number_formats.rb