-
Notifications
You must be signed in to change notification settings - Fork 921
Expand file tree
/
Copy pathApp.tsx
More file actions
450 lines (416 loc) · 13.7 KB
/
App.tsx
File metadata and controls
450 lines (416 loc) · 13.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
import './App.less';
import { Alert, ConfigProvider, Empty, theme } from 'antd';
import { useEffect, useRef, useState } from 'react';
import { Panel, PanelGroup, PanelResizeHandle } from 'react-resizable-panels';
import {
GroupedActionDump,
parseImageScripts,
restoreImageReferences,
} from '@midscene/core';
import { antiEscapeScriptTag } from '@midscene/shared/utils';
import {
Logo,
Player,
globalThemeConfig,
useGlobalPreference,
} from '@midscene/visualizer';
import DetailPanel from './components/detail-panel';
import DetailSide from './components/detail-side';
import GlobalHoverPreview from './components/global-hover-preview';
import Sidebar from './components/sidebar';
import { type DumpStoreType, useExecutionDump } from './components/store';
import Timeline from './components/timeline';
import ThemeDarkIcon from './icons/theme-dark.svg?react';
import ThemeLightIcon from './icons/theme-light.svg?react';
import type {
PlaywrightTaskAttributes,
PlaywrightTasks,
VisualizerProps,
} from './types';
let globalRenderCount = 1;
const SIDEBAR_WIDTH_KEY = 'midscene-sidebar-width';
const DEFAULT_SIDEBAR_WIDTH = 280;
function Visualizer(props: VisualizerProps): JSX.Element {
const { dumps } = props;
const executionDump = useExecutionDump((store: DumpStoreType) => store.dump);
const executionDumpLoadId = useExecutionDump(
(store) => store._executionDumpLoadId,
);
const setReplayAllMode = useExecutionDump((store) => store.setReplayAllMode);
const replayAllScripts = useExecutionDump(
(store) => store.allExecutionAnimation,
);
const insightWidth = useExecutionDump((store) => store.insightWidth);
const insightHeight = useExecutionDump((store) => store.insightHeight);
const replayAllMode = useExecutionDump((store) => store.replayAllMode);
const setPlayingTaskId = useExecutionDump((store) => store.setPlayingTaskId);
const setGroupedDump = useExecutionDump((store) => store.setGroupedDump);
const sdkVersion = useExecutionDump((store) => store.sdkVersion);
const modelBriefs = useExecutionDump((store) => store.modelBriefs);
const reset = useExecutionDump((store) => store.reset);
const [mainLayoutChangeFlag, setMainLayoutChangeFlag] = useState(0);
const [sidebarWidth, setSidebarWidth] = useState(() => {
const saved = localStorage.getItem(SIDEBAR_WIDTH_KEY);
return saved ? Number(saved) : DEFAULT_SIDEBAR_WIDTH;
});
const dump = useExecutionDump((store) => store.dump);
const [timelineCollapsed, setTimelineCollapsed] = useState(false);
const {
modelCallDetailsEnabled: proModeEnabled,
setModelCallDetailsEnabled: setProModeEnabled,
darkModeEnabled: isDarkMode,
setDarkModeEnabled: setIsDarkMode,
} = useGlobalPreference();
useEffect(() => {
document.documentElement.setAttribute(
'data-theme',
isDarkMode ? 'dark' : 'light',
);
}, [isDarkMode]);
useEffect(() => {
if (dumps?.[0]) {
setGroupedDump(dumps[0].get(), dumps[0].attributes);
}
return () => {
reset();
};
}, [dumps, reset, setGroupedDump]);
useEffect(() => {
let resizeThrottler = false;
const onResize = () => {
if (resizeThrottler) {
return;
}
resizeThrottler = true;
setTimeout(() => {
resizeThrottler = false;
setMainLayoutChangeFlag((prev) => prev + 1);
}, 300);
};
window.addEventListener('resize', onResize);
return () => {
window.removeEventListener('resize', onResize);
};
}, []);
let mainContent: JSX.Element;
if (dump && dump.executions.length === 0) {
mainContent = (
<div className="main-right">
<Empty
image={Empty.PRESENTED_IMAGE_SIMPLE}
description="There is no task info in this dump file."
/>
</div>
);
} else if (!executionDump) {
mainContent = (
<div className="main-right">
<div
className="center-content"
style={{
width: '100%',
height: '100%',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
}}
>
<Empty description="Loading report content..." />
</div>
</div>
);
} else {
const content = replayAllMode ? (
<div className="replay-all-mode-wrapper">
<Player
key={`${executionDumpLoadId}`}
replayScripts={replayAllScripts!}
imageWidth={insightWidth!}
imageHeight={insightHeight!}
onTaskChange={setPlayingTaskId}
/>
</div>
) : (
<PanelGroup autoSaveId="page-detail-layout-v2" direction="horizontal">
<Panel defaultSize={75} maxSize={95}>
<div className="main-content-container">
<DetailPanel />
</div>
</Panel>
<PanelResizeHandle className="resize-handle" />
<Panel maxSize={95}>
<div className="main-side">
<DetailSide />
</div>
</Panel>
</PanelGroup>
);
mainContent = (
<div className="main-layout">
<div className="page-side" style={{ width: sidebarWidth }}>
<Sidebar
dumps={dumps}
proModeEnabled={proModeEnabled}
onProModeChange={setProModeEnabled}
replayAllScripts={replayAllScripts}
setReplayAllMode={setReplayAllMode}
/>
</div>
<div
className="resize-handle"
onMouseDown={(e) => {
e.preventDefault();
const startX = e.clientX;
const startWidth = sidebarWidth;
let latestWidth = startWidth;
const onMouseMove = (ev: MouseEvent) => {
latestWidth = Math.max(
200,
Math.min(500, startWidth + ev.clientX - startX),
);
setSidebarWidth(latestWidth);
};
const onMouseUp = () => {
document.removeEventListener('mousemove', onMouseMove);
document.removeEventListener('mouseup', onMouseUp);
localStorage.setItem(SIDEBAR_WIDTH_KEY, String(latestWidth));
setMainLayoutChangeFlag((prev) => prev + 1);
};
document.addEventListener('mousemove', onMouseMove);
document.addEventListener('mouseup', onMouseUp);
}}
/>
<div className="main-right">
<div
className="main-right-header"
onClick={() => setTimelineCollapsed(!timelineCollapsed)}
style={{ cursor: 'pointer', userSelect: 'none' }}
>
<span
className="timeline-collapse-icon"
style={{
display: 'inline-block',
marginRight: 8,
transition: 'transform 0.2s',
transform: timelineCollapsed
? 'rotate(-90deg)'
: 'rotate(0deg)',
}}
>
▼
</span>
Record
</div>
{!timelineCollapsed && <Timeline key={mainLayoutChangeFlag} />}
<div className="main-content">{content}</div>
</div>
</div>
);
}
const [containerHeight, setContainerHeight] = useState('100%');
useEffect(() => {
const ifInRspressPage = document.querySelector('.rspress-nav');
const navHeightKey = '--rp-nav-height';
const originalNavHeight = getComputedStyle(
document.documentElement,
).getPropertyValue(navHeightKey);
if (ifInRspressPage) {
const newNavHeight = '42px';
setContainerHeight(`calc(100vh - ${newNavHeight})`);
document.documentElement.style.setProperty(navHeightKey, newNavHeight);
}
return () => {
if (ifInRspressPage) {
document.documentElement.style.setProperty(
navHeightKey,
originalNavHeight,
);
}
};
}, []);
useEffect(() => {
return () => {
globalRenderCount += 1;
};
}, []);
return (
<ConfigProvider
theme={{
...globalThemeConfig(),
algorithm: isDarkMode ? theme.darkAlgorithm : theme.defaultAlgorithm,
}}
>
<div
className="page-container"
key={`render-${globalRenderCount}`}
style={{ height: containerHeight }}
data-theme={isDarkMode ? 'dark' : 'light'}
>
<div className="page-nav">
<div className="page-nav-left">
<Logo />
</div>
<div className="page-nav-right">
<div className="page-nav-version">
v{sdkVersion}
{modelBriefs.length ? ` | ${modelBriefs.join(', ')}` : ''}
</div>
<div className="theme-divider" />
<button
type="button"
className="theme-toggle-button"
onClick={() => setIsDarkMode(!isDarkMode)}
aria-label="Toggle theme"
>
{isDarkMode ? <ThemeDarkIcon /> : <ThemeLightIcon />}
</button>
</div>
</div>
{mainContent}
</div>
<GlobalHoverPreview />
</ConfigProvider>
);
}
export function App() {
function getDumpElements(): PlaywrightTasks[] {
const dumpElements = document.querySelectorAll(
'script[type="midscene_web_dump"]',
);
const reportDump: PlaywrightTasks[] = [];
Array.from(dumpElements)
.filter((el) => {
const textContent = el.textContent;
if (!textContent) {
console.warn('empty content in script tag', el);
}
return !!textContent;
})
.forEach((el) => {
const attributes: Partial<PlaywrightTaskAttributes> &
Record<string, any> = {
playwright_test_description: '',
playwright_test_id: '',
playwright_test_title: '',
playwright_test_status: undefined,
playwright_test_duration: 0,
};
Array.from(el.attributes).forEach((attr) => {
const { name, value } = attr;
const valueDecoded = decodeURIComponent(value);
if (name.startsWith('playwright_')) {
if (name === 'playwright_test_duration') {
attributes[name] = Number(valueDecoded) || 0;
} else {
attributes[name] = valueDecoded;
}
}
});
// Lazy loading: Store raw content and parse only when get() is called
let cachedJsonContent: GroupedActionDump | null = null;
let isParsed = false;
reportDump.push({
get: () => {
if (!isParsed) {
try {
console.time('parse_dump');
const content = antiEscapeScriptTag(el.textContent || '');
// Build imageMap from <script type="midscene-image"> tags
const imageMap = parseImageScripts(
document.documentElement.innerHTML,
);
// Parse dump and restore image references
const parsed = JSON.parse(content);
const restored = restoreImageReferences(parsed, imageMap);
cachedJsonContent = GroupedActionDump.fromJSON(restored);
console.timeEnd('parse_dump');
(cachedJsonContent as any).attributes = attributes;
isParsed = true;
} catch (e) {
console.error(el);
console.error('failed to parse json content', e);
// Return a fallback object to prevent crashes
cachedJsonContent = {
attributes,
error: 'Failed to parse JSON content',
} as any;
isParsed = true;
}
}
return cachedJsonContent;
},
attributes: attributes as PlaywrightTaskAttributes,
});
});
return reportDump;
}
const [reportDump, setReportDump] = useState<PlaywrightTasks[]>([]);
const [error, setError] = useState<string | null>(null);
const dumpsLoadedRef = useRef(false);
useEffect(() => {
// Check if document is already loaded
const loadDumpElements = () => {
const currentElements = document.querySelectorAll(
'script[type="midscene_web_dump"]',
);
// If it has been loaded and the number of elements has not changed, skip it.
if (
dumpsLoadedRef.current &&
currentElements.length === reportDump.length
) {
return;
}
dumpsLoadedRef.current = true;
if (
currentElements.length === 1 &&
currentElements[0].textContent?.trim() === ''
) {
setError('There is no dump data to display.');
setReportDump([]);
return;
}
setError(null);
const dumpElements = getDumpElements();
setReportDump(dumpElements);
};
const loadDumps = () => {
console.time('loading_dump');
loadDumpElements();
console.timeEnd('loading_dump');
};
// If DOM is already loaded (React mounts after DOMContentLoaded in most cases)
if (
document.readyState === 'complete' ||
document.readyState === 'interactive'
) {
// Use a small timeout to ensure all scripts are parsed
setTimeout(loadDumps, 0);
} else {
// Wait for DOM content to be fully loaded
document.addEventListener('DOMContentLoaded', loadDumps);
}
return () => {
document.removeEventListener('DOMContentLoaded', loadDumps);
};
}, []);
if (error) {
return (
<div
style={{
width: '100%',
height: '100%',
padding: '100px',
boxSizing: 'border-box',
}}
>
<Alert
message="Midscene.js - Error"
description={error}
type="error"
showIcon
/>
</div>
);
}
return <Visualizer dumps={reportDump} />;
}