Files
ConceptSketch/src/Graphviz.tsx
2025-11-07 22:45:28 +01:00

24 lines
656 B
TypeScript

export function graphToDot(g) {
// Directed graph, use neato layout so we can use pos attributes
const lines = [];
lines.push('digraph G {');
lines.push(' graph [splines=true, overlap=false, rankdir=LR];');
lines.push(' node [shape=rectangle, style=filled, fillcolor="white", fontsize=12];');
// nodes
for (const n of g.nodes) {
const attrs = [];
attrs.push(`label=\"${n.label}\"`);
attrs.push(`id=\"${n.id}\"`)
lines.push(` \"${n.id}\" [${attrs.join(', ')}];`);
}
// edges
for (const e of g.edges) {
lines.push(` \"${e.from}\" -> \"${e.to}\";`);
}
// close
lines.push('}');
return lines.join('\n');
}