Removed git ignored files

This commit is contained in:
2023-05-30 13:32:24 +10:00
parent 4bffb9cbfc
commit 7e3e2a2185
5 changed files with 154 additions and 62 deletions

4
.gitignore vendored
View File

@@ -6,3 +6,7 @@ json2excel
# Ignore test data # Ignore test data
*.json *.json
# Ignore Mac DS_Store files
.DS_Store
**/.DS_Store

View File

@@ -14,3 +14,8 @@ It expects that the json input is formatted as an object containing an array of
| freezeTopRow | true | Freezes the first row of the Excel worksheet | | freezeTopRow | true | Freezes the first row of the Excel worksheet |
| autofilter | true | Sets the auto filter on the first row | | autofilter | true | Sets the auto filter on the first row |
| autowidth | true | Automatically set the column width to fit contents | | autowidth | true | Automatically set the column width to fit contents |
## Advanced configuration
Advanced settings can be provided via a top level json key named "config". Below are options that can be set via this config key:
- key-order

BIN
cmd/.DS_Store vendored

Binary file not shown.

View File

@@ -7,6 +7,7 @@ import (
"log" "log"
"os" "os"
"reflect" "reflect"
"strings"
"time" "time"
"unicode/utf8" "unicode/utf8"
@@ -16,9 +17,16 @@ import (
// Initial concept from https://stackoverflow.com/q/68621039 // Initial concept from https://stackoverflow.com/q/68621039
type Config struct {
keyOrder map[int]string
}
var config Config
func main() { func main() {
//jsonFile := "test.json" //jsonFile := "test.json"
parentNode := "input" parentNode := "input"
configNode := "config"
//worksheetName := "Sheet2" //worksheetName := "Sheet2"
//outputFilename := "test.xlsx" //outputFilename := "test.xlsx"
@@ -55,6 +63,91 @@ func main() {
// Truncate worksheetName to the maximum 31 characters // Truncate worksheetName to the maximum 31 characters
worksheetName = TruncateString(worksheetName, 31) worksheetName = TruncateString(worksheetName, 31)
// Read the json input file
if fileExists(inputJson) {
s, err = os.ReadFile(inputJson)
if err != nil {
panic(err)
}
} else {
fmt.Printf("Input JSON file '%s' does not exist.\n", inputJson)
os.Exit(1)
}
// Unmarshal the json into an orderedmap to preserve the ordering of json structure
o := orderedmap.New()
err = json.Unmarshal([]byte(s), &o)
if err != nil {
error := fmt.Sprintf("JSON Unmarshal error %s\n", err)
panic(error)
}
// Assume that our content is within the first top-level key
topLevel := o.Keys()
// Check for config embedded in json
if strings.EqualFold(topLevel[0], configNode) && len(topLevel) > 1 {
fmt.Printf("Found configNode as toplevel json key, setting parentNode as '%s'\n", topLevel[1])
parentNode = topLevel[1]
config.keyOrder = make(map[int]string)
// Get a reference to the top level node we specified earlier
configInterface, ok := o.Get(configNode)
if !ok {
fmt.Printf("Missing key for multitype array when reading embedded config")
}
// Get an interface that we can work with to access the sub elements
//configSlice := configInterface
//fmt.Printf("%v\n", configSlice)
// Get the keys for the first element so we know what config options have been specified
configMap := configInterface.(orderedmap.OrderedMap)
configKeys := configMap.Keys()
// Parse each key into our config struct
for _, key := range configKeys {
if strings.EqualFold(key, "key-order") {
fmt.Printf("Found config element for key-order\n")
e, _ := configMap.Get(key)
for i, e := range strings.Split(e.(string), ",") {
config.keyOrder[i] = e
}
fmt.Printf("Column order is now : '%v'\n", config.keyOrder)
} else if strings.EqualFold(key, "overwrite-file") {
fmt.Printf("Found config element for overwriting output file\n")
e, _ := configMap.Get(key)
overwriteFile = e.(bool)
}
}
} else if strings.EqualFold(topLevel[0], configNode) {
error := "Only found config in first level of json keys"
panic(error)
} else {
fmt.Printf("Detected toplevel json key as: '%s'\n", topLevel[0])
parentNode = topLevel[0]
}
// Get a reference to the top level node we specified earlier
vislice, ok := o.Get(parentNode)
if !ok {
fmt.Printf("Missing key for multitype array")
}
// Get an interface that we can work with to access the sub elements
vslice := vislice.([]interface{})
// Check that the first element is what we expected
if _, ok := vslice[0].(orderedmap.OrderedMap); !ok {
error := fmt.Sprintf("Type of first vslice element is not an ordered map. It appears to be '%v'\n", reflect.TypeOf(vslice[0]))
panic(error)
}
// Get the keys for the first element so we know what the column names will be
columnMap := vslice[0].(orderedmap.OrderedMap)
//fmt.Printf("First vslice element is an ordered map\n")
columnNames := columnMap.Keys()
// Check if xlsx file exists already, and if it does then open and append data // Check if xlsx file exists already, and if it does then open and append data
if fileExists(outputFilename) { if fileExists(outputFilename) {
if overwriteFile { if overwriteFile {
@@ -75,48 +168,6 @@ func main() {
xlsx = createWorkbook(worksheetName, outputFilename) xlsx = createWorkbook(worksheetName, outputFilename)
} }
// Read the json input file
if fileExists(inputJson) {
s, err = os.ReadFile(inputJson)
if err != nil {
panic(err)
}
} else {
fmt.Printf("Input JSON file '%s' does not exist.\n", inputJson)
os.Exit(1)
}
// Unmarshal the json into an orderedmap to preserve the ordering of json structure
o := orderedmap.New()
err = json.Unmarshal([]byte(s), &o)
if err != nil {
fmt.Printf("JSON Unmarshal error %s\n", err)
}
// Assume that our content is within the first top-level key
topLevel := o.Keys()
fmt.Printf("Detected toplevel json key as: '%s'\n", topLevel[0])
parentNode = topLevel[0]
// Get a reference to the top level node we specified earlier
vislice, ok := o.Get(parentNode)
if !ok {
fmt.Printf("Missing key for multitype array")
}
// Get an interface that we can work with to access the sub elements
vslice := vislice.([]interface{})
// Check that the first element is what we expected
if _, ok := vslice[0].(orderedmap.OrderedMap); !ok {
error := fmt.Sprintf("Type of first vslice element is not an ordered map. It appears to be '%v'\n", reflect.TypeOf(vslice[0]))
panic(error)
}
// Get the keys for the first element so we know what the column names will be
columnMap := vslice[0].(orderedmap.OrderedMap)
fmt.Printf("First vslice element is an ordered map")
columnNames := columnMap.Keys()
// Run code to add column names to the first row of the workbook // Run code to add column names to the first row of the workbook
createHeadingRow(xlsx, worksheetName, columnNames) createHeadingRow(xlsx, worksheetName, columnNames)
@@ -186,13 +237,26 @@ func main() {
// Each iteration should start back at column 1 // Each iteration should start back at column 1
column = 1 column = 1
// Print each key-value pair contained in this slice // Get the key-value pairs contained in this slice
vmap := v.(orderedmap.OrderedMap) vmap := v.(orderedmap.OrderedMap)
k := vmap.Keys() k := vmap.Keys()
if len(config.keyOrder) > 0 {
// If we have a specified order for the values then use that
for j := 0; j < len(config.keyOrder); j++ {
cell, _ = excelize.CoordinatesToCellName(column, row)
e, _ := vmap.Get(config.keyOrder[j])
//fmt.Printf("Setting cell %s to value %v\n", cell, e)
xlsx.SetCellValue(worksheetName, cell, e)
// Move to the next column
column++
}
} else {
// Otherwise use the order the json was in
for j := range k { for j := range k {
//a = string(asciiValue)
//cell = a + strconv.Itoa(2+i)
cell, _ = excelize.CoordinatesToCellName(column, row) cell, _ = excelize.CoordinatesToCellName(column, row)
e, _ := vmap.Get(k[j]) e, _ := vmap.Get(k[j])
@@ -200,9 +264,10 @@ func main() {
xlsx.SetCellValue(worksheetName, cell, e) xlsx.SetCellValue(worksheetName, cell, e)
// Move to the next column // Move to the next column
//asciiValue++
column++ column++
} }
}
//fmt.Printf("k: %v\n", k) //fmt.Printf("k: %v\n", k)
// Move to next row // Move to next row
@@ -327,6 +392,22 @@ func createHeadingRow(xlsx *excelize.File, worksheetName string, columnNames []s
row := 1 row := 1
column := 1 column := 1
if len(config.keyOrder) > 0 {
fmt.Printf("Setting heading order as per config key-order\n")
// Check that the number of specified columns matches input data
if len(config.keyOrder) != len(columnNames) {
error := fmt.Sprintf("Column order specified in json key-order but mismatch found in json data. %d specifed columns does not match %d found columns.", len(config.keyOrder), len(columnNames))
panic(error)
}
// Iterate the map and add the columns as per that order
for i := 0; i < len(config.keyOrder); i++ {
cell, _ = excelize.CoordinatesToCellName(column, row)
fmt.Printf("Setting cell %s to value %s at index %d\n", cell, config.keyOrder[i], i)
xlsx.SetCellValue(worksheetName, cell, config.keyOrder[i])
column++
}
} else {
// Add the header row // Add the header row
for i := 0; i < len(columnNames); i++ { for i := 0; i < len(columnNames); i++ {
cell, _ = excelize.CoordinatesToCellName(column, row) cell, _ = excelize.CoordinatesToCellName(column, row)
@@ -337,6 +418,8 @@ func createHeadingRow(xlsx *excelize.File, worksheetName string, columnNames []s
} }
} }
}
// Taken from https://github.com/qax-os/excelize/issues/92#issuecomment-821578446 // Taken from https://github.com/qax-os/excelize/issues/92#issuecomment-821578446
func SetColAutoWidth(xlsx *excelize.File, sheetName string) error { func SetColAutoWidth(xlsx *excelize.File, sheetName string) error {
// Autofit all columns according to their text content // Autofit all columns according to their text content
@@ -352,7 +435,7 @@ func SetColAutoWidth(xlsx *excelize.File, sheetName string) error {
largestWidth = cellWidth largestWidth = cellWidth
} }
} }
fmt.Printf("SetColAutoWidth calculated largest width is '%d'\n", largestWidth) fmt.Printf("SetColAutoWidth calculated largest width for column index '%d' is '%d'\n", idx, largestWidth)
name, err := excelize.ColumnNumberToName(idx + 1) name, err := excelize.ColumnNumberToName(idx + 1)
if err != nil { if err != nil {
return err return err

BIN
internal/.DS_Store vendored

Binary file not shown.