Created
January 10, 2023 19:40
-
-
Save tripolskypetr/a173470b4ddc51ebbc9dd4cbb5ee4d57 to your computer and use it in GitHub Desktop.
SheetJS Record serializer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const XLSX = require('xlsx'); | |
const data = { | |
key1: 'foo', | |
key2: { | |
bar: 'baz', | |
test: { | |
omg: true, | |
}, | |
}, | |
}; | |
const isObject = (obj) => { | |
if (typeof obj === 'object' && obj !== null) { | |
return Object.getPrototypeOf(obj) === Object.prototype; | |
} else { | |
return false; | |
} | |
}; | |
const objToAoa = (obj) => { | |
const process = (obj, target = []) => { | |
Object.entries(obj).forEach(([key, value]) => { | |
if (isObject(value) || Array.isArray(value)) { | |
const result = process(value); | |
target.push([key]); | |
result.forEach((row) => { | |
target.push(["", ...row]); | |
}); | |
} else { | |
target.push([key, String(value)]); | |
} | |
}); | |
return target; | |
}; | |
return process(obj); | |
}; | |
const worksheet = XLSX.utils.aoa_to_sheet(objToAoa(data)) | |
const workbook = XLSX.utils.book_new(); | |
XLSX.utils.book_append_sheet(workbook, worksheet, "Records"); | |
XLSX.writeFile(workbook, "Records.xlsx"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment