forked from QuarkGluonPlasma/react-course-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.js
55 lines (43 loc) · 1.43 KB
/
index2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const { Workbook } = require('exceljs');
const fs = require('fs');
const languages = ['zh-CN', 'en-US'];
async function main(){
const workbook = new Workbook();
const worksheet = workbook.addWorksheet('test');
const bundleData = languages.map(item => {
return JSON.parse(fs.readFileSync(`./${item}.json`));
})
const data = [];
const messages = JSON.parse(fs.readFileSync('./messages.json'));
bundleData.forEach((item, index) => {
for(let key in messages) {
const foundItem = data.find(item => item.id === key);
if(foundItem) {
foundItem[languages[index]] = item[key]
} else {
data.push({
id: key,
defaultMessage: messages[key].defaultMessage,
description: messages[key].description,
[languages[index]]: item[key]
})
}
}
})
console.log(data);
worksheet.columns = [
{ header: 'ID', key: 'id', width: 30 },
{ header: 'defaultMessage', key: 'defaultMessage', width: 30 },
{ header: 'description', key: 'description', width: 50 },
...languages.map(item => {
return {
header: item,
key: item,
width: 30
}
})
];
worksheet.addRows(data);
workbook.xlsx.writeFile('./bundle.xlsx');
}
main();