Sha256: b55d9a92e0ff18180a45da376c54ea563b70dd27bf4d4d3c7591ba58dc68bffa

Contents?: true

Size: 1.15 KB

Versions: 40

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true

require_relative 'excel_comments/author'
require_relative 'excel_comments/comment_list'
require_relative 'excel_comments/excel_comment'
module OoxmlParser
  # All Comments of single XLSX
  class ExcelComments < OOXMLDocumentObject
    attr_accessor :authors
    # @return [CommentList] list of comments
    attr_reader :comment_list

    def initialize(parent: nil)
      @authors = []
      @comment_list = []
      super
    end

    # @return [Array<ExcelComment>] list of comments
    def comments
      comment_list.comments
    end

    extend Gem::Deprecate
    deprecate :comments, 'comment_list.comments', 2020, 1

    # Parse file with ExcelComments
    # @param file [String] file to parse
    # @return [ExcelComments] object with data
    def parse(file)
      doc = parse_xml(file)
      node = doc.xpath('*').first
      node.xpath('*').each do |node_child|
        case node_child.name
        when 'authors'
          @authors << Author.new(parent: self).parse(node_child)
        when 'commentList'
          @comment_list = CommentList.new(parent: self).parse(node_child)
        end
      end
      self
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
ooxml_parser-0.37.1 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.37.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.36.1 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.36.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.35.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.34.2 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.34.1 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.34.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.33.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.32.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.31.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.30.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.29.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.28.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.27.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.26.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.25.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.24.0 lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb
ooxml_parser-0.23.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/worksheet/excel_comments.rb
ooxml_parser-0.22.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/worksheet/excel_comments.rb