Class: OoxmlParser::NumberFormats

Inherits:
OOXMLDocumentObject show all
Defined in:
lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/number_formats.rb

Overview

Parsing ‘numFmts` tag

Instance Attribute Summary collapse

Attributes inherited from OOXMLDocumentObject

#parent

Instance Method Summary collapse

Methods inherited from OOXMLDocumentObject

#==, add_to_xmls_stack, copy_file_and_rename_to_zip, current_xml, dir, encrypted_file?, get_link_from_rels, unzip_file, #with_data?

Methods included from OoxmlDocumentObjectHelper

#to_hash

Constructor Details

#initialize(parent: nil) ⇒ NumberFormats

Returns a new instance of NumberFormats.



8
9
10
11
# File 'lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/number_formats.rb', line 8

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

Instance Attribute Details

#number_formats_arrayArray, NumberFormat

Returns array of number formats.

Returns:



6
7
8
# File 'lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/number_formats.rb', line 6

def number_formats_array
  @number_formats_array
end

Instance Method Details

#[](key) ⇒ Array, NumberFormats

Returns accessor.

Returns:



14
15
16
# File 'lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/number_formats.rb', line 14

def [](key)
  @number_formats_array[key]
end

#format_by_id(id) ⇒ NumberFormat?

Returns value of format.

Parameters:

  • id (Integer)

    id of format

Returns:



40
41
42
43
44
45
# File 'lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/number_formats.rb', line 40

def format_by_id(id)
  @number_formats_array.each do |cur_format|
    return cur_format if cur_format.id == id
  end
  nil
end

#parse(node) ⇒ NumberFormats

Parse NumberFormats data

Parameters:

  • node (Nokogiri::XML:Element)

    with NumberFormats data

Returns:



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/number_formats.rb', line 21

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