@rotorsoft/act-diagram
v0.3.2
Published
Act domain model diagram — extract, visualize, and navigate Act event-sourced models
Readme
@rotorsoft/act-diagram
Interactive domain model diagram for @rotorsoft/act event-sourced apps. Extracts states, actions, events, reactions, slices, and projections from TypeScript source code and renders them as an interactive SVG.
Features
- Real-time visualization — SVG diagram updates as source files change
- Code navigation — click any diagram element to jump to its
file:line:collocation - Per-slice error isolation — broken files show errors in their slice boundary while healthy slices render normally
- Bottom-up model building — states → slices → act, each level independently validated
- IDE-agnostic — works over props, postMessage, or WebSocket (see act-nvim for Neovim integration)
- Embeddable — React component for any host (IDE webview, standalone app, docs site)
- AI refinement — optional prompt bar to generate code via a streaming endpoint
- 100% test coverage — 315+ tests across all metrics
Installation
npm install @rotorsoft/act-diagram
# or
pnpm add @rotorsoft/act-diagramPeer dependencies: react >= 18, react-dom >= 18
How It Works
TypeScript files (.ts)
|
v
topoSort() ← order files by import dependencies
|
v
extractModel() ← transpile + execute with mock builders → DomainModel
| inventory scan → per-state validation → per-slice error isolation
v
validate() ← check for missing emits, orphan reactions, etc.
|
v
computeLayout() ← pure layout: positions nodes, edges, slice boxes, projections
|
v
<Diagram /> ← SVG rendering with pan/zoom/model tree/errors section
|
v
navigateToCode() ← click element → { file, line, col }Extraction Pipeline
The extraction uses mock versions of state(), slice(), projection(), and act() that capture the builder structure without needing the real framework runtime. Code is transpiled with Sucrase and evaluated in an isolated scope.
Bottom-up model building:
- Inventory — scan source files for all
state(),slice(),projection(),act()declarations - Build states — validate each state independently (detects undefined schemas from broken imports)
- Build slices — compose states from step 2, track missing/corrupted references per slice
- Build projections — extract projection handlers
- Compose act — wire slices + projections + reactions into entries, standalone states into a "global" slice
Every item from the inventory is always displayed — with a diagram on success, or an error box on failure.
Usage
Standalone Component
import { ActDiagram } from "@rotorsoft/act-diagram";
function App() {
return (
<ActDiagram
files={[
{ path: "src/states.ts", content: "..." },
{ path: "src/app.ts", content: "..." },
]}
onNavigate={(file, line, col) => {
console.log(`Navigate to ${file}:${line}:${col}`);
}}
/>
);
}IDE Webview (postMessage)
// In the webview
<ActDiagram usePostMessage onNavigate={handleNavigate} />
// From the IDE extension host
webview.postMessage({ type: "files", files: [...] });
webview.postMessage({ type: "fileChanged", path: "src/app.ts", content: "..." });Raw Diagram (bring your own pipeline)
import { Diagram, extractModel, validate } from "@rotorsoft/act-diagram";
const { model } = extractModel(files);
const warnings = validate(model);
<Diagram
model={model}
warnings={warnings}
onClickElement={(name, type, file) => { /* ... */ }}
/>Code Navigation (pure function)
import { navigateToCode } from "@rotorsoft/act-diagram";
const result = navigateToCode(files, "OpenTicket", "action");
// → { file: "src/states.ts", line: 24, col: 7 }API
Components
| Component | Props | Description |
|-----------|-------|-------------|
| ActDiagram | files?, onNavigate?, usePostMessage?, onAiRequest?, generating? | Standalone wrapper: pipeline + diagram + optional AI bar |
| Diagram | model, warnings, onClickElement?, onFixWithAi?, toolbarExtra? | Raw SVG diagram with pan/zoom/model tree/warnings |
| AiBar | onSubmit, generating? | Resizable prompt input with model and token controls |
| Logo | size? | Act logo SVG |
| Tooltip | title, description?, details?, children, position?, align? | Hover tooltip |
Functions
| Function | Signature | Description |
|----------|-----------|-------------|
| extractModel | (files: FileTab[]) => { model: DomainModel; error?: string } | Extract domain model from TypeScript source files |
| validate | (model: DomainModel) => ValidationWarning[] | Validate model for missing emits, etc. |
| navigateToCode | (files, name, type?, targetFile?) => { file, line, col } \| undefined | Find source location of a named element |
| topoSort | (files: FileTab[]) => FileTab[] | Sort files by import dependency order |
| computeLayout | (model: DomainModel) => Layout | Pure layout computation — positions all nodes, edges, and slice boxes |
| emptyModel | () => DomainModel | Create an empty domain model |
Types
type FileTab = { path: string; content: string };
type DomainModel = {
entries: EntryPoint[];
states: StateNode[];
slices: SliceNode[];
projections: ProjectionNode[];
reactions: ReactionNode[];
orchestrator?: ActNode;
};
type StateNode = { name, varName, events: EventNode[], actions: ActionNode[], file?, line? };
type ActionNode = { name, emits: string[], invariants: string[], line? };
type EventNode = { name, hasCustomPatch: boolean, line? };
type SliceNode = { name, states: string[], stateVars: string[], projections: string[], reactions: ReactionNode[], error?, file?, line? };
type ProjectionNode = { name, varName, handles: string[], line? };
type ReactionNode = { event, handlerName, dispatches: string[], isVoid: boolean, line? };
// Layout types
type Box = { x, y, w, h, label, error? };
type Layout = { ns: N[], es: E[], boxes: Box[], minX, minY, width, height };IDE Plugin Protocol
// Host → Diagram
type HostMessage =
| { type: "files"; files: FileTab[] }
| { type: "fileAdded"; path: string; content: string }
| { type: "fileChanged"; path: string; content: string }
| { type: "fileDeleted"; path: string };
// Diagram → Host
type DiagramMessage =
| { type: "navigate"; file: string; line: number; col: number }
| { type: "aiRequest"; prompt: string; files: FileTab[] };Neovim Integration
See @rotorsoft/act-nvim — a Neovim plugin that renders act-diagram in the browser with bidirectional navigation, live refresh, and LSP diagnostic forwarding.
Development
# Visual dev server with sample diagram
pnpm -F @rotorsoft/act-diagram dev
# Run tests (315+ tests, 100% coverage)
pnpm -F @rotorsoft/act-diagram test
# Build library
pnpm -F @rotorsoft/act-diagram buildLicense
MIT
