@principal-ai/principal-view-react 0.14.25 → 0.14.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/SequenceDiagramRenderer.d.ts.map +1 -1
- package/dist/components/SequenceDiagramRenderer.js +83 -7
- package/dist/components/SequenceDiagramRenderer.js.map +1 -1
- package/dist/components/WorkflowSequenceDiagram.d.ts +52 -0
- package/dist/components/WorkflowSequenceDiagram.d.ts.map +1 -0
- package/dist/components/WorkflowSequenceDiagram.js +127 -0
- package/dist/components/WorkflowSequenceDiagram.js.map +1 -0
- package/dist/hooks/useSequenceLayout.d.ts +4 -0
- package/dist/hooks/useSequenceLayout.d.ts.map +1 -1
- package/dist/hooks/useSequenceLayout.js +66 -25
- package/dist/hooks/useSequenceLayout.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/components/SequenceDiagramRenderer.tsx +162 -7
- package/src/components/WorkflowSequenceDiagram.tsx +222 -0
- package/src/hooks/useSequenceLayout.ts +73 -28
- package/src/index.ts +3 -0
- package/src/stories/FileCitySequence.stories.tsx +544 -0
- package/src/stories/data/file-city-images-transformed.otel.canvas.json +295 -0
- package/src/stories/data/file-city-workflows.json +269 -0
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nodes": [
|
|
3
|
+
{
|
|
4
|
+
"id": "title",
|
|
5
|
+
"type": "text",
|
|
6
|
+
"x": 250,
|
|
7
|
+
"y": -50,
|
|
8
|
+
"width": 500,
|
|
9
|
+
"height": 80,
|
|
10
|
+
"color": "#64748B",
|
|
11
|
+
"text": "# File City Image Generation (Participant Model)\n**Sequence-first architecture: Participants, Move Events, and Transform Events**"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"id": "main-process",
|
|
15
|
+
"type": "otel-participant",
|
|
16
|
+
"x": 100,
|
|
17
|
+
"y": 100,
|
|
18
|
+
"width": 350,
|
|
19
|
+
"height": 500,
|
|
20
|
+
"label": "Main Process",
|
|
21
|
+
"shape": "rectangle",
|
|
22
|
+
"participant": {
|
|
23
|
+
"name": "FileCityImageService",
|
|
24
|
+
"description": "Main process service handling File City image generation",
|
|
25
|
+
"scope": "principal-ade-main"
|
|
26
|
+
},
|
|
27
|
+
"transformEvents": [
|
|
28
|
+
{
|
|
29
|
+
"name": "file_city.image.requested",
|
|
30
|
+
"description": "Image generation request received via IPC",
|
|
31
|
+
"attributes": {
|
|
32
|
+
"repo_path": {
|
|
33
|
+
"type": "string",
|
|
34
|
+
"description": "Absolute path to the repository",
|
|
35
|
+
"required": true
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "file_city.cache.checked",
|
|
41
|
+
"description": "Checked disk cache for existing image",
|
|
42
|
+
"attributes": {
|
|
43
|
+
"cache_key": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"description": "SHA256 hash used as cache key"
|
|
46
|
+
},
|
|
47
|
+
"cache_hit": {
|
|
48
|
+
"type": "boolean",
|
|
49
|
+
"description": "Whether cached image was found"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "file_city.filetree.fetched",
|
|
55
|
+
"description": "FileTree fetched from repository-monitoring cache",
|
|
56
|
+
"attributes": {
|
|
57
|
+
"file_count": {
|
|
58
|
+
"type": "integer",
|
|
59
|
+
"description": "Number of files in tree"
|
|
60
|
+
},
|
|
61
|
+
"has_tree": {
|
|
62
|
+
"type": "boolean",
|
|
63
|
+
"description": "Whether file tree was available"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "file_city.image.generation_started",
|
|
69
|
+
"description": "Started generating File City image",
|
|
70
|
+
"attributes": {
|
|
71
|
+
"file_count": {
|
|
72
|
+
"type": "integer",
|
|
73
|
+
"description": "Number of files to visualize"
|
|
74
|
+
},
|
|
75
|
+
"image_width": {
|
|
76
|
+
"type": "integer",
|
|
77
|
+
"description": "Output image width in pixels"
|
|
78
|
+
},
|
|
79
|
+
"image_height": {
|
|
80
|
+
"type": "integer",
|
|
81
|
+
"description": "Output image height in pixels"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "file_city.image.generation_complete",
|
|
87
|
+
"description": "Image generated and saved to cache",
|
|
88
|
+
"attributes": {
|
|
89
|
+
"cache_path": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"description": "Path where image was saved"
|
|
92
|
+
},
|
|
93
|
+
"duration_ms": {
|
|
94
|
+
"type": "integer",
|
|
95
|
+
"description": "Time taken to generate image"
|
|
96
|
+
},
|
|
97
|
+
"file_size_bytes": {
|
|
98
|
+
"type": "integer",
|
|
99
|
+
"description": "Size of generated PNG"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "file_city.image.cache_hit",
|
|
105
|
+
"description": "Cached image found and returned",
|
|
106
|
+
"attributes": {
|
|
107
|
+
"cache_path": {
|
|
108
|
+
"type": "string",
|
|
109
|
+
"description": "Path to cached PNG file"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "file_city.image.error",
|
|
115
|
+
"description": "Error occurred during image generation",
|
|
116
|
+
"attributes": {
|
|
117
|
+
"error_type": {
|
|
118
|
+
"type": "string",
|
|
119
|
+
"description": "Type of error"
|
|
120
|
+
},
|
|
121
|
+
"error_message": {
|
|
122
|
+
"type": "string",
|
|
123
|
+
"description": "Error message"
|
|
124
|
+
},
|
|
125
|
+
"phase": {
|
|
126
|
+
"type": "string",
|
|
127
|
+
"description": "Phase where error occurred"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "file_city.image.skipped",
|
|
133
|
+
"description": "Image generation skipped - no file tree available",
|
|
134
|
+
"attributes": {
|
|
135
|
+
"reason": {
|
|
136
|
+
"type": "string",
|
|
137
|
+
"description": "Why generation was skipped"
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"otel": {
|
|
143
|
+
"status": "implemented",
|
|
144
|
+
"scope": "principal-ade-main",
|
|
145
|
+
"files": [
|
|
146
|
+
"src/main/stores/FileCityImageService.ts"
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "renderer-process",
|
|
152
|
+
"type": "otel-participant",
|
|
153
|
+
"x": 550,
|
|
154
|
+
"y": 100,
|
|
155
|
+
"width": 350,
|
|
156
|
+
"height": 500,
|
|
157
|
+
"label": "Renderer Process",
|
|
158
|
+
"shape": "rectangle",
|
|
159
|
+
"participant": {
|
|
160
|
+
"name": "ProjectInfoPanel",
|
|
161
|
+
"description": "Renderer process component displaying File City images",
|
|
162
|
+
"scope": "principal-ade-principal-window"
|
|
163
|
+
},
|
|
164
|
+
"transformEvents": [
|
|
165
|
+
{
|
|
166
|
+
"name": "file_city.renderer.action_called",
|
|
167
|
+
"description": "Renderer action called to fetch File City image",
|
|
168
|
+
"attributes": {
|
|
169
|
+
"repo_path": {
|
|
170
|
+
"type": "string",
|
|
171
|
+
"description": "Repository path requested"
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "file_city.renderer.url_received",
|
|
177
|
+
"description": "URL received from main process via IPC",
|
|
178
|
+
"attributes": {
|
|
179
|
+
"url": {
|
|
180
|
+
"type": "string",
|
|
181
|
+
"description": "file:// URL or null"
|
|
182
|
+
},
|
|
183
|
+
"has_url": {
|
|
184
|
+
"type": "boolean",
|
|
185
|
+
"description": "Whether a URL was returned"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "file_city.renderer.state_updated",
|
|
191
|
+
"description": "React state updated with image URL",
|
|
192
|
+
"attributes": {
|
|
193
|
+
"url": {
|
|
194
|
+
"type": "string",
|
|
195
|
+
"description": "URL set in state"
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"name": "file_city.renderer.card_rendered",
|
|
201
|
+
"description": "LocalProjectCard rendered with image URL",
|
|
202
|
+
"attributes": {
|
|
203
|
+
"has_custom_image": {
|
|
204
|
+
"type": "boolean",
|
|
205
|
+
"description": "Whether customImageUrl prop was provided"
|
|
206
|
+
},
|
|
207
|
+
"image_url": {
|
|
208
|
+
"type": "string",
|
|
209
|
+
"description": "The customImageUrl prop value"
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
],
|
|
214
|
+
"otel": {
|
|
215
|
+
"status": "implemented",
|
|
216
|
+
"scope": "principal-ade-principal-window",
|
|
217
|
+
"files": [
|
|
218
|
+
"src/renderer/panels/ProjectInfoPanel.tsx"
|
|
219
|
+
]
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"id": "legend",
|
|
224
|
+
"type": "text",
|
|
225
|
+
"x": 100,
|
|
226
|
+
"y": 650,
|
|
227
|
+
"width": 800,
|
|
228
|
+
"height": 120,
|
|
229
|
+
"color": "#64748B",
|
|
230
|
+
"text": "## Participant Model Explained\n\n**Nodes** = Participants (the processes/services that interact) \n**Edges** = Move Events (data crossing participant boundaries via IPC) \n**Transform Events** = Internal processing within each participant (annotations on nodes)"
|
|
231
|
+
}
|
|
232
|
+
],
|
|
233
|
+
"edges": [
|
|
234
|
+
{
|
|
235
|
+
"id": "ipc-request",
|
|
236
|
+
"fromNode": "renderer-process",
|
|
237
|
+
"fromSide": "left",
|
|
238
|
+
"toNode": "main-process",
|
|
239
|
+
"toSide": "right",
|
|
240
|
+
"label": "IPC: Request Image",
|
|
241
|
+
"edgeType": "calls",
|
|
242
|
+
"moveEvent": {
|
|
243
|
+
"name": "file_city.image.requested",
|
|
244
|
+
"description": "IPC call from renderer to main process requesting image generation",
|
|
245
|
+
"type": "calls"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"id": "ipc-response-cache",
|
|
250
|
+
"fromNode": "main-process",
|
|
251
|
+
"fromSide": "right",
|
|
252
|
+
"toNode": "renderer-process",
|
|
253
|
+
"toSide": "left",
|
|
254
|
+
"label": "IPC: Return Cached URL",
|
|
255
|
+
"edgeType": "data-flow",
|
|
256
|
+
"moveEvent": {
|
|
257
|
+
"name": "file_city.image.cache_hit",
|
|
258
|
+
"description": "IPC response returning cached image URL",
|
|
259
|
+
"type": "data-flow"
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"id": "ipc-response-generated",
|
|
264
|
+
"fromNode": "main-process",
|
|
265
|
+
"fromSide": "right",
|
|
266
|
+
"toNode": "renderer-process",
|
|
267
|
+
"toSide": "left",
|
|
268
|
+
"label": "IPC: Return Generated URL",
|
|
269
|
+
"edgeType": "data-flow",
|
|
270
|
+
"moveEvent": {
|
|
271
|
+
"name": "file_city.image.generation_complete",
|
|
272
|
+
"description": "IPC response returning newly generated image URL",
|
|
273
|
+
"type": "data-flow"
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
],
|
|
277
|
+
"name": "File City Images (Participant Model)",
|
|
278
|
+
"description": "Participant-based canvas following graph-to-sequence concepts: participants as nodes, move events as edges, transform events as annotations",
|
|
279
|
+
"nodeTypes": {
|
|
280
|
+
"participant": {
|
|
281
|
+
"label": "Participant",
|
|
282
|
+
"color": "#3B82F6"
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"edgeTypes": {
|
|
286
|
+
"calls": {
|
|
287
|
+
"label": "Synchronous Call",
|
|
288
|
+
"color": "#10B981"
|
|
289
|
+
},
|
|
290
|
+
"data-flow": {
|
|
291
|
+
"label": "Data Flow",
|
|
292
|
+
"color": "#8B5CF6"
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
}
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
{
|
|
2
|
+
"workflows": [
|
|
3
|
+
{
|
|
4
|
+
"id": "cache-hit-flow",
|
|
5
|
+
"name": "Cache Hit - Fast Path",
|
|
6
|
+
"description": "Optimal path where cached image already exists",
|
|
7
|
+
"events": [
|
|
8
|
+
{
|
|
9
|
+
"id": "1",
|
|
10
|
+
"name": "renderer.action_called",
|
|
11
|
+
"label": "Action Called",
|
|
12
|
+
"participant": "renderer"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"id": "2",
|
|
16
|
+
"name": "main.image_requested",
|
|
17
|
+
"label": "Request Image (IPC)",
|
|
18
|
+
"participant": "main",
|
|
19
|
+
"moveEvent": true,
|
|
20
|
+
"edgeType": "calls"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "3",
|
|
24
|
+
"name": "main.cache_checked",
|
|
25
|
+
"label": "Check Cache",
|
|
26
|
+
"participant": "main"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "4",
|
|
30
|
+
"name": "renderer.cache_hit",
|
|
31
|
+
"label": "Cache Hit (IPC)",
|
|
32
|
+
"participant": "renderer",
|
|
33
|
+
"moveEvent": true,
|
|
34
|
+
"edgeType": "data-flow"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": "5",
|
|
38
|
+
"name": "renderer.url_received",
|
|
39
|
+
"label": "URL Received",
|
|
40
|
+
"participant": "renderer"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "6",
|
|
44
|
+
"name": "renderer.state_updated",
|
|
45
|
+
"label": "Update State",
|
|
46
|
+
"participant": "renderer"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "7",
|
|
50
|
+
"name": "renderer.card_rendered",
|
|
51
|
+
"label": "Render Card",
|
|
52
|
+
"participant": "renderer"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"edges": [
|
|
56
|
+
{ "id": "e1", "fromEvent": "1", "toEvent": "2" },
|
|
57
|
+
{ "id": "e2", "fromEvent": "2", "toEvent": "3" },
|
|
58
|
+
{ "id": "e3", "fromEvent": "3", "toEvent": "4" },
|
|
59
|
+
{ "id": "e4", "fromEvent": "4", "toEvent": "5" },
|
|
60
|
+
{ "id": "e5", "fromEvent": "5", "toEvent": "6" },
|
|
61
|
+
{ "id": "e6", "fromEvent": "6", "toEvent": "7" }
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"id": "generate-new-flow",
|
|
66
|
+
"name": "Generate New Image - Full Path",
|
|
67
|
+
"description": "Complete flow when no cached image exists",
|
|
68
|
+
"events": [
|
|
69
|
+
{
|
|
70
|
+
"id": "1",
|
|
71
|
+
"name": "renderer.action_called",
|
|
72
|
+
"label": "Action Called",
|
|
73
|
+
"participant": "renderer"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "2",
|
|
77
|
+
"name": "main.image_requested",
|
|
78
|
+
"label": "Request Image (IPC)",
|
|
79
|
+
"participant": "main",
|
|
80
|
+
"moveEvent": true,
|
|
81
|
+
"edgeType": "calls"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "3",
|
|
85
|
+
"name": "main.cache_checked",
|
|
86
|
+
"label": "Check Cache (miss)",
|
|
87
|
+
"participant": "main"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "4",
|
|
91
|
+
"name": "main.filetree_fetched",
|
|
92
|
+
"label": "Fetch FileTree",
|
|
93
|
+
"participant": "main"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "5",
|
|
97
|
+
"name": "main.generation_started",
|
|
98
|
+
"label": "Start Generation",
|
|
99
|
+
"participant": "main"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "6",
|
|
103
|
+
"name": "renderer.generation_complete",
|
|
104
|
+
"label": "Generation Complete (IPC)",
|
|
105
|
+
"participant": "renderer",
|
|
106
|
+
"moveEvent": true,
|
|
107
|
+
"edgeType": "data-flow"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"id": "7",
|
|
111
|
+
"name": "renderer.url_received",
|
|
112
|
+
"label": "URL Received",
|
|
113
|
+
"participant": "renderer"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "8",
|
|
117
|
+
"name": "renderer.state_updated",
|
|
118
|
+
"label": "Update State",
|
|
119
|
+
"participant": "renderer"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "9",
|
|
123
|
+
"name": "renderer.card_rendered",
|
|
124
|
+
"label": "Render Card",
|
|
125
|
+
"participant": "renderer"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"edges": [
|
|
129
|
+
{ "id": "e1", "fromEvent": "1", "toEvent": "2" },
|
|
130
|
+
{ "id": "e2", "fromEvent": "2", "toEvent": "3" },
|
|
131
|
+
{ "id": "e3", "fromEvent": "3", "toEvent": "4" },
|
|
132
|
+
{ "id": "e4", "fromEvent": "4", "toEvent": "5" },
|
|
133
|
+
{ "id": "e5", "fromEvent": "5", "toEvent": "6" },
|
|
134
|
+
{ "id": "e6", "fromEvent": "6", "toEvent": "7" },
|
|
135
|
+
{ "id": "e7", "fromEvent": "7", "toEvent": "8" },
|
|
136
|
+
{ "id": "e8", "fromEvent": "8", "toEvent": "9" }
|
|
137
|
+
]
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"id": "no-filetree-flow",
|
|
141
|
+
"name": "No FileTree - Skip Path",
|
|
142
|
+
"description": "Error path when file tree is not available",
|
|
143
|
+
"events": [
|
|
144
|
+
{
|
|
145
|
+
"id": "1",
|
|
146
|
+
"name": "renderer.action_called",
|
|
147
|
+
"label": "Action Called",
|
|
148
|
+
"participant": "renderer"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "2",
|
|
152
|
+
"name": "main.image_requested",
|
|
153
|
+
"label": "Request Image (IPC)",
|
|
154
|
+
"participant": "main",
|
|
155
|
+
"moveEvent": true,
|
|
156
|
+
"edgeType": "calls"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"id": "3",
|
|
160
|
+
"name": "main.cache_checked",
|
|
161
|
+
"label": "Check Cache (miss)",
|
|
162
|
+
"participant": "main"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "4",
|
|
166
|
+
"name": "main.filetree_fetched",
|
|
167
|
+
"label": "Fetch FileTree (none)",
|
|
168
|
+
"participant": "main"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "5",
|
|
172
|
+
"name": "renderer.generation_skipped",
|
|
173
|
+
"label": "Skip Generation (IPC)",
|
|
174
|
+
"participant": "renderer",
|
|
175
|
+
"moveEvent": true,
|
|
176
|
+
"edgeType": "data-flow"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"id": "6",
|
|
180
|
+
"name": "renderer.url_received",
|
|
181
|
+
"label": "URL Received (null)",
|
|
182
|
+
"participant": "renderer"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"id": "7",
|
|
186
|
+
"name": "renderer.card_rendered",
|
|
187
|
+
"label": "Render Card (fallback)",
|
|
188
|
+
"participant": "renderer"
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"edges": [
|
|
192
|
+
{ "id": "e1", "fromEvent": "1", "toEvent": "2" },
|
|
193
|
+
{ "id": "e2", "fromEvent": "2", "toEvent": "3" },
|
|
194
|
+
{ "id": "e3", "fromEvent": "3", "toEvent": "4" },
|
|
195
|
+
{ "id": "e4", "fromEvent": "4", "toEvent": "5" },
|
|
196
|
+
{ "id": "e5", "fromEvent": "5", "toEvent": "6" },
|
|
197
|
+
{ "id": "e6", "fromEvent": "6", "toEvent": "7" }
|
|
198
|
+
]
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"id": "error-flow",
|
|
202
|
+
"name": "Error During Generation",
|
|
203
|
+
"description": "Error path when image generation fails",
|
|
204
|
+
"events": [
|
|
205
|
+
{
|
|
206
|
+
"id": "1",
|
|
207
|
+
"name": "renderer.action_called",
|
|
208
|
+
"label": "Action Called",
|
|
209
|
+
"participant": "renderer"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": "2",
|
|
213
|
+
"name": "main.image_requested",
|
|
214
|
+
"label": "Request Image (IPC)",
|
|
215
|
+
"participant": "main",
|
|
216
|
+
"moveEvent": true,
|
|
217
|
+
"edgeType": "calls"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"id": "3",
|
|
221
|
+
"name": "main.cache_checked",
|
|
222
|
+
"label": "Check Cache (miss)",
|
|
223
|
+
"participant": "main"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"id": "4",
|
|
227
|
+
"name": "main.filetree_fetched",
|
|
228
|
+
"label": "Fetch FileTree",
|
|
229
|
+
"participant": "main"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"id": "5",
|
|
233
|
+
"name": "main.generation_started",
|
|
234
|
+
"label": "Start Generation",
|
|
235
|
+
"participant": "main"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"id": "6",
|
|
239
|
+
"name": "renderer.generation_error",
|
|
240
|
+
"label": "Generation Error (IPC)",
|
|
241
|
+
"participant": "renderer",
|
|
242
|
+
"moveEvent": true,
|
|
243
|
+
"edgeType": "data-flow"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"id": "7",
|
|
247
|
+
"name": "renderer.url_received",
|
|
248
|
+
"label": "URL Received (null)",
|
|
249
|
+
"participant": "renderer"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "8",
|
|
253
|
+
"name": "renderer.card_rendered",
|
|
254
|
+
"label": "Render Card (fallback)",
|
|
255
|
+
"participant": "renderer"
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"edges": [
|
|
259
|
+
{ "id": "e1", "fromEvent": "1", "toEvent": "2" },
|
|
260
|
+
{ "id": "e2", "fromEvent": "2", "toEvent": "3" },
|
|
261
|
+
{ "id": "e3", "fromEvent": "3", "toEvent": "4" },
|
|
262
|
+
{ "id": "e4", "fromEvent": "4", "toEvent": "5" },
|
|
263
|
+
{ "id": "e5", "fromEvent": "5", "toEvent": "6" },
|
|
264
|
+
{ "id": "e6", "fromEvent": "6", "toEvent": "7" },
|
|
265
|
+
{ "id": "e7", "fromEvent": "7", "toEvent": "8" }
|
|
266
|
+
]
|
|
267
|
+
}
|
|
268
|
+
]
|
|
269
|
+
}
|