-
-
Notifications
You must be signed in to change notification settings - Fork 293
Flowchart
DJJo edited this page Mar 30, 2023
·
1 revision
flowchart LR
p1---p2
p2---p3((mind elixir instance))
p3---nodeOperation
subgraph p1["new MindElixir()"]
a[init container] --> b[new Bus]
end
subgraph p2["init()"]
p2a[load plugins] --> p2b
p2b-->p2c
end
subgraph p2b["layout()"]
l1[shape root node]-->l2[initiate direction of main nodes]
l2-->l3[createChildren]
l3-->l3
end
subgraph p2c["linkDiv()"]
ld1[calculate position of main nodes] --> ld2[layout main node, generate main link]
ld2 --> ld3[generate links inside main node]
ld3 --> ld4[generate custom link]
end
subgraph nodeOperation
no1[obj operation] --> no2[dom operation]
no2 --> no3["linkDiv()"]
end