-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodetomermaid.js
More file actions
574 lines (502 loc) · 19.1 KB
/
Codetomermaid.js
File metadata and controls
574 lines (502 loc) · 19.1 KB
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
// // src/astToMermaid.js
// // Using a simpler approach without heavy AST parsing for browser compatibility
// /**
// * Convert JS source code -> mermaid flowchart string
// * Uses regex-based parsing for browser compatibility
// */
// export function CodeToMermaid(code) {
// if (!code || code.trim() === '') {
// return `flowchart TD\nstart((Start))\nend((End))\nstart --> end`;
// }
// let idCounter = 0;
// const nodes = [];
// const edges = [];
// const getId = (prefix = "n") => `${prefix}${++idCounter}`;
// const escapeLabel = (s = "") =>
// String(s)
// .replace(/\n/g, " ")
// .replace(/"/g, "'")
// .replace(/\[/g, "(")
// .replace(/\]/g, ")")
// .replace(/\{/g, "(")
// .replace(/\}/g, ")")
// .replace(/\(/g, "")
// .replace(/\)/g, "")
// .replace(/[<>]/g, "");
// const addNode = (id, label, shape = "rect") => {
// const L = escapeLabel(label);
// if (shape === "diamond") nodes.push(`${id}{${L}}`);
// else if (shape === "round") nodes.push(`${id}((${L}))`);
// else nodes.push(`${id}[${L}]`);
// };
// const addEdge = (from, to, label) => {
// if (!from || !to) return;
// if (label) edges.push(`${from} -->|${escapeLabel(label)}| ${to}`);
// else edges.push(`${from} --> ${to}`);
// };
// try {
// // Split code into lines and process
// const lines = code.split('\n').map(line => line.trim()).filter(line => line);
// const start = getId("start");
// addNode(start, "Start", "round");
// let currentNode = start;
// for (const line of lines) {
// // Skip comments and empty lines
// if (line.startsWith('//') || line.startsWith('/*') || line === '') {
// continue;
// }
// // Function declarations
// if (line.match(/^\s*function\s+\w+/)) {
// const match = line.match(/function\s+(\w+)/);
// const funcName = match ? match[1] : 'anonymous';
// const id = getId("fn");
// addNode(id, `Function: ${funcName}`, "round");
// addEdge(currentNode, id);
// currentNode = id;
// }
// // If statements
// else if (line.match(/^\s*if\s*\(/)) {
// const condition = line.match(/if\s*\(([^)]+)\)/)?.[1] || 'condition';
// const id = getId("if");
// const cleanCondition = condition.replace(/[()]/g, "").trim();
// addNode(id, `if ${cleanCondition}`, "diamond");
// addEdge(currentNode, id);
// // Create branches
// const yesId = getId("yes");
// const noId = getId("no");
// addNode(yesId, "Yes branch");
// addNode(noId, "No branch");
// addEdge(id, yesId, "yes");
// addEdge(id, noId, "no");
// // Join point
// const joinId = getId("join");
// addNode(joinId, "Continue");
// addEdge(yesId, joinId);
// addEdge(noId, joinId);
// currentNode = joinId;
// }
// // For loops
// else if (line.match(/^\s*for\s*\(/)) {
// const id = getId("for");
// addNode(id, "For Loop", "diamond");
// addEdge(currentNode, id);
// const bodyId = getId("body");
// addNode(bodyId, "Loop Body");
// addEdge(id, bodyId, "iterate");
// addEdge(bodyId, id); // Loop back
// const afterId = getId("after");
// addNode(afterId, "After Loop");
// addEdge(id, afterId, "done");
// currentNode = afterId;
// }
// // While loops
// else if (line.match(/^\s*while\s*\(/)) {
// const condition = line.match(/while\s*\(([^)]+)\)/)?.[1] || 'condition';
// const id = getId("while");
// const cleanCondition = condition.replace(/[()]/g, "").trim();
// addNode(id, `while ${cleanCondition}`, "diamond");
// addEdge(currentNode, id);
// const bodyId = getId("body");
// addNode(bodyId, "Loop Body");
// addEdge(id, bodyId, "true");
// addEdge(bodyId, id); // Loop back
// const afterId = getId("after");
// addNode(afterId, "After Loop");
// addEdge(id, afterId, "false");
// currentNode = afterId;
// }
// // Variable declarations
// else if (line.match(/^\s*(let|const|var)\s+/)) {
// const match = line.match(/(let|const|var)\s+([^=;]+)/);
// const varName = match ? match[2].trim() : 'variable';
// const id = getId("var");
// addNode(id, `Declare: ${varName}`);
// addEdge(currentNode, id);
// currentNode = id;
// }
// // Return statements
// else if (line.match(/^\s*return\b/)) {
// const id = getId("return");
// const returnValue = line.replace(/^\s*return\s*/, '').replace(/;?\s*$/, '');
// addNode(id, `Return: ${returnValue || 'void'}`);
// addEdge(currentNode, id);
// currentNode = id;
// }
// // Function calls or expressions
// else if (line.includes('(') && line.includes(')')) {
// const id = getId("call");
// const shortLine = line.length > 30 ? line.substring(0, 30) + '...' : line;
// addNode(id, `Call: ${shortLine}`);
// addEdge(currentNode, id);
// currentNode = id;
// }
// // General statements
// else {
// const id = getId("stmt");
// const shortLine = line.length > 30 ? line.substring(0, 30) + '...' : line;
// addNode(id, `Statement: ${shortLine}`);
// addEdge(currentNode, id);
// currentNode = id;
// }
// }
// // Add end node
// const end = getId("end");
// addNode(end, "End", "round");
// addEdge(currentNode, end);
// return `flowchart TD\n${nodes.join("\n")}\n${edges.join("\n")}`;
// } catch (err) {
// // Return a minimal mermaid diagram that shows the parse error
// const msg = escapeLabel(err.message || "parse error");
// return `flowchart TD\nerr[Parse error: ${msg}]`;
// }
// }
// IMPROVED CODE FOR BETTER FLOW
// src/astToMermaid.js - Improved version with better block handling
/**
* Convert JS source code -> mermaid flowchart string
* Improved version that better handles code blocks and structure
*/
export function CodeToMermaid(code) {
if (!code || code.trim() === '') {
return `flowchart TD\nstart((Start))\nend((End))\nstart --> end`;
}
let idCounter = 0;
const nodes = [];
const edges = [];
const getId = (prefix = "n") => `${prefix}${++idCounter}`;
// const escapeLabel = (s = "") =>
// String(s)
// .replace(/\n/g, " ")
// .replace(/"/g, "'")
// .replace(/[{}()\[\]<>]/g, "")
// .trim();
const escapeLabel = (s = "") =>
String(s)
.replace(/\n/g, " ")
.replace(/"/g, "'")
// remove only braces and brackets, but keep <, >, <=, >=
.replace(/[{}()\[\]]/g, "")
.trim();
const addNode = (id, label, shape = "rect") => {
const L = escapeLabel(label);
if (shape === "diamond") nodes.push(`${id}{${L}}`);
else if (shape === "round") nodes.push(`${id}((${L}))`);
else nodes.push(`${id}[${L}]`);
};
const addEdge = (from, to, label) => {
if (!from || !to) return;
if (label) edges.push(`${from} -->|${escapeLabel(label)}| ${to}`);
else edges.push(`${from} --> ${to}`);
};
// Tokenize code into meaningful blocks
const tokenizeCode = (code) => {
const lines = code.split('\n').map(line => line.trim()).filter(line => line);
const tokens = [];
let i = 0;
while (i < lines.length) {
const line = lines[i];
// Skip comments and empty lines
if (line.startsWith('//') || line.startsWith('/*') || line === '') {
i++;
continue;
}
// Function declarations
if (line.match(/^\s*function\s+\w+/)) {
const match = line.match(/function\s+(\w+)/);
const funcName = match ? match[1] : 'anonymous';
tokens.push({ type: 'function', name: funcName, line });
i++;
}
// If statements (with block parsing)
else if (line.match(/^\s*if\s*\(/)) {
const condition = line.match(/if\s*\(([^)]+)\)/)?.[1] || 'condition';
const ifBlock = { type: 'if', condition, thenBlock: [], elseBlock: [] };
i++; // Move past if line
// Parse then block
if (i < lines.length && lines[i] === '{') {
i++; // Skip opening brace
while (i < lines.length && lines[i] !== '}') {
if (lines[i].trim()) {
ifBlock.thenBlock.push(lines[i]);
}
i++;
}
i++; // Skip closing brace
} else if (i < lines.length) {
// Single line if
ifBlock.thenBlock.push(lines[i]);
i++;
}
// Check for else
if (i < lines.length && lines[i].match(/^\s*else\s*$/)) {
i++; // Move past else
if (i < lines.length && lines[i] === '{') {
i++; // Skip opening brace
while (i < lines.length && lines[i] !== '}') {
if (lines[i].trim()) {
ifBlock.elseBlock.push(lines[i]);
}
i++;
}
i++; // Skip closing brace
} else if (i < lines.length) {
// Single line else
ifBlock.elseBlock.push(lines[i]);
i++;
}
}
tokens.push(ifBlock);
}
// For loops
else if (line.match(/^\s*for\s*\(/)) {
const loopContent = line.match(/for\s*\(([^)]+)\)/)?.[1] || '';
const forBlock = { type: 'for', condition: loopContent, body: [] };
i++; // Move past for line
if (i < lines.length && lines[i] === '{') {
i++; // Skip opening brace
while (i < lines.length && lines[i] !== '}') {
if (lines[i].trim()) {
forBlock.body.push(lines[i]);
}
i++;
}
i++; // Skip closing brace
} else if (i < lines.length) {
// Single line for
forBlock.body.push(lines[i]);
i++;
}
tokens.push(forBlock);
}
// While loops
else if (line.match(/^\s*while\s*\(/)) {
const condition = line.match(/while\s*\(([^)]+)\)/)?.[1] || 'condition';
const whileBlock = { type: 'while', condition, body: [] };
i++; // Move past while line
if (i < lines.length && lines[i] === '{') {
i++; // Skip opening brace
while (i < lines.length && lines[i] !== '}') {
if (lines[i].trim()) {
whileBlock.body.push(lines[i]);
}
i++;
}
i++; // Skip closing brace
} else if (i < lines.length) {
// Single line while
whileBlock.body.push(lines[i]);
i++;
}
tokens.push(whileBlock);
}
// Skip standalone braces and else keywords
else if (line === '{' || line === '}' || line.match(/^\s*else\s*$/)) {
i++;
}
// Variable declarations
else if (line.match(/^\s*(let|const|var)\s+/)) {
const match = line.match(/(let|const|var)\s+([^=;]+)/);
const varInfo = match ? `${match[1]} ${match[2].trim()}` : line;
tokens.push({ type: 'variable', content: varInfo, line });
i++;
}
// Return statements
else if (line.match(/^\s*return\b/)) {
const returnValue = line.replace(/^\s*return\s*/, '').replace(/;?\s*$/, '');
tokens.push({ type: 'return', value: returnValue || 'void', line });
i++;
}
// Function calls
else if (line.includes('(') && line.includes(')') && !line.includes('=')) {
const funcCall = line.replace(/;?\s*$/, '');
tokens.push({ type: 'call', content: funcCall, line });
i++;
}
// Other statements
else {
tokens.push({ type: 'statement', content: line, line });
i++;
}
}
return tokens;
};
// Process a single statement/expression
const processStatement = (stmt, currentNode) => {
if (stmt.includes('console.log')) {
const match = stmt.match(/console\.log\s*\(\s*(.+?)\s*\)/);
const arg = match ? match[1] : '';
const id = getId("log");
addNode(id, `Log: ${arg}`);
addEdge(currentNode, id);
return id;
} else if (stmt.includes('(') && stmt.includes(')')) {
const id = getId("call");
const shortStmt = stmt.length > 25 ? stmt.substring(0, 25) + '...' : stmt;
addNode(id, `Call: ${shortStmt}`);
addEdge(currentNode, id);
return id;
} else {
const id = getId("stmt");
const shortStmt = stmt.length > 25 ? stmt.substring(0, 25) + '...' : stmt;
addNode(id, `Execute: ${shortStmt}`);
addEdge(currentNode, id);
return id;
}
};
try {
const tokens = tokenizeCode(code);
const start = getId("start");
addNode(start, "Start", "round");
let currentNode = start;
for (const token of tokens) {
switch (token.type) {
case 'function': {
const id = getId("fn");
addNode(id, `Function: ${token.name}`, "round");
addEdge(currentNode, id);
currentNode = id;
break;
}
case 'if': {
const condId = getId("if");
const cleanCondition = token.condition.replace(/[()]/g, "").trim();
addNode(condId, `if ${cleanCondition}`, "diamond");
addEdge(currentNode, condId);
// Process then branch
let thenCurrent = condId;
for (const stmt of token.thenBlock) {
thenCurrent = processStatement(stmt, thenCurrent);
}
if (token.thenBlock.length === 0) {
const emptyId = getId("empty");
addNode(emptyId, "No action");
addEdge(condId, emptyId, "yes");
thenCurrent = emptyId;
} else {
// Add edge label to first statement in then block
const firstThenEdge = edges[edges.length - token.thenBlock.length];
if (firstThenEdge && !firstThenEdge.includes('|yes|')) {
edges[edges.length - token.thenBlock.length] = firstThenEdge.replace('-->', '-->|yes|');
}
}
// Process else branch
let elseCurrent = condId;
for (const stmt of token.elseBlock) {
elseCurrent = processStatement(stmt, elseCurrent);
}
if (token.elseBlock.length === 0) {
const emptyId = getId("empty");
addNode(emptyId, "No action");
addEdge(condId, emptyId, "no");
elseCurrent = emptyId;
} else {
// Add edge label to first statement in else block
const firstElseEdge = edges[edges.length - token.elseBlock.length];
if (firstElseEdge && !firstElseEdge.includes('|no|')) {
edges[edges.length - token.elseBlock.length] = firstElseEdge.replace('-->', '-->|no|');
}
}
// Join point
const joinId = getId("join");
addNode(joinId, "Continue");
addEdge(thenCurrent, joinId);
addEdge(elseCurrent, joinId);
currentNode = joinId;
break;
}
case 'for': {
const loopId = getId("for");
addNode(loopId, "For Loop", "diamond");
addEdge(currentNode, loopId);
// Process loop body
let bodyCurrent = loopId;
for (const stmt of token.body) {
bodyCurrent = processStatement(stmt, bodyCurrent);
}
if (token.body.length === 0) {
const emptyId = getId("empty");
addNode(emptyId, "Empty loop");
addEdge(loopId, emptyId, "iterate");
bodyCurrent = emptyId;
} else {
// Add edge label to first statement in body
const firstBodyEdge = edges[edges.length - token.body.length];
if (firstBodyEdge && !firstBodyEdge.includes('|iterate|')) {
edges[edges.length - token.body.length] = firstBodyEdge.replace('-->', '-->|iterate|');
}
}
// Loop back
addEdge(bodyCurrent, loopId);
// After loop
const afterId = getId("after");
addNode(afterId, "After loop");
addEdge(loopId, afterId, "done");
currentNode = afterId;
break;
}
case 'while': {
const loopId = getId("while");
const cleanCondition = token.condition.replace(/[()]/g, "").trim();
addNode(loopId, `while ${cleanCondition}`, "diamond");
addEdge(currentNode, loopId);
// Process loop body
let bodyCurrent = loopId;
for (const stmt of token.body) {
bodyCurrent = processStatement(stmt, bodyCurrent);
}
if (token.body.length === 0) {
const emptyId = getId("empty");
addNode(emptyId, "Empty loop");
addEdge(loopId, emptyId, "true");
bodyCurrent = emptyId;
} else {
// Add edge label to first statement in body
const firstBodyEdge = edges[edges.length - token.body.length];
if (firstBodyEdge && !firstBodyEdge.includes('|true|')) {
edges[edges.length - token.body.length] = firstBodyEdge.replace('-->', '-->|true|');
}
}
// Loop back
addEdge(bodyCurrent, loopId);
// After loop
const afterId = getId("after");
addNode(afterId, "After loop");
addEdge(loopId, afterId, "false");
currentNode = afterId;
break;
}
case 'variable': {
const id = getId("var");
addNode(id, `Declare: ${token.content}`);
addEdge(currentNode, id);
currentNode = id;
break;
}
case 'return': {
const id = getId("return");
addNode(id, `Return: ${token.value}`);
addEdge(currentNode, id);
currentNode = id;
break;
}
case 'call': {
currentNode = processStatement(token.content, currentNode);
break;
}
default: {
currentNode = processStatement(token.content, currentNode);
break;
}
}
}
// Add end node
const end = getId("end");
addNode(end, "End", "round");
addEdge(currentNode, end);
return `flowchart TD\n${nodes.join("\n")}\n${edges.join("\n")}`;
} catch (err) {
console.error('Parse error:', err);
const msg = escapeLabel(err.message || "parse error");
return `flowchart TD\nerr[Parse error: ${msg}]`;
}
}