-
Notifications
You must be signed in to change notification settings - Fork 85
/
excelParser.js
164 lines (137 loc) · 4.06 KB
/
excelParser.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
import fs from 'fs';
import Stream from 'stream';
import unzip from 'unzipper';
import xpath from 'xpath';
import XMLDOM from 'xmldom';
const ns = { a: 'http://schemas.openxmlformats.org/spreadsheetml/2006/main' };
const select = xpath.useNamespaces(ns);
function extractFiles(path, sheet) {
const files = {
strings: {},
sheet: {},
'xl/sharedStrings.xml': 'strings',
[`xl/worksheets/sheet${sheet}.xml`]: 'sheet'
};
const stream = path instanceof Stream ? path : fs.createReadStream(path);
return new Promise((resolve, reject) => {
const filePromises = [];
stream
.pipe(unzip.Parse())
.on('error', reject)
.on('close', () => {
Promise.all(filePromises).then(() => resolve(files));
})
// For some reason `end` event is not emitted.
// .on('end', () => {
// Promise.all(filePromises).then(() => resolve(files));
// })
.on('entry', (entry) => {
const file = files[entry.path];
if (file) {
let contents = '';
filePromises.push(new Promise((resolve) => {
entry
.on('data', data => contents += data.toString())
.on('end', () => {
files[file].contents = contents;
resolve();
});
}));
} else {
entry.autodrain();
}
});
});
}
function calculateDimensions (cells) {
const comparator = (a, b) => a - b;
const allRows = cells.map(cell => cell.row).sort(comparator);
const allCols = cells.map(cell => cell.column).sort(comparator);
const minRow = allRows[0];
const maxRow = allRows[allRows.length - 1];
const minCol = allCols[0];
const maxCol = allCols[allCols.length - 1];
return [
{ row: minRow, column: minCol },
{ row: maxRow, column: maxCol }
];
}
function extractData(files) {
let sheet;
let values;
const data = [];
try {
sheet = new XMLDOM.DOMParser().parseFromString(files.sheet.contents);
const valuesDoc = new XMLDOM.DOMParser().parseFromString(files.strings.contents);
values = select('//a:si', valuesDoc)
.map(string => select('.//a:t[not(ancestor::a:rPh)]', string).map(t => t.textContent).join(''));
} catch(parseError){
return [];
}
function colToInt(col) {
const letters = ["", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"];
col = col.trim().split('');
let n = 0;
for (let i = 0; i < col.length; i++) {
n *= 26;
n += letters.indexOf(col[i]);
}
return n;
};
const na = {
textContent: ''
};
class CellCoords {
constructor(cell) {
cell = cell.split(/([0-9]+)/);
this.row = parseInt(cell[1]);
this.column = colToInt(cell[0]);
}
}
class Cell {
constructor(cellNode) {
const r = cellNode.getAttribute('r');
const type = cellNode.getAttribute('t') || '';
const value = (select('a:v', cellNode, 1) || na).textContent;
const coords = new CellCoords(r)
this.column = coords.column;
this.row = coords.row;
this.value = value;
this.type = type;
}
}
const cells = select('/a:worksheet/a:sheetData/a:row/a:c', sheet).map(node => new Cell(node));
let d = select('//a:dimension/@ref', sheet, 1);
if (d) {
d = d.textContent.split(':').map(_ => new CellCoords(_));
} else {
d = calculateDimensions(cells);
}
const cols = d[1].column - d[0].column + 1;
const rows = d[1].row - d[0].row + 1;
times(rows, () => {
const row = [];
times(cols, () => row.push(''));
data.push(row);
});
for (const cell of cells) {
let value = cell.value;
if (cell.type == 's') {
value = values[parseInt(value)];
}
if (data[cell.row - d[0].row]) {
data[cell.row - d[0].row][cell.column - d[0].column] = value;
}
}
return data;
}
export default function parseXlsx(path, sheet = '1') {
return extractFiles(path, sheet).then((files) => extractData(files));
};
function times(n, action) {
let i = 0;
while (i < n) {
action();
i++;
}
}