Skip to content

Commit

Permalink
Resolve #345, get comments by target reference
Browse files Browse the repository at this point in the history
  • Loading branch information
xuri committed Feb 23, 2019
1 parent 0072bb7 commit c223815
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions comment.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ func parseFormatCommentsSet(formatSet string) (*formatComment, error) {
func (f *File) GetComments() (comments map[string][]Comment) {
comments = map[string][]Comment{}
for n := range f.sheetMap {
commentID := f.GetSheetIndex(n)
commentsXML := "xl/comments" + strconv.Itoa(commentID) + ".xml"
c, ok := f.XLSX[commentsXML]
c, ok := f.XLSX["xl"+strings.TrimPrefix(f.getSheetComments(f.GetSheetIndex(n)), "..")]
if ok {
d := xlsxComments{}
xml.Unmarshal([]byte(c), &d)
Expand All @@ -58,6 +56,20 @@ func (f *File) GetComments() (comments map[string][]Comment) {
return
}

// getSheetComments provides the method to get the target comment reference by
// given worksheet index.
func (f *File) getSheetComments(sheetID int) string {
var rels = "xl/worksheets/_rels/sheet" + strconv.Itoa(sheetID) + ".xml.rels"
var sheetRels xlsxWorkbookRels
_ = xml.Unmarshal(namespaceStrictToTransitional(f.readXML(rels)), &sheetRels)
for _, v := range sheetRels.Relationships {
if v.Type == SourceRelationshipComments {
return v.Target
}
}
return ""
}

// AddComment provides the method to add comment in a sheet by given worksheet
// index, cell and format set (such as author and text). Note that the max
// author length is 255 and the max text length is 32512. For example, add a
Expand Down

0 comments on commit c223815

Please sign in to comment.