Skip to content

Commit c67e917

Browse files
committed
Refactor generate_json.js to handle multiple tags per node
1 parent f34d96b commit c67e917

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

generate_json.js

+14-9
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function getFilename(path) {
4646

4747
const queryNodes = `
4848
SELECT
49-
tags.tag as tags,
49+
GROUP_CONCAT(tags.tag) AS tags,
5050
nodes.properties,
5151
nodes.olp,
5252
nodes.pos,
@@ -75,9 +75,11 @@ WHERE
7575

7676
const queryTags = `
7777
SELECT
78-
*
78+
tags.tag
7979
FROM
8080
tags
81+
GROUP BY
82+
tags.tag
8183
`;
8284

8385
const graphdata = {
@@ -87,14 +89,17 @@ const graphdata = {
8789
db.all(queryNodes, (_, nodes) =>
8890
db.all(queryLinks, (_, links) =>
8991
db.all(queryTags, (_, tags) => {
90-
graphdata.data.nodes = nodes.map(node => ({
91-
...node,
92-
tags: node.tags ?? [null],
93-
file: getFilename(node.file),
94-
properties: parseProperties(node.properties),
95-
}));
92+
graphdata.data.nodes = nodes.map(node => {
93+
const splitTags = node.tags?.split(',') ?? [null];
94+
return{
95+
...node,
96+
tags: splitTags,
97+
file: getFilename(node.file),
98+
properties: parseProperties(node.properties),
99+
};
100+
});
96101
graphdata.data.links = links;
97-
graphdata.data.tags = tags.length ? tags : null;
102+
graphdata.data.tags = tags.length ? tags.map(t => t.tag) : null;
98103

99104
fs.writeFile('graphdata.json', JSON.stringify(removeQuotesFromObject(graphdata)), (err) => {
100105
if (err) throw err;

0 commit comments

Comments
 (0)