@mandujs/core 0.13.0 → 0.13.2
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/README.ko.md +4 -4
- package/README.md +653 -653
- package/package.json +1 -1
- package/src/bundler/build.ts +91 -91
- package/src/bundler/css.ts +302 -302
- package/src/client/Link.tsx +227 -227
- package/src/client/globals.ts +44 -44
- package/src/client/hooks.ts +267 -267
- package/src/client/index.ts +5 -5
- package/src/client/island.ts +8 -8
- package/src/client/router.ts +435 -435
- package/src/client/runtime.ts +23 -23
- package/src/client/serialize.ts +404 -404
- package/src/client/window-state.ts +101 -101
- package/src/config/mandu.ts +9 -0
- package/src/config/validate.ts +12 -0
- package/src/config/watcher.ts +311 -311
- package/src/constants.ts +40 -40
- package/src/content/content-layer.ts +314 -314
- package/src/content/content.test.ts +433 -433
- package/src/content/data-store.ts +245 -245
- package/src/content/digest.ts +133 -133
- package/src/content/index.ts +164 -164
- package/src/content/loader-context.ts +172 -172
- package/src/content/loaders/api.ts +216 -216
- package/src/content/loaders/file.ts +169 -169
- package/src/content/loaders/glob.ts +252 -252
- package/src/content/loaders/index.ts +34 -34
- package/src/content/loaders/types.ts +137 -137
- package/src/content/meta-store.ts +209 -209
- package/src/content/types.ts +282 -282
- package/src/content/watcher.ts +135 -135
- package/src/contract/client-safe.test.ts +42 -42
- package/src/contract/client-safe.ts +114 -114
- package/src/contract/client.ts +16 -16
- package/src/contract/define.ts +459 -459
- package/src/contract/handler.ts +10 -10
- package/src/contract/normalize.test.ts +276 -276
- package/src/contract/normalize.ts +404 -404
- package/src/contract/registry.test.ts +206 -206
- package/src/contract/registry.ts +568 -568
- package/src/contract/schema.ts +48 -48
- package/src/contract/types.ts +58 -58
- package/src/contract/validator.ts +32 -32
- package/src/devtools/ai/context-builder.ts +375 -375
- package/src/devtools/ai/index.ts +25 -25
- package/src/devtools/ai/mcp-connector.ts +465 -465
- package/src/devtools/client/catchers/error-catcher.ts +327 -327
- package/src/devtools/client/catchers/index.ts +18 -18
- package/src/devtools/client/catchers/network-proxy.ts +363 -363
- package/src/devtools/client/components/index.ts +39 -39
- package/src/devtools/client/components/kitchen-root.tsx +362 -362
- package/src/devtools/client/components/mandu-character.tsx +241 -241
- package/src/devtools/client/components/overlay.tsx +368 -368
- package/src/devtools/client/components/panel/errors-panel.tsx +259 -259
- package/src/devtools/client/components/panel/guard-panel.tsx +244 -244
- package/src/devtools/client/components/panel/index.ts +32 -32
- package/src/devtools/client/components/panel/islands-panel.tsx +304 -304
- package/src/devtools/client/components/panel/network-panel.tsx +292 -292
- package/src/devtools/client/components/panel/panel-container.tsx +259 -259
- package/src/devtools/client/filters/context-filters.ts +282 -282
- package/src/devtools/client/filters/index.ts +16 -16
- package/src/devtools/client/index.ts +63 -63
- package/src/devtools/client/persistence.ts +335 -335
- package/src/devtools/client/state-manager.ts +478 -478
- package/src/devtools/design-tokens.ts +263 -263
- package/src/devtools/hook/create-hook.ts +207 -207
- package/src/devtools/hook/index.ts +13 -13
- package/src/devtools/index.ts +439 -439
- package/src/devtools/init.ts +266 -266
- package/src/devtools/protocol.ts +237 -237
- package/src/devtools/server/index.ts +17 -17
- package/src/devtools/server/source-context.ts +444 -444
- package/src/devtools/types.ts +319 -319
- package/src/devtools/worker/index.ts +25 -25
- package/src/devtools/worker/redaction-worker.ts +222 -222
- package/src/devtools/worker/worker-manager.ts +409 -409
- package/src/error/domains.ts +265 -265
- package/src/error/result.ts +46 -46
- package/src/error/types.ts +6 -6
- package/src/errors/extractor.ts +409 -409
- package/src/errors/index.ts +19 -19
- package/src/filling/auth.ts +308 -308
- package/src/filling/context.ts +24 -1
- package/src/filling/deps.ts +238 -238
- package/src/filling/index.ts +4 -0
- package/src/filling/sse-catchup.test.ts +56 -0
- package/src/filling/sse-catchup.ts +67 -0
- package/src/filling/sse.test.ts +168 -0
- package/src/filling/sse.ts +162 -0
- package/src/generator/index.ts +3 -3
- package/src/guard/analyzer.ts +360 -360
- package/src/guard/ast-analyzer.ts +806 -806
- package/src/guard/contract-guard.ts +9 -9
- package/src/guard/file-type.test.ts +24 -24
- package/src/guard/presets/atomic.ts +70 -70
- package/src/guard/presets/clean.ts +77 -77
- package/src/guard/presets/fsd.ts +79 -79
- package/src/guard/presets/hexagonal.ts +68 -68
- package/src/guard/presets/index.ts +291 -291
- package/src/guard/reporter.ts +445 -445
- package/src/guard/rules.ts +12 -12
- package/src/guard/statistics.ts +578 -578
- package/src/guard/suggestions.ts +358 -358
- package/src/guard/types.ts +348 -348
- package/src/guard/validator.ts +834 -834
- package/src/guard/watcher.ts +404 -404
- package/src/index.ts +6 -1
- package/src/intent/index.ts +310 -310
- package/src/island/index.ts +304 -304
- package/src/logging/index.ts +22 -22
- package/src/logging/transports.ts +365 -365
- package/src/plugins/index.ts +38 -38
- package/src/plugins/registry.ts +377 -377
- package/src/plugins/types.ts +363 -363
- package/src/report/index.ts +1 -1
- package/src/router/fs-patterns.ts +387 -387
- package/src/router/fs-scanner.ts +497 -497
- package/src/runtime/boundary.tsx +232 -232
- package/src/runtime/compose.ts +222 -222
- package/src/runtime/escape.ts +44 -0
- package/src/runtime/lifecycle.ts +381 -381
- package/src/runtime/logger.test.ts +345 -345
- package/src/runtime/logger.ts +677 -677
- package/src/runtime/router.test.ts +476 -476
- package/src/runtime/router.ts +105 -105
- package/src/runtime/security.ts +155 -155
- package/src/runtime/server.ts +257 -0
- package/src/runtime/session-key.ts +328 -328
- package/src/runtime/ssr.ts +16 -21
- package/src/runtime/streaming-ssr.ts +24 -33
- package/src/runtime/trace.ts +144 -144
- package/src/seo/index.ts +214 -214
- package/src/seo/integration/ssr.ts +307 -307
- package/src/seo/render/basic.ts +427 -427
- package/src/seo/render/index.ts +143 -143
- package/src/seo/render/jsonld.ts +539 -539
- package/src/seo/render/opengraph.ts +191 -191
- package/src/seo/render/robots.ts +116 -116
- package/src/seo/render/sitemap.ts +137 -137
- package/src/seo/render/twitter.ts +126 -126
- package/src/seo/resolve/index.ts +353 -353
- package/src/seo/resolve/opengraph.ts +143 -143
- package/src/seo/resolve/robots.ts +73 -73
- package/src/seo/resolve/title.ts +94 -94
- package/src/seo/resolve/twitter.ts +73 -73
- package/src/seo/resolve/url.ts +97 -97
- package/src/seo/routes/index.ts +290 -290
- package/src/seo/types.ts +575 -575
- package/src/slot/validator.ts +39 -39
- package/src/spec/index.ts +3 -3
- package/src/spec/load.ts +76 -76
- package/src/spec/lock.ts +56 -56
- package/src/utils/bun.ts +8 -8
- package/src/utils/lru-cache.ts +75 -75
- package/src/utils/safe-io.ts +188 -188
- package/src/utils/string-safe.ts +298 -298
|
@@ -1,368 +1,368 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Mandu Kitchen DevTools - Error Overlay Component
|
|
3
|
-
* @version 1.0.3
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import React, { useCallback, useEffect, useRef } from 'react';
|
|
7
|
-
import type { NormalizedError } from '../../types';
|
|
8
|
-
import { colors, typography, spacing, borderRadius, shadows, zIndex, animation, testIds } from '../../design-tokens';
|
|
9
|
-
import { ManduCharacter } from './mandu-character';
|
|
10
|
-
import { sanitizeStackTrace, sanitizeErrorMessage } from '../filters';
|
|
11
|
-
|
|
12
|
-
// ============================================================================
|
|
13
|
-
// Styles
|
|
14
|
-
// ============================================================================
|
|
15
|
-
|
|
16
|
-
const overlayStyles = {
|
|
17
|
-
backdrop: {
|
|
18
|
-
position: 'fixed' as const,
|
|
19
|
-
top: 0,
|
|
20
|
-
left: 0,
|
|
21
|
-
right: 0,
|
|
22
|
-
bottom: 0,
|
|
23
|
-
backgroundColor: colors.background.overlay,
|
|
24
|
-
zIndex: zIndex.overlay,
|
|
25
|
-
display: 'flex',
|
|
26
|
-
alignItems: 'center',
|
|
27
|
-
justifyContent: 'center',
|
|
28
|
-
padding: spacing.xl,
|
|
29
|
-
fontFamily: typography.fontFamily.sans,
|
|
30
|
-
},
|
|
31
|
-
container: {
|
|
32
|
-
width: '100%',
|
|
33
|
-
maxWidth: '800px',
|
|
34
|
-
maxHeight: '90vh',
|
|
35
|
-
backgroundColor: colors.background.dark,
|
|
36
|
-
borderRadius: borderRadius.lg,
|
|
37
|
-
boxShadow: shadows.overlay,
|
|
38
|
-
display: 'flex',
|
|
39
|
-
flexDirection: 'column' as const,
|
|
40
|
-
overflow: 'hidden',
|
|
41
|
-
},
|
|
42
|
-
header: {
|
|
43
|
-
display: 'flex',
|
|
44
|
-
alignItems: 'center',
|
|
45
|
-
justifyContent: 'space-between',
|
|
46
|
-
padding: spacing.lg,
|
|
47
|
-
borderBottom: `1px solid ${colors.background.light}`,
|
|
48
|
-
},
|
|
49
|
-
headerLeft: {
|
|
50
|
-
display: 'flex',
|
|
51
|
-
alignItems: 'center',
|
|
52
|
-
gap: spacing.md,
|
|
53
|
-
},
|
|
54
|
-
title: {
|
|
55
|
-
fontSize: typography.fontSize.lg,
|
|
56
|
-
fontWeight: typography.fontWeight.semibold,
|
|
57
|
-
color: colors.text.primary,
|
|
58
|
-
margin: 0,
|
|
59
|
-
},
|
|
60
|
-
badge: {
|
|
61
|
-
padding: `${spacing.xs} ${spacing.sm}`,
|
|
62
|
-
borderRadius: borderRadius.sm,
|
|
63
|
-
fontSize: typography.fontSize.xs,
|
|
64
|
-
fontWeight: typography.fontWeight.medium,
|
|
65
|
-
textTransform: 'uppercase' as const,
|
|
66
|
-
},
|
|
67
|
-
closeButton: {
|
|
68
|
-
background: 'transparent',
|
|
69
|
-
border: 'none',
|
|
70
|
-
color: colors.text.secondary,
|
|
71
|
-
fontSize: typography.fontSize.xl,
|
|
72
|
-
cursor: 'pointer',
|
|
73
|
-
padding: spacing.sm,
|
|
74
|
-
borderRadius: borderRadius.sm,
|
|
75
|
-
transition: `color ${animation.duration.fast}`,
|
|
76
|
-
lineHeight: 1,
|
|
77
|
-
},
|
|
78
|
-
content: {
|
|
79
|
-
flex: 1,
|
|
80
|
-
overflow: 'auto',
|
|
81
|
-
padding: spacing.lg,
|
|
82
|
-
},
|
|
83
|
-
errorMessage: {
|
|
84
|
-
fontSize: typography.fontSize.lg,
|
|
85
|
-
fontWeight: typography.fontWeight.medium,
|
|
86
|
-
color: colors.semantic.error,
|
|
87
|
-
marginBottom: spacing.lg,
|
|
88
|
-
wordBreak: 'break-word' as const,
|
|
89
|
-
},
|
|
90
|
-
section: {
|
|
91
|
-
marginBottom: spacing.lg,
|
|
92
|
-
},
|
|
93
|
-
sectionTitle: {
|
|
94
|
-
fontSize: typography.fontSize.sm,
|
|
95
|
-
fontWeight: typography.fontWeight.semibold,
|
|
96
|
-
color: colors.text.secondary,
|
|
97
|
-
textTransform: 'uppercase' as const,
|
|
98
|
-
marginBottom: spacing.sm,
|
|
99
|
-
},
|
|
100
|
-
stackTrace: {
|
|
101
|
-
backgroundColor: colors.background.medium,
|
|
102
|
-
borderRadius: borderRadius.md,
|
|
103
|
-
padding: spacing.md,
|
|
104
|
-
fontFamily: typography.fontFamily.mono,
|
|
105
|
-
fontSize: typography.fontSize.sm,
|
|
106
|
-
color: colors.text.secondary,
|
|
107
|
-
lineHeight: typography.lineHeight.relaxed,
|
|
108
|
-
overflow: 'auto',
|
|
109
|
-
maxHeight: '300px',
|
|
110
|
-
whiteSpace: 'pre-wrap' as const,
|
|
111
|
-
wordBreak: 'break-all' as const,
|
|
112
|
-
},
|
|
113
|
-
meta: {
|
|
114
|
-
display: 'grid',
|
|
115
|
-
gridTemplateColumns: 'auto 1fr',
|
|
116
|
-
gap: `${spacing.xs} ${spacing.md}`,
|
|
117
|
-
fontSize: typography.fontSize.sm,
|
|
118
|
-
},
|
|
119
|
-
metaLabel: {
|
|
120
|
-
color: colors.text.muted,
|
|
121
|
-
},
|
|
122
|
-
metaValue: {
|
|
123
|
-
color: colors.text.secondary,
|
|
124
|
-
wordBreak: 'break-all' as const,
|
|
125
|
-
},
|
|
126
|
-
footer: {
|
|
127
|
-
display: 'flex',
|
|
128
|
-
alignItems: 'center',
|
|
129
|
-
justifyContent: 'space-between',
|
|
130
|
-
padding: spacing.lg,
|
|
131
|
-
borderTop: `1px solid ${colors.background.light}`,
|
|
132
|
-
gap: spacing.md,
|
|
133
|
-
},
|
|
134
|
-
footerHint: {
|
|
135
|
-
fontSize: typography.fontSize.sm,
|
|
136
|
-
color: colors.text.muted,
|
|
137
|
-
},
|
|
138
|
-
buttonGroup: {
|
|
139
|
-
display: 'flex',
|
|
140
|
-
gap: spacing.sm,
|
|
141
|
-
},
|
|
142
|
-
button: {
|
|
143
|
-
padding: `${spacing.sm} ${spacing.lg}`,
|
|
144
|
-
borderRadius: borderRadius.md,
|
|
145
|
-
fontSize: typography.fontSize.sm,
|
|
146
|
-
fontWeight: typography.fontWeight.medium,
|
|
147
|
-
cursor: 'pointer',
|
|
148
|
-
transition: `all ${animation.duration.fast}`,
|
|
149
|
-
border: 'none',
|
|
150
|
-
},
|
|
151
|
-
primaryButton: {
|
|
152
|
-
backgroundColor: colors.brand.accent,
|
|
153
|
-
color: colors.background.dark,
|
|
154
|
-
},
|
|
155
|
-
secondaryButton: {
|
|
156
|
-
backgroundColor: colors.background.light,
|
|
157
|
-
color: colors.text.primary,
|
|
158
|
-
},
|
|
159
|
-
};
|
|
160
|
-
|
|
161
|
-
const severityColors: Record<string, string> = {
|
|
162
|
-
critical: colors.semantic.error,
|
|
163
|
-
error: colors.semantic.error,
|
|
164
|
-
warning: colors.semantic.warning,
|
|
165
|
-
info: colors.semantic.info,
|
|
166
|
-
};
|
|
167
|
-
|
|
168
|
-
// ============================================================================
|
|
169
|
-
// Props
|
|
170
|
-
// ============================================================================
|
|
171
|
-
|
|
172
|
-
export interface ErrorOverlayProps {
|
|
173
|
-
error: NormalizedError;
|
|
174
|
-
onClose: () => void;
|
|
175
|
-
onIgnore: () => void;
|
|
176
|
-
onCopy: () => void;
|
|
177
|
-
onAskAI?: () => void;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
// ============================================================================
|
|
181
|
-
// Component
|
|
182
|
-
// ============================================================================
|
|
183
|
-
|
|
184
|
-
export function ErrorOverlay({
|
|
185
|
-
error,
|
|
186
|
-
onClose,
|
|
187
|
-
onIgnore,
|
|
188
|
-
onCopy,
|
|
189
|
-
onAskAI,
|
|
190
|
-
}: ErrorOverlayProps): React.ReactElement {
|
|
191
|
-
const containerRef = useRef<HTMLDivElement>(null);
|
|
192
|
-
|
|
193
|
-
// ESC 키로 닫기
|
|
194
|
-
useEffect(() => {
|
|
195
|
-
const handleKeyDown = (e: KeyboardEvent) => {
|
|
196
|
-
if (e.key === 'Escape') {
|
|
197
|
-
onClose();
|
|
198
|
-
} else if (e.key === 'i' || e.key === 'I') {
|
|
199
|
-
onIgnore();
|
|
200
|
-
} else if (e.key === 'c' || e.key === 'C') {
|
|
201
|
-
onCopy();
|
|
202
|
-
}
|
|
203
|
-
};
|
|
204
|
-
|
|
205
|
-
document.addEventListener('keydown', handleKeyDown);
|
|
206
|
-
return () => document.removeEventListener('keydown', handleKeyDown);
|
|
207
|
-
}, [onClose, onIgnore, onCopy]);
|
|
208
|
-
|
|
209
|
-
// 포커스 트랩
|
|
210
|
-
useEffect(() => {
|
|
211
|
-
const container = containerRef.current;
|
|
212
|
-
if (container) {
|
|
213
|
-
container.focus();
|
|
214
|
-
}
|
|
215
|
-
}, []);
|
|
216
|
-
|
|
217
|
-
const handleBackdropClick = useCallback(
|
|
218
|
-
(e: React.MouseEvent) => {
|
|
219
|
-
if (e.target === e.currentTarget) {
|
|
220
|
-
onClose();
|
|
221
|
-
}
|
|
222
|
-
},
|
|
223
|
-
[onClose]
|
|
224
|
-
);
|
|
225
|
-
|
|
226
|
-
const severityColor = severityColors[error.severity] ?? colors.semantic.error;
|
|
227
|
-
const sanitizedMessage = sanitizeErrorMessage(error.message);
|
|
228
|
-
const sanitizedStack = sanitizeStackTrace(error.stack);
|
|
229
|
-
|
|
230
|
-
const formatTimestamp = (ts: number): string => {
|
|
231
|
-
return new Date(ts).toLocaleTimeString('ko-KR', {
|
|
232
|
-
hour: '2-digit',
|
|
233
|
-
minute: '2-digit',
|
|
234
|
-
second: '2-digit',
|
|
235
|
-
});
|
|
236
|
-
};
|
|
237
|
-
|
|
238
|
-
return (
|
|
239
|
-
<div
|
|
240
|
-
data-testid={testIds.overlay}
|
|
241
|
-
style={overlayStyles.backdrop}
|
|
242
|
-
onClick={handleBackdropClick}
|
|
243
|
-
role="dialog"
|
|
244
|
-
aria-modal="true"
|
|
245
|
-
aria-labelledby="error-title"
|
|
246
|
-
>
|
|
247
|
-
<div
|
|
248
|
-
ref={containerRef}
|
|
249
|
-
style={overlayStyles.container}
|
|
250
|
-
tabIndex={-1}
|
|
251
|
-
>
|
|
252
|
-
{/* Header */}
|
|
253
|
-
<div style={overlayStyles.header}>
|
|
254
|
-
<div style={overlayStyles.headerLeft}>
|
|
255
|
-
<ManduCharacter state="error" compact />
|
|
256
|
-
<div>
|
|
257
|
-
<h2 id="error-title" style={overlayStyles.title}>
|
|
258
|
-
에러 발생
|
|
259
|
-
</h2>
|
|
260
|
-
</div>
|
|
261
|
-
<span
|
|
262
|
-
style={{
|
|
263
|
-
...overlayStyles.badge,
|
|
264
|
-
backgroundColor: `${severityColor}20`,
|
|
265
|
-
color: severityColor,
|
|
266
|
-
}}
|
|
267
|
-
>
|
|
268
|
-
{error.severity}
|
|
269
|
-
</span>
|
|
270
|
-
</div>
|
|
271
|
-
<button
|
|
272
|
-
style={overlayStyles.closeButton}
|
|
273
|
-
onClick={onClose}
|
|
274
|
-
aria-label="닫기"
|
|
275
|
-
>
|
|
276
|
-
×
|
|
277
|
-
</button>
|
|
278
|
-
</div>
|
|
279
|
-
|
|
280
|
-
{/* Content */}
|
|
281
|
-
<div style={overlayStyles.content}>
|
|
282
|
-
{/* Error Message */}
|
|
283
|
-
<p style={overlayStyles.errorMessage}>{sanitizedMessage}</p>
|
|
284
|
-
|
|
285
|
-
{/* Stack Trace */}
|
|
286
|
-
{sanitizedStack && (
|
|
287
|
-
<div style={overlayStyles.section}>
|
|
288
|
-
<h3 style={overlayStyles.sectionTitle}>Stack Trace</h3>
|
|
289
|
-
<pre style={overlayStyles.stackTrace}>{sanitizedStack}</pre>
|
|
290
|
-
</div>
|
|
291
|
-
)}
|
|
292
|
-
|
|
293
|
-
{/* Component Stack (React) */}
|
|
294
|
-
{error.componentStack && (
|
|
295
|
-
<div style={overlayStyles.section}>
|
|
296
|
-
<h3 style={overlayStyles.sectionTitle}>Component Stack</h3>
|
|
297
|
-
<pre style={overlayStyles.stackTrace}>{error.componentStack}</pre>
|
|
298
|
-
</div>
|
|
299
|
-
)}
|
|
300
|
-
|
|
301
|
-
{/* Meta Info */}
|
|
302
|
-
<div style={overlayStyles.section}>
|
|
303
|
-
<h3 style={overlayStyles.sectionTitle}>상세 정보</h3>
|
|
304
|
-
<div style={overlayStyles.meta}>
|
|
305
|
-
<span style={overlayStyles.metaLabel}>타입:</span>
|
|
306
|
-
<span style={overlayStyles.metaValue}>{error.type}</span>
|
|
307
|
-
|
|
308
|
-
<span style={overlayStyles.metaLabel}>시간:</span>
|
|
309
|
-
<span style={overlayStyles.metaValue}>
|
|
310
|
-
{formatTimestamp(error.timestamp)}
|
|
311
|
-
</span>
|
|
312
|
-
|
|
313
|
-
{error.source && (
|
|
314
|
-
<>
|
|
315
|
-
<span style={overlayStyles.metaLabel}>파일:</span>
|
|
316
|
-
<span style={overlayStyles.metaValue}>
|
|
317
|
-
{error.source}
|
|
318
|
-
{error.line && `:${error.line}`}
|
|
319
|
-
{error.column && `:${error.column}`}
|
|
320
|
-
</span>
|
|
321
|
-
</>
|
|
322
|
-
)}
|
|
323
|
-
|
|
324
|
-
{error.islandId && (
|
|
325
|
-
<>
|
|
326
|
-
<span style={overlayStyles.metaLabel}>Island:</span>
|
|
327
|
-
<span style={overlayStyles.metaValue}>{error.islandId}</span>
|
|
328
|
-
</>
|
|
329
|
-
)}
|
|
330
|
-
|
|
331
|
-
<span style={overlayStyles.metaLabel}>URL:</span>
|
|
332
|
-
<span style={overlayStyles.metaValue}>{error.url}</span>
|
|
333
|
-
</div>
|
|
334
|
-
</div>
|
|
335
|
-
</div>
|
|
336
|
-
|
|
337
|
-
{/* Footer */}
|
|
338
|
-
<div style={overlayStyles.footer}>
|
|
339
|
-
<span style={overlayStyles.footerHint}>
|
|
340
|
-
ESC: 닫기 | I: 무시 | C: 복사
|
|
341
|
-
</span>
|
|
342
|
-
<div style={overlayStyles.buttonGroup}>
|
|
343
|
-
<button
|
|
344
|
-
style={{ ...overlayStyles.button, ...overlayStyles.secondaryButton }}
|
|
345
|
-
onClick={onIgnore}
|
|
346
|
-
>
|
|
347
|
-
무시하기
|
|
348
|
-
</button>
|
|
349
|
-
<button
|
|
350
|
-
style={{ ...overlayStyles.button, ...overlayStyles.secondaryButton }}
|
|
351
|
-
onClick={onCopy}
|
|
352
|
-
>
|
|
353
|
-
복사하기
|
|
354
|
-
</button>
|
|
355
|
-
{onAskAI && (
|
|
356
|
-
<button
|
|
357
|
-
style={{ ...overlayStyles.button, ...overlayStyles.primaryButton }}
|
|
358
|
-
onClick={onAskAI}
|
|
359
|
-
>
|
|
360
|
-
AI에게 물어보기
|
|
361
|
-
</button>
|
|
362
|
-
)}
|
|
363
|
-
</div>
|
|
364
|
-
</div>
|
|
365
|
-
</div>
|
|
366
|
-
</div>
|
|
367
|
-
);
|
|
368
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* Mandu Kitchen DevTools - Error Overlay Component
|
|
3
|
+
* @version 1.0.3
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import React, { useCallback, useEffect, useRef } from 'react';
|
|
7
|
+
import type { NormalizedError } from '../../types';
|
|
8
|
+
import { colors, typography, spacing, borderRadius, shadows, zIndex, animation, testIds } from '../../design-tokens';
|
|
9
|
+
import { ManduCharacter } from './mandu-character';
|
|
10
|
+
import { sanitizeStackTrace, sanitizeErrorMessage } from '../filters';
|
|
11
|
+
|
|
12
|
+
// ============================================================================
|
|
13
|
+
// Styles
|
|
14
|
+
// ============================================================================
|
|
15
|
+
|
|
16
|
+
const overlayStyles = {
|
|
17
|
+
backdrop: {
|
|
18
|
+
position: 'fixed' as const,
|
|
19
|
+
top: 0,
|
|
20
|
+
left: 0,
|
|
21
|
+
right: 0,
|
|
22
|
+
bottom: 0,
|
|
23
|
+
backgroundColor: colors.background.overlay,
|
|
24
|
+
zIndex: zIndex.overlay,
|
|
25
|
+
display: 'flex',
|
|
26
|
+
alignItems: 'center',
|
|
27
|
+
justifyContent: 'center',
|
|
28
|
+
padding: spacing.xl,
|
|
29
|
+
fontFamily: typography.fontFamily.sans,
|
|
30
|
+
},
|
|
31
|
+
container: {
|
|
32
|
+
width: '100%',
|
|
33
|
+
maxWidth: '800px',
|
|
34
|
+
maxHeight: '90vh',
|
|
35
|
+
backgroundColor: colors.background.dark,
|
|
36
|
+
borderRadius: borderRadius.lg,
|
|
37
|
+
boxShadow: shadows.overlay,
|
|
38
|
+
display: 'flex',
|
|
39
|
+
flexDirection: 'column' as const,
|
|
40
|
+
overflow: 'hidden',
|
|
41
|
+
},
|
|
42
|
+
header: {
|
|
43
|
+
display: 'flex',
|
|
44
|
+
alignItems: 'center',
|
|
45
|
+
justifyContent: 'space-between',
|
|
46
|
+
padding: spacing.lg,
|
|
47
|
+
borderBottom: `1px solid ${colors.background.light}`,
|
|
48
|
+
},
|
|
49
|
+
headerLeft: {
|
|
50
|
+
display: 'flex',
|
|
51
|
+
alignItems: 'center',
|
|
52
|
+
gap: spacing.md,
|
|
53
|
+
},
|
|
54
|
+
title: {
|
|
55
|
+
fontSize: typography.fontSize.lg,
|
|
56
|
+
fontWeight: typography.fontWeight.semibold,
|
|
57
|
+
color: colors.text.primary,
|
|
58
|
+
margin: 0,
|
|
59
|
+
},
|
|
60
|
+
badge: {
|
|
61
|
+
padding: `${spacing.xs} ${spacing.sm}`,
|
|
62
|
+
borderRadius: borderRadius.sm,
|
|
63
|
+
fontSize: typography.fontSize.xs,
|
|
64
|
+
fontWeight: typography.fontWeight.medium,
|
|
65
|
+
textTransform: 'uppercase' as const,
|
|
66
|
+
},
|
|
67
|
+
closeButton: {
|
|
68
|
+
background: 'transparent',
|
|
69
|
+
border: 'none',
|
|
70
|
+
color: colors.text.secondary,
|
|
71
|
+
fontSize: typography.fontSize.xl,
|
|
72
|
+
cursor: 'pointer',
|
|
73
|
+
padding: spacing.sm,
|
|
74
|
+
borderRadius: borderRadius.sm,
|
|
75
|
+
transition: `color ${animation.duration.fast}`,
|
|
76
|
+
lineHeight: 1,
|
|
77
|
+
},
|
|
78
|
+
content: {
|
|
79
|
+
flex: 1,
|
|
80
|
+
overflow: 'auto',
|
|
81
|
+
padding: spacing.lg,
|
|
82
|
+
},
|
|
83
|
+
errorMessage: {
|
|
84
|
+
fontSize: typography.fontSize.lg,
|
|
85
|
+
fontWeight: typography.fontWeight.medium,
|
|
86
|
+
color: colors.semantic.error,
|
|
87
|
+
marginBottom: spacing.lg,
|
|
88
|
+
wordBreak: 'break-word' as const,
|
|
89
|
+
},
|
|
90
|
+
section: {
|
|
91
|
+
marginBottom: spacing.lg,
|
|
92
|
+
},
|
|
93
|
+
sectionTitle: {
|
|
94
|
+
fontSize: typography.fontSize.sm,
|
|
95
|
+
fontWeight: typography.fontWeight.semibold,
|
|
96
|
+
color: colors.text.secondary,
|
|
97
|
+
textTransform: 'uppercase' as const,
|
|
98
|
+
marginBottom: spacing.sm,
|
|
99
|
+
},
|
|
100
|
+
stackTrace: {
|
|
101
|
+
backgroundColor: colors.background.medium,
|
|
102
|
+
borderRadius: borderRadius.md,
|
|
103
|
+
padding: spacing.md,
|
|
104
|
+
fontFamily: typography.fontFamily.mono,
|
|
105
|
+
fontSize: typography.fontSize.sm,
|
|
106
|
+
color: colors.text.secondary,
|
|
107
|
+
lineHeight: typography.lineHeight.relaxed,
|
|
108
|
+
overflow: 'auto',
|
|
109
|
+
maxHeight: '300px',
|
|
110
|
+
whiteSpace: 'pre-wrap' as const,
|
|
111
|
+
wordBreak: 'break-all' as const,
|
|
112
|
+
},
|
|
113
|
+
meta: {
|
|
114
|
+
display: 'grid',
|
|
115
|
+
gridTemplateColumns: 'auto 1fr',
|
|
116
|
+
gap: `${spacing.xs} ${spacing.md}`,
|
|
117
|
+
fontSize: typography.fontSize.sm,
|
|
118
|
+
},
|
|
119
|
+
metaLabel: {
|
|
120
|
+
color: colors.text.muted,
|
|
121
|
+
},
|
|
122
|
+
metaValue: {
|
|
123
|
+
color: colors.text.secondary,
|
|
124
|
+
wordBreak: 'break-all' as const,
|
|
125
|
+
},
|
|
126
|
+
footer: {
|
|
127
|
+
display: 'flex',
|
|
128
|
+
alignItems: 'center',
|
|
129
|
+
justifyContent: 'space-between',
|
|
130
|
+
padding: spacing.lg,
|
|
131
|
+
borderTop: `1px solid ${colors.background.light}`,
|
|
132
|
+
gap: spacing.md,
|
|
133
|
+
},
|
|
134
|
+
footerHint: {
|
|
135
|
+
fontSize: typography.fontSize.sm,
|
|
136
|
+
color: colors.text.muted,
|
|
137
|
+
},
|
|
138
|
+
buttonGroup: {
|
|
139
|
+
display: 'flex',
|
|
140
|
+
gap: spacing.sm,
|
|
141
|
+
},
|
|
142
|
+
button: {
|
|
143
|
+
padding: `${spacing.sm} ${spacing.lg}`,
|
|
144
|
+
borderRadius: borderRadius.md,
|
|
145
|
+
fontSize: typography.fontSize.sm,
|
|
146
|
+
fontWeight: typography.fontWeight.medium,
|
|
147
|
+
cursor: 'pointer',
|
|
148
|
+
transition: `all ${animation.duration.fast}`,
|
|
149
|
+
border: 'none',
|
|
150
|
+
},
|
|
151
|
+
primaryButton: {
|
|
152
|
+
backgroundColor: colors.brand.accent,
|
|
153
|
+
color: colors.background.dark,
|
|
154
|
+
},
|
|
155
|
+
secondaryButton: {
|
|
156
|
+
backgroundColor: colors.background.light,
|
|
157
|
+
color: colors.text.primary,
|
|
158
|
+
},
|
|
159
|
+
};
|
|
160
|
+
|
|
161
|
+
const severityColors: Record<string, string> = {
|
|
162
|
+
critical: colors.semantic.error,
|
|
163
|
+
error: colors.semantic.error,
|
|
164
|
+
warning: colors.semantic.warning,
|
|
165
|
+
info: colors.semantic.info,
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
// ============================================================================
|
|
169
|
+
// Props
|
|
170
|
+
// ============================================================================
|
|
171
|
+
|
|
172
|
+
export interface ErrorOverlayProps {
|
|
173
|
+
error: NormalizedError;
|
|
174
|
+
onClose: () => void;
|
|
175
|
+
onIgnore: () => void;
|
|
176
|
+
onCopy: () => void;
|
|
177
|
+
onAskAI?: () => void;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
// ============================================================================
|
|
181
|
+
// Component
|
|
182
|
+
// ============================================================================
|
|
183
|
+
|
|
184
|
+
export function ErrorOverlay({
|
|
185
|
+
error,
|
|
186
|
+
onClose,
|
|
187
|
+
onIgnore,
|
|
188
|
+
onCopy,
|
|
189
|
+
onAskAI,
|
|
190
|
+
}: ErrorOverlayProps): React.ReactElement {
|
|
191
|
+
const containerRef = useRef<HTMLDivElement>(null);
|
|
192
|
+
|
|
193
|
+
// ESC 키로 닫기
|
|
194
|
+
useEffect(() => {
|
|
195
|
+
const handleKeyDown = (e: KeyboardEvent) => {
|
|
196
|
+
if (e.key === 'Escape') {
|
|
197
|
+
onClose();
|
|
198
|
+
} else if (e.key === 'i' || e.key === 'I') {
|
|
199
|
+
onIgnore();
|
|
200
|
+
} else if (e.key === 'c' || e.key === 'C') {
|
|
201
|
+
onCopy();
|
|
202
|
+
}
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
document.addEventListener('keydown', handleKeyDown);
|
|
206
|
+
return () => document.removeEventListener('keydown', handleKeyDown);
|
|
207
|
+
}, [onClose, onIgnore, onCopy]);
|
|
208
|
+
|
|
209
|
+
// 포커스 트랩
|
|
210
|
+
useEffect(() => {
|
|
211
|
+
const container = containerRef.current;
|
|
212
|
+
if (container) {
|
|
213
|
+
container.focus();
|
|
214
|
+
}
|
|
215
|
+
}, []);
|
|
216
|
+
|
|
217
|
+
const handleBackdropClick = useCallback(
|
|
218
|
+
(e: React.MouseEvent) => {
|
|
219
|
+
if (e.target === e.currentTarget) {
|
|
220
|
+
onClose();
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
[onClose]
|
|
224
|
+
);
|
|
225
|
+
|
|
226
|
+
const severityColor = severityColors[error.severity] ?? colors.semantic.error;
|
|
227
|
+
const sanitizedMessage = sanitizeErrorMessage(error.message);
|
|
228
|
+
const sanitizedStack = sanitizeStackTrace(error.stack);
|
|
229
|
+
|
|
230
|
+
const formatTimestamp = (ts: number): string => {
|
|
231
|
+
return new Date(ts).toLocaleTimeString('ko-KR', {
|
|
232
|
+
hour: '2-digit',
|
|
233
|
+
minute: '2-digit',
|
|
234
|
+
second: '2-digit',
|
|
235
|
+
});
|
|
236
|
+
};
|
|
237
|
+
|
|
238
|
+
return (
|
|
239
|
+
<div
|
|
240
|
+
data-testid={testIds.overlay}
|
|
241
|
+
style={overlayStyles.backdrop}
|
|
242
|
+
onClick={handleBackdropClick}
|
|
243
|
+
role="dialog"
|
|
244
|
+
aria-modal="true"
|
|
245
|
+
aria-labelledby="error-title"
|
|
246
|
+
>
|
|
247
|
+
<div
|
|
248
|
+
ref={containerRef}
|
|
249
|
+
style={overlayStyles.container}
|
|
250
|
+
tabIndex={-1}
|
|
251
|
+
>
|
|
252
|
+
{/* Header */}
|
|
253
|
+
<div style={overlayStyles.header}>
|
|
254
|
+
<div style={overlayStyles.headerLeft}>
|
|
255
|
+
<ManduCharacter state="error" compact />
|
|
256
|
+
<div>
|
|
257
|
+
<h2 id="error-title" style={overlayStyles.title}>
|
|
258
|
+
에러 발생
|
|
259
|
+
</h2>
|
|
260
|
+
</div>
|
|
261
|
+
<span
|
|
262
|
+
style={{
|
|
263
|
+
...overlayStyles.badge,
|
|
264
|
+
backgroundColor: `${severityColor}20`,
|
|
265
|
+
color: severityColor,
|
|
266
|
+
}}
|
|
267
|
+
>
|
|
268
|
+
{error.severity}
|
|
269
|
+
</span>
|
|
270
|
+
</div>
|
|
271
|
+
<button
|
|
272
|
+
style={overlayStyles.closeButton}
|
|
273
|
+
onClick={onClose}
|
|
274
|
+
aria-label="닫기"
|
|
275
|
+
>
|
|
276
|
+
×
|
|
277
|
+
</button>
|
|
278
|
+
</div>
|
|
279
|
+
|
|
280
|
+
{/* Content */}
|
|
281
|
+
<div style={overlayStyles.content}>
|
|
282
|
+
{/* Error Message */}
|
|
283
|
+
<p style={overlayStyles.errorMessage}>{sanitizedMessage}</p>
|
|
284
|
+
|
|
285
|
+
{/* Stack Trace */}
|
|
286
|
+
{sanitizedStack && (
|
|
287
|
+
<div style={overlayStyles.section}>
|
|
288
|
+
<h3 style={overlayStyles.sectionTitle}>Stack Trace</h3>
|
|
289
|
+
<pre style={overlayStyles.stackTrace}>{sanitizedStack}</pre>
|
|
290
|
+
</div>
|
|
291
|
+
)}
|
|
292
|
+
|
|
293
|
+
{/* Component Stack (React) */}
|
|
294
|
+
{error.componentStack && (
|
|
295
|
+
<div style={overlayStyles.section}>
|
|
296
|
+
<h3 style={overlayStyles.sectionTitle}>Component Stack</h3>
|
|
297
|
+
<pre style={overlayStyles.stackTrace}>{error.componentStack}</pre>
|
|
298
|
+
</div>
|
|
299
|
+
)}
|
|
300
|
+
|
|
301
|
+
{/* Meta Info */}
|
|
302
|
+
<div style={overlayStyles.section}>
|
|
303
|
+
<h3 style={overlayStyles.sectionTitle}>상세 정보</h3>
|
|
304
|
+
<div style={overlayStyles.meta}>
|
|
305
|
+
<span style={overlayStyles.metaLabel}>타입:</span>
|
|
306
|
+
<span style={overlayStyles.metaValue}>{error.type}</span>
|
|
307
|
+
|
|
308
|
+
<span style={overlayStyles.metaLabel}>시간:</span>
|
|
309
|
+
<span style={overlayStyles.metaValue}>
|
|
310
|
+
{formatTimestamp(error.timestamp)}
|
|
311
|
+
</span>
|
|
312
|
+
|
|
313
|
+
{error.source && (
|
|
314
|
+
<>
|
|
315
|
+
<span style={overlayStyles.metaLabel}>파일:</span>
|
|
316
|
+
<span style={overlayStyles.metaValue}>
|
|
317
|
+
{error.source}
|
|
318
|
+
{error.line && `:${error.line}`}
|
|
319
|
+
{error.column && `:${error.column}`}
|
|
320
|
+
</span>
|
|
321
|
+
</>
|
|
322
|
+
)}
|
|
323
|
+
|
|
324
|
+
{error.islandId && (
|
|
325
|
+
<>
|
|
326
|
+
<span style={overlayStyles.metaLabel}>Island:</span>
|
|
327
|
+
<span style={overlayStyles.metaValue}>{error.islandId}</span>
|
|
328
|
+
</>
|
|
329
|
+
)}
|
|
330
|
+
|
|
331
|
+
<span style={overlayStyles.metaLabel}>URL:</span>
|
|
332
|
+
<span style={overlayStyles.metaValue}>{error.url}</span>
|
|
333
|
+
</div>
|
|
334
|
+
</div>
|
|
335
|
+
</div>
|
|
336
|
+
|
|
337
|
+
{/* Footer */}
|
|
338
|
+
<div style={overlayStyles.footer}>
|
|
339
|
+
<span style={overlayStyles.footerHint}>
|
|
340
|
+
ESC: 닫기 | I: 무시 | C: 복사
|
|
341
|
+
</span>
|
|
342
|
+
<div style={overlayStyles.buttonGroup}>
|
|
343
|
+
<button
|
|
344
|
+
style={{ ...overlayStyles.button, ...overlayStyles.secondaryButton }}
|
|
345
|
+
onClick={onIgnore}
|
|
346
|
+
>
|
|
347
|
+
무시하기
|
|
348
|
+
</button>
|
|
349
|
+
<button
|
|
350
|
+
style={{ ...overlayStyles.button, ...overlayStyles.secondaryButton }}
|
|
351
|
+
onClick={onCopy}
|
|
352
|
+
>
|
|
353
|
+
복사하기
|
|
354
|
+
</button>
|
|
355
|
+
{onAskAI && (
|
|
356
|
+
<button
|
|
357
|
+
style={{ ...overlayStyles.button, ...overlayStyles.primaryButton }}
|
|
358
|
+
onClick={onAskAI}
|
|
359
|
+
>
|
|
360
|
+
AI에게 물어보기
|
|
361
|
+
</button>
|
|
362
|
+
)}
|
|
363
|
+
</div>
|
|
364
|
+
</div>
|
|
365
|
+
</div>
|
|
366
|
+
</div>
|
|
367
|
+
);
|
|
368
|
+
}
|