@@ -2,14 +2,13 @@ import type { Plugin } from "unified";
2
2
import type { Root } from "hast" ;
3
3
import { rehypeCodeHook , type MapLike } from "@beoe/rehype-code-hook" ;
4
4
import { type Config as SvgoConfig } from "svgo" ;
5
- import { parse , toModel } from "@ ts-graphviz/ast " ;
5
+ import { fromDot } from "ts-graphviz" ;
6
6
import { processVizdomSvg } from "./vizdom.js" ;
7
7
import { DirectedGraph , VertexWeakRef } from "@vizdom/vizdom-ts-esm" ;
8
8
9
9
export async function getSvg ( code : string ) {
10
10
const graph = new DirectedGraph ( ) ;
11
- const ast = parse ( code ) ;
12
- const model = toModel ( ast ) ;
11
+ const model = fromDot ( code ) ;
13
12
14
13
const nodes : Record < string , VertexWeakRef > = { } ;
15
14
model . nodes . forEach ( ( node ) => {
@@ -31,12 +30,30 @@ export async function getSvg(code: string) {
31
30
32
31
model . edges . forEach ( ( edge ) => {
33
32
const from = edge . targets [ 0 ] ;
34
- const to = edge . targets [ 0 ] ;
33
+ const to = edge . targets [ 1 ] ;
35
34
36
35
if ( Array . isArray ( from ) || Array . isArray ( to ) ) {
37
36
throw new Error ( "what is it?" ) ;
38
37
}
39
38
39
+ if ( ! nodes [ from . id ] ) {
40
+ nodes [ from . id ] = graph . new_vertex ( {
41
+ render : {
42
+ label : from . id ,
43
+ id : from . id ,
44
+ } ,
45
+ } ) ;
46
+ }
47
+
48
+ if ( ! nodes [ to . id ] ) {
49
+ nodes [ to . id ] = graph . new_vertex ( {
50
+ render : {
51
+ label : to . id ,
52
+ id : to . id ,
53
+ } ,
54
+ } ) ;
55
+ }
56
+
40
57
graph . new_edge ( nodes [ from . id ] , nodes [ to . id ] , {
41
58
render : {
42
59
pen_width : edge . attributes . get ( "penwidth" ) ,
@@ -84,8 +101,8 @@ export const rehypeVizdom: Plugin<[RehypeVizdomConfig?], Root> = (
84
101
salt,
85
102
language : "vizdom" ,
86
103
code : ( { code } ) =>
87
- getSvg ( code ) . then ( ( str ) =>
88
- processVizdomSvg ( str , options . class , options . svgo )
104
+ getSvg ( code ) . then (
105
+ ( str ) => processVizdomSvg ( str , options . class , options . svgo )
89
106
) ,
90
107
} ) ;
91
108
} ;
0 commit comments