Skip to content

Commit 6e1475a

Browse files
committed
Fix hyperlink missing after save issue and update completion row element logic to enhance compatibility.
1 parent 2a3620e commit 6e1475a

File tree

4 files changed

+48
-25
lines changed

4 files changed

+48
-25
lines changed

excelize.go

+29-17
Original file line numberDiff line numberDiff line change
@@ -138,27 +138,39 @@ func completeCol(xlsx xlsxWorksheet, row int, cell int) xlsxWorksheet {
138138

139139
// Completion row element tags of XML in a sheet.
140140
func completeRow(xlsx xlsxWorksheet, row int, cell int) xlsxWorksheet {
141-
if len(xlsx.SheetData.Row) < row {
142-
for i := len(xlsx.SheetData.Row); i < row; i++ {
143-
xlsx.SheetData.Row = append(xlsx.SheetData.Row, xlsxRow{
144-
R: i + 1,
145-
})
141+
if len(xlsx.SheetData.Row) >= row {
142+
row = len(xlsx.SheetData.Row)
143+
}
144+
sheetData := xlsxSheetData{}
145+
existsRows := map[int]int{}
146+
for k, v := range xlsx.SheetData.Row {
147+
existsRows[v.R] = k
148+
}
149+
for i := 0; i < row; i++ {
150+
_, ok := existsRows[i+1]
151+
if ok {
152+
sheetData.Row = append(sheetData.Row, xlsx.SheetData.Row[existsRows[i+1]])
153+
continue
146154
}
147-
buffer := bytes.Buffer{}
148-
for ii := 0; ii < row; ii++ {
149-
start := len(xlsx.SheetData.Row[ii].C)
150-
if start == 0 {
151-
for iii := start; iii < cell; iii++ {
152-
buffer.WriteString(toAlphaString(iii + 1))
153-
buffer.WriteString(strconv.Itoa(ii + 1))
154-
xlsx.SheetData.Row[ii].C = append(xlsx.SheetData.Row[ii].C, xlsxC{
155-
R: buffer.String(),
156-
})
157-
buffer.Reset()
158-
}
155+
sheetData.Row = append(sheetData.Row, xlsxRow{
156+
R: i + 1,
157+
})
158+
}
159+
buffer := bytes.Buffer{}
160+
for ii := 0; ii < row; ii++ {
161+
start := len(sheetData.Row[ii].C)
162+
if start == 0 {
163+
for iii := start; iii < cell; iii++ {
164+
buffer.WriteString(toAlphaString(iii + 1))
165+
buffer.WriteString(strconv.Itoa(ii + 1))
166+
sheetData.Row[ii].C = append(sheetData.Row[ii].C, xlsxC{
167+
R: buffer.String(),
168+
})
169+
buffer.Reset()
159170
}
160171
}
161172
}
173+
xlsx.SheetData = sheetData
162174
return xlsx
163175
}
164176

sheet.go

+2-5
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,6 @@ func (f *File) setAppXML() {
116116
// declarations in a single element of a document. This function is a
117117
// horrible hack to fix that after the XML marshalling is completed.
118118
func replaceRelationshipsNameSpace(workbookMarshal string) string {
119-
// newWorkbook := strings.Replace(workbookMarshal, `xmlns:relationships="http://schemas.openxmlformats.org/officeDocument/2006/relationships" relationships:id`, `r:id`, -1)
120-
// Dirty hack to fix issues #63 and #91; encoding/xml currently
121-
// "doesn't allow for additional namespaces to be defined in the
122-
// root element of the document," as described by @tealeg in the
123-
// comments for #63.
124119
oldXmlns := `<workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">`
125120
newXmlns := `<workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">`
126121
return strings.Replace(workbookMarshal, oldXmlns, newXmlns, -1)
@@ -129,6 +124,7 @@ func replaceRelationshipsNameSpace(workbookMarshal string) string {
129124
// replace relationships ID in worksheets/sheet%d.xml
130125
func replaceRelationshipsID(workbookMarshal string) string {
131126
rids := strings.Replace(workbookMarshal, `<drawing rid="" />`, ``, -1)
127+
rids = strings.Replace(rids, `<hyperlinks></hyperlinks>`, ``, -1)
132128
return strings.Replace(rids, `<drawing rid="`, `<drawing r:id="`, -1)
133129
}
134130

@@ -196,5 +192,6 @@ func workBookCompatibility(workbookMarshal string) string {
196192
workbookMarshal = strings.Replace(workbookMarshal, `></calcPr>`, ` />`, -1)
197193
workbookMarshal = strings.Replace(workbookMarshal, `></workbookProtection>`, ` />`, -1)
198194
workbookMarshal = strings.Replace(workbookMarshal, `></fileRecoveryPr>`, ` />`, -1)
195+
workbookMarshal = strings.Replace(workbookMarshal, `></hyperlink>`, ` />`, -1)
199196
return workbookMarshal
200197
}

test/Workbook1.xlsx

84 Bytes
Binary file not shown.

xmlWorksheet.go

+17-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
package excelize
44

5-
import (
6-
"encoding/xml"
7-
)
5+
import "encoding/xml"
86

97
// xlsxWorksheet directly maps the worksheet element in the namespace
108
// http://schemas.openxmlformats.org/spreadsheetml/2006/main -
@@ -18,6 +16,7 @@ type xlsxWorksheet struct {
1816
SheetFormatPr xlsxSheetFormatPr `xml:"sheetFormatPr"`
1917
Cols *xlsxCols `xml:"cols,omitempty"`
2018
SheetData xlsxSheetData `xml:"sheetData"`
19+
Hyperlinks xlsxHyperlinks `xml:"hyperlinks"`
2120
MergeCells *xlsxMergeCells `xml:"mergeCells,omitempty"`
2221
PrintOptions xlsxPrintOptions `xml:"printOptions"`
2322
PageMargins xlsxPageMargins `xml:"pageMargins"`
@@ -278,3 +277,18 @@ type xlsxF struct {
278277
Ref string `xml:"ref,attr,omitempty"` // Shared formula ref
279278
Si int `xml:"si,attr,omitempty"` // Shared formula index
280279
}
280+
281+
// xlsxHyperlinks directly maps the hyperlinks element in the namespace
282+
// http://schemas.openxmlformats.org/spreadsheetml/2006/main
283+
type xlsxHyperlinks struct {
284+
Hyperlink []xlsxHyperlink `xml:"hyperlink"`
285+
}
286+
287+
// xlsxHyperlink directly maps the hyperlink element in the namespace
288+
// http://schemas.openxmlformats.org/spreadsheetml/2006/main
289+
type xlsxHyperlink struct {
290+
Ref string `xml:"ref,attr"`
291+
Location string `xml:"location,attr,omitempty"`
292+
Display string `xml:"display,attr,omitempty"`
293+
RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
294+
}

0 commit comments

Comments
 (0)