-
Notifications
You must be signed in to change notification settings - Fork 722
/
Copy pathanalyzeTable.js
40 lines (36 loc) · 952 Bytes
/
analyzeTable.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
const detectTables = require('./detectTables');
const handleTables = require('./handleTables');
const { checkNodeHasChildren } = require('../utils');
/**
* @todo inspect below and decide
* @template [https://jsoneditoronline.org/?id=f1ce5803d66149d5bc86d0d53ffb40c0]
*
*/
/**
*
* @param {Object} node
* @returns {Array}
*/
const extractAllTablesFromTree = (node) => {
if (checkNodeHasChildren(node)) {
return detectTables(node);
}
return [];
};
/**
*
* @param {Object} node - current node of the parsed AST
* @param {Object} linkDefinitions - represents all of the link shortcuts
*/
const generateTable = (node) => {
const tables = extractAllTablesFromTree(node);
if (tables && tables.length > 0) {
tables.forEach((table) => {
if (Object.values(table).length > 0) {
const JSONTables = handleTables(table);
}
});
}
return [];
};
module.exports = { generateTable, extractAllTablesFromTree };