refactor DeleteSheet for better readability (#1078)
Signed-off-by: Michael Wiesenbauer <michael.wiesenbauer@ambos.io> Co-authored-by: Michael Wiesenbauer <michael.wiesenbauer@fau.de>
This commit is contained in:
parent
4ca1b305fe
commit
aa359f1c74
80
sheet.go
80
sheet.go
|
@ -555,48 +555,60 @@ func (f *File) DeleteSheet(name string) {
|
||||||
wbRels := f.relsReader(f.getWorkbookRelsPath())
|
wbRels := f.relsReader(f.getWorkbookRelsPath())
|
||||||
activeSheetName := f.GetSheetName(f.GetActiveSheetIndex())
|
activeSheetName := f.GetSheetName(f.GetActiveSheetIndex())
|
||||||
deleteLocalSheetID := f.GetSheetIndex(name)
|
deleteLocalSheetID := f.GetSheetIndex(name)
|
||||||
// Delete and adjust defined names
|
deleteAndAdjustDefinedNames(wb, deleteLocalSheetID)
|
||||||
if wb.DefinedNames != nil {
|
|
||||||
for idx := 0; idx < len(wb.DefinedNames.DefinedName); idx++ {
|
|
||||||
dn := wb.DefinedNames.DefinedName[idx]
|
|
||||||
if dn.LocalSheetID != nil {
|
|
||||||
localSheetID := *dn.LocalSheetID
|
|
||||||
if localSheetID == deleteLocalSheetID {
|
|
||||||
wb.DefinedNames.DefinedName = append(wb.DefinedNames.DefinedName[:idx], wb.DefinedNames.DefinedName[idx+1:]...)
|
|
||||||
idx--
|
|
||||||
} else if localSheetID > deleteLocalSheetID {
|
|
||||||
wb.DefinedNames.DefinedName[idx].LocalSheetID = intPtr(*dn.LocalSheetID - 1)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for idx, sheet := range wb.Sheets.Sheet {
|
for idx, sheet := range wb.Sheets.Sheet {
|
||||||
if strings.EqualFold(sheet.Name, sheetName) {
|
if !strings.EqualFold(sheet.Name, sheetName) {
|
||||||
wb.Sheets.Sheet = append(wb.Sheets.Sheet[:idx], wb.Sheets.Sheet[idx+1:]...)
|
continue
|
||||||
var sheetXML, rels string
|
}
|
||||||
if wbRels != nil {
|
|
||||||
for _, rel := range wbRels.Relationships {
|
wb.Sheets.Sheet = append(wb.Sheets.Sheet[:idx], wb.Sheets.Sheet[idx+1:]...)
|
||||||
if rel.ID == sheet.ID {
|
var sheetXML, rels string
|
||||||
sheetXML = f.getWorksheetPath(rel.Target)
|
if wbRels != nil {
|
||||||
rels = "xl/worksheets/_rels/" + strings.TrimPrefix(f.sheetMap[sheetName], "xl/worksheets/") + ".rels"
|
for _, rel := range wbRels.Relationships {
|
||||||
}
|
if rel.ID == sheet.ID {
|
||||||
|
sheetXML = f.getWorksheetPath(rel.Target)
|
||||||
|
rels = "xl/worksheets/_rels/" + strings.TrimPrefix(f.sheetMap[sheetName], "xl/worksheets/") + ".rels"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
target := f.deleteSheetFromWorkbookRels(sheet.ID)
|
|
||||||
f.deleteSheetFromContentTypes(target)
|
|
||||||
f.deleteCalcChain(sheet.SheetID, "")
|
|
||||||
delete(f.sheetMap, sheet.Name)
|
|
||||||
f.Pkg.Delete(sheetXML)
|
|
||||||
f.Pkg.Delete(rels)
|
|
||||||
f.Relationships.Delete(rels)
|
|
||||||
f.Sheet.Delete(sheetXML)
|
|
||||||
delete(f.xmlAttr, sheetXML)
|
|
||||||
f.SheetCount--
|
|
||||||
}
|
}
|
||||||
|
target := f.deleteSheetFromWorkbookRels(sheet.ID)
|
||||||
|
f.deleteSheetFromContentTypes(target)
|
||||||
|
f.deleteCalcChain(sheet.SheetID, "")
|
||||||
|
delete(f.sheetMap, sheet.Name)
|
||||||
|
f.Pkg.Delete(sheetXML)
|
||||||
|
f.Pkg.Delete(rels)
|
||||||
|
f.Relationships.Delete(rels)
|
||||||
|
f.Sheet.Delete(sheetXML)
|
||||||
|
delete(f.xmlAttr, sheetXML)
|
||||||
|
f.SheetCount--
|
||||||
}
|
}
|
||||||
f.SetActiveSheet(f.GetSheetIndex(activeSheetName))
|
f.SetActiveSheet(f.GetSheetIndex(activeSheetName))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func deleteAndAdjustDefinedNames(wb *xlsxWorkbook, deleteLocalSheetID int) {
|
||||||
|
if wb == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if wb.DefinedNames == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
for idx := 0; idx < len(wb.DefinedNames.DefinedName); idx++ {
|
||||||
|
dn := wb.DefinedNames.DefinedName[idx]
|
||||||
|
if dn.LocalSheetID != nil {
|
||||||
|
localSheetID := *dn.LocalSheetID
|
||||||
|
if localSheetID == deleteLocalSheetID {
|
||||||
|
wb.DefinedNames.DefinedName = append(wb.DefinedNames.DefinedName[:idx], wb.DefinedNames.DefinedName[idx+1:]...)
|
||||||
|
idx--
|
||||||
|
} else if localSheetID > deleteLocalSheetID {
|
||||||
|
wb.DefinedNames.DefinedName[idx].LocalSheetID = intPtr(*dn.LocalSheetID - 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// deleteSheetFromWorkbookRels provides a function to remove worksheet
|
// deleteSheetFromWorkbookRels provides a function to remove worksheet
|
||||||
// relationships by given relationships ID in the file workbook.xml.rels.
|
// relationships by given relationships ID in the file workbook.xml.rels.
|
||||||
func (f *File) deleteSheetFromWorkbookRels(rID string) string {
|
func (f *File) deleteSheetFromWorkbookRels(rID string) string {
|
||||||
|
|
Loading…
Reference in New Issue