@useavalon/avalon 0.1.12 → 0.1.13

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.
Files changed (230) hide show
  1. package/mod.ts +302 -0
  2. package/package.json +9 -17
  3. package/src/build/integration-bundler-plugin.ts +116 -0
  4. package/src/build/integration-config.ts +168 -0
  5. package/src/build/integration-detection-plugin.ts +117 -0
  6. package/src/build/integration-resolver-plugin.ts +90 -0
  7. package/src/build/island-manifest.ts +269 -0
  8. package/src/build/island-types-generator.ts +476 -0
  9. package/src/build/mdx-island-transform.ts +464 -0
  10. package/src/build/mdx-plugin.ts +98 -0
  11. package/src/build/page-island-transform.ts +598 -0
  12. package/src/build/prop-extractors/index.ts +21 -0
  13. package/src/build/prop-extractors/lit.ts +140 -0
  14. package/src/build/prop-extractors/qwik.ts +16 -0
  15. package/src/build/prop-extractors/solid.ts +125 -0
  16. package/src/build/prop-extractors/svelte.ts +194 -0
  17. package/src/build/prop-extractors/vue.ts +111 -0
  18. package/src/build/sidecar-file-manager.ts +104 -0
  19. package/src/build/sidecar-renderer.ts +30 -0
  20. package/src/client/adapters/index.ts +21 -0
  21. package/src/client/components.ts +35 -0
  22. package/src/client/css-hmr-handler.ts +344 -0
  23. package/src/client/framework-adapter.ts +462 -0
  24. package/src/client/hmr-coordinator.ts +396 -0
  25. package/src/client/hmr-error-overlay.js +533 -0
  26. package/src/client/main.js +824 -0
  27. package/src/components/Image.tsx +123 -0
  28. package/src/components/IslandErrorBoundary.tsx +145 -0
  29. package/src/components/LayoutDataErrorBoundary.tsx +141 -0
  30. package/src/components/LayoutErrorBoundary.tsx +127 -0
  31. package/src/components/PersistentIsland.tsx +52 -0
  32. package/src/components/StreamingErrorBoundary.tsx +233 -0
  33. package/src/components/StreamingLayout.tsx +538 -0
  34. package/src/core/components/component-analyzer.ts +192 -0
  35. package/src/core/components/component-detection.ts +508 -0
  36. package/src/core/components/enhanced-framework-detector.ts +500 -0
  37. package/src/core/components/framework-registry.ts +563 -0
  38. package/src/core/content/mdx-processor.ts +46 -0
  39. package/src/core/integrations/index.ts +19 -0
  40. package/src/core/integrations/loader.ts +125 -0
  41. package/src/core/integrations/registry.ts +175 -0
  42. package/src/core/islands/island-persistence.ts +325 -0
  43. package/src/core/islands/island-state-serializer.ts +258 -0
  44. package/src/core/islands/persistent-island-context.tsx +80 -0
  45. package/src/core/islands/use-persistent-state.ts +68 -0
  46. package/src/core/layout/enhanced-layout-resolver.ts +322 -0
  47. package/src/core/layout/layout-cache-manager.ts +485 -0
  48. package/src/core/layout/layout-composer.ts +357 -0
  49. package/src/core/layout/layout-data-loader.ts +516 -0
  50. package/src/core/layout/layout-discovery.ts +243 -0
  51. package/src/core/layout/layout-matcher.ts +299 -0
  52. package/src/core/layout/layout-types.ts +110 -0
  53. package/src/core/modules/framework-module-resolver.ts +273 -0
  54. package/src/islands/component-analysis.ts +213 -0
  55. package/src/islands/css-utils.ts +565 -0
  56. package/src/islands/discovery/index.ts +80 -0
  57. package/src/islands/discovery/registry.ts +340 -0
  58. package/src/islands/discovery/resolver.ts +477 -0
  59. package/src/islands/discovery/scanner.ts +386 -0
  60. package/src/islands/discovery/types.ts +117 -0
  61. package/src/islands/discovery/validator.ts +544 -0
  62. package/src/islands/discovery/watcher.ts +368 -0
  63. package/src/islands/framework-detection.ts +428 -0
  64. package/src/islands/integration-loader.ts +490 -0
  65. package/src/islands/island.tsx +565 -0
  66. package/src/islands/render-cache.ts +550 -0
  67. package/src/islands/types.ts +80 -0
  68. package/src/islands/universal-css-collector.ts +157 -0
  69. package/src/islands/universal-head-collector.ts +137 -0
  70. package/src/layout-system.ts +218 -0
  71. package/src/middleware/discovery.ts +268 -0
  72. package/src/middleware/executor.ts +315 -0
  73. package/src/middleware/index.ts +76 -0
  74. package/src/middleware/types.ts +99 -0
  75. package/src/nitro/build-config.ts +576 -0
  76. package/src/nitro/config.ts +483 -0
  77. package/src/nitro/error-handler.ts +636 -0
  78. package/src/nitro/index.ts +173 -0
  79. package/src/nitro/island-manifest.ts +584 -0
  80. package/src/nitro/middleware-adapter.ts +260 -0
  81. package/src/nitro/renderer.ts +1471 -0
  82. package/src/nitro/route-discovery.ts +439 -0
  83. package/src/nitro/types.ts +321 -0
  84. package/src/render/collect-css.ts +198 -0
  85. package/src/render/error-pages.ts +79 -0
  86. package/src/render/isolated-ssr-renderer.ts +654 -0
  87. package/src/render/ssr.ts +1030 -0
  88. package/src/schemas/api.ts +30 -0
  89. package/src/schemas/core.ts +64 -0
  90. package/src/schemas/index.ts +212 -0
  91. package/src/schemas/layout.ts +279 -0
  92. package/src/schemas/routing/index.ts +38 -0
  93. package/src/schemas/routing.ts +376 -0
  94. package/src/types/as-island.ts +20 -0
  95. package/src/types/layout.ts +285 -0
  96. package/src/types/routing.ts +555 -0
  97. package/src/types/types.ts +5 -0
  98. package/src/utils/dev-logger.ts +299 -0
  99. package/src/utils/fs.ts +151 -0
  100. package/src/vite-plugin/auto-discover.ts +551 -0
  101. package/src/vite-plugin/config.ts +266 -0
  102. package/src/vite-plugin/errors.ts +127 -0
  103. package/src/vite-plugin/image-optimization.ts +156 -0
  104. package/src/vite-plugin/integration-activator.ts +126 -0
  105. package/src/vite-plugin/island-sidecar-plugin.ts +176 -0
  106. package/src/vite-plugin/module-discovery.ts +189 -0
  107. package/src/vite-plugin/nitro-integration.ts +1354 -0
  108. package/src/vite-plugin/plugin.ts +403 -0
  109. package/src/vite-plugin/types.ts +327 -0
  110. package/src/vite-plugin/validation.ts +228 -0
  111. package/dist/mod.js +0 -1
  112. package/dist/src/build/integration-bundler-plugin.js +0 -1
  113. package/dist/src/build/integration-config.js +0 -1
  114. package/dist/src/build/integration-detection-plugin.js +0 -1
  115. package/dist/src/build/integration-resolver-plugin.js +0 -1
  116. package/dist/src/build/island-manifest.js +0 -1
  117. package/dist/src/build/island-types-generator.js +0 -5
  118. package/dist/src/build/mdx-island-transform.js +0 -2
  119. package/dist/src/build/mdx-plugin.js +0 -1
  120. package/dist/src/build/page-island-transform.js +0 -3
  121. package/dist/src/build/prop-extractors/index.js +0 -1
  122. package/dist/src/build/prop-extractors/lit.js +0 -1
  123. package/dist/src/build/prop-extractors/qwik.js +0 -1
  124. package/dist/src/build/prop-extractors/solid.js +0 -1
  125. package/dist/src/build/prop-extractors/svelte.js +0 -1
  126. package/dist/src/build/prop-extractors/vue.js +0 -1
  127. package/dist/src/build/sidecar-file-manager.js +0 -1
  128. package/dist/src/build/sidecar-renderer.js +0 -6
  129. package/dist/src/client/adapters/index.js +0 -1
  130. package/dist/src/client/components.js +0 -1
  131. package/dist/src/client/css-hmr-handler.js +0 -1
  132. package/dist/src/client/framework-adapter.js +0 -13
  133. package/dist/src/client/hmr-coordinator.js +0 -1
  134. package/dist/src/client/hmr-error-overlay.js +0 -214
  135. package/dist/src/client/main.js +0 -39
  136. package/dist/src/components/Image.js +0 -1
  137. package/dist/src/components/IslandErrorBoundary.js +0 -1
  138. package/dist/src/components/LayoutDataErrorBoundary.js +0 -1
  139. package/dist/src/components/LayoutErrorBoundary.js +0 -1
  140. package/dist/src/components/PersistentIsland.js +0 -1
  141. package/dist/src/components/StreamingErrorBoundary.js +0 -1
  142. package/dist/src/components/StreamingLayout.js +0 -29
  143. package/dist/src/core/components/component-analyzer.js +0 -1
  144. package/dist/src/core/components/component-detection.js +0 -5
  145. package/dist/src/core/components/enhanced-framework-detector.js +0 -1
  146. package/dist/src/core/components/framework-registry.js +0 -1
  147. package/dist/src/core/content/mdx-processor.js +0 -1
  148. package/dist/src/core/integrations/index.js +0 -1
  149. package/dist/src/core/integrations/loader.js +0 -1
  150. package/dist/src/core/integrations/registry.js +0 -1
  151. package/dist/src/core/islands/island-persistence.js +0 -1
  152. package/dist/src/core/islands/island-state-serializer.js +0 -1
  153. package/dist/src/core/islands/persistent-island-context.js +0 -1
  154. package/dist/src/core/islands/use-persistent-state.js +0 -1
  155. package/dist/src/core/layout/enhanced-layout-resolver.js +0 -1
  156. package/dist/src/core/layout/layout-cache-manager.js +0 -1
  157. package/dist/src/core/layout/layout-composer.js +0 -1
  158. package/dist/src/core/layout/layout-data-loader.js +0 -1
  159. package/dist/src/core/layout/layout-discovery.js +0 -1
  160. package/dist/src/core/layout/layout-matcher.js +0 -1
  161. package/dist/src/core/layout/layout-types.js +0 -1
  162. package/dist/src/core/modules/framework-module-resolver.js +0 -1
  163. package/dist/src/islands/component-analysis.js +0 -1
  164. package/dist/src/islands/css-utils.js +0 -17
  165. package/dist/src/islands/discovery/index.js +0 -1
  166. package/dist/src/islands/discovery/registry.js +0 -1
  167. package/dist/src/islands/discovery/resolver.js +0 -2
  168. package/dist/src/islands/discovery/scanner.js +0 -1
  169. package/dist/src/islands/discovery/types.js +0 -1
  170. package/dist/src/islands/discovery/validator.js +0 -18
  171. package/dist/src/islands/discovery/watcher.js +0 -1
  172. package/dist/src/islands/framework-detection.js +0 -1
  173. package/dist/src/islands/integration-loader.js +0 -1
  174. package/dist/src/islands/island.js +0 -1
  175. package/dist/src/islands/render-cache.js +0 -1
  176. package/dist/src/islands/types.js +0 -1
  177. package/dist/src/islands/universal-css-collector.js +0 -5
  178. package/dist/src/islands/universal-head-collector.js +0 -2
  179. package/dist/src/layout-system.js +0 -1
  180. package/dist/src/middleware/discovery.js +0 -1
  181. package/dist/src/middleware/executor.js +0 -1
  182. package/dist/src/middleware/index.js +0 -1
  183. package/dist/src/middleware/types.js +0 -1
  184. package/dist/src/nitro/build-config.js +0 -1
  185. package/dist/src/nitro/config.js +0 -1
  186. package/dist/src/nitro/error-handler.js +0 -198
  187. package/dist/src/nitro/index.js +0 -1
  188. package/dist/src/nitro/island-manifest.js +0 -2
  189. package/dist/src/nitro/middleware-adapter.js +0 -1
  190. package/dist/src/nitro/renderer.js +0 -183
  191. package/dist/src/nitro/route-discovery.js +0 -1
  192. package/dist/src/nitro/types.js +0 -1
  193. package/dist/src/render/collect-css.js +0 -3
  194. package/dist/src/render/error-pages.js +0 -48
  195. package/dist/src/render/isolated-ssr-renderer.js +0 -1
  196. package/dist/src/render/ssr.js +0 -90
  197. package/dist/src/schemas/api.js +0 -1
  198. package/dist/src/schemas/core.js +0 -1
  199. package/dist/src/schemas/index.js +0 -1
  200. package/dist/src/schemas/layout.js +0 -1
  201. package/dist/src/schemas/routing/index.js +0 -1
  202. package/dist/src/schemas/routing.js +0 -1
  203. package/dist/src/types/as-island.js +0 -1
  204. package/dist/src/types/layout.js +0 -1
  205. package/dist/src/types/routing.js +0 -1
  206. package/dist/src/types/types.js +0 -1
  207. package/dist/src/utils/dev-logger.js +0 -12
  208. package/dist/src/utils/fs.js +0 -1
  209. package/dist/src/vite-plugin/auto-discover.js +0 -1
  210. package/dist/src/vite-plugin/config.js +0 -1
  211. package/dist/src/vite-plugin/errors.js +0 -1
  212. package/dist/src/vite-plugin/image-optimization.js +0 -45
  213. package/dist/src/vite-plugin/integration-activator.js +0 -1
  214. package/dist/src/vite-plugin/island-sidecar-plugin.js +0 -1
  215. package/dist/src/vite-plugin/module-discovery.js +0 -1
  216. package/dist/src/vite-plugin/nitro-integration.js +0 -42
  217. package/dist/src/vite-plugin/plugin.js +0 -1
  218. package/dist/src/vite-plugin/types.js +0 -1
  219. package/dist/src/vite-plugin/validation.js +0 -2
  220. /package/{dist/src → src}/client/types/framework-runtime.d.ts +0 -0
  221. /package/{dist/src → src}/client/types/vite-hmr.d.ts +0 -0
  222. /package/{dist/src → src}/client/types/vite-virtual-modules.d.ts +0 -0
  223. /package/{dist/src → src}/layout-system.d.ts +0 -0
  224. /package/{dist/src → src}/types/image.d.ts +0 -0
  225. /package/{dist/src → src}/types/index.d.ts +0 -0
  226. /package/{dist/src → src}/types/island-jsx.d.ts +0 -0
  227. /package/{dist/src → src}/types/island-prop.d.ts +0 -0
  228. /package/{dist/src → src}/types/mdx.d.ts +0 -0
  229. /package/{dist/src → src}/types/urlpattern.d.ts +0 -0
  230. /package/{dist/src → src}/types/vite-env.d.ts +0 -0
@@ -0,0 +1,538 @@
1
+ import { ComponentChildren, ComponentType, Component } from 'preact';
2
+ import { useState, useEffect, useRef } from 'preact/hooks';
3
+ import type { StreamingLayoutProps } from '../types/layout.ts';
4
+
5
+ /**
6
+ * Streaming Layout Component Props
7
+ */
8
+ export interface StreamingLayoutComponentProps extends StreamingLayoutProps {
9
+ /**
10
+ * Component to render when ready
11
+ */
12
+ component: ComponentType<any>;
13
+
14
+ /**
15
+ * Props to pass to the component
16
+ */
17
+ componentProps?: any;
18
+
19
+ /**
20
+ * Function to check if component is ready
21
+ */
22
+ isReady?: () => Promise<boolean>;
23
+
24
+ /**
25
+ * Timeout for loading (ms)
26
+ */
27
+ timeout?: number;
28
+
29
+ /**
30
+ * Error boundary fallback
31
+ */
32
+ onError?: (error: Error) => ComponentChildren;
33
+
34
+ /**
35
+ * Loading state callback
36
+ */
37
+ onLoadingChange?: (isLoading: boolean) => void;
38
+ }
39
+
40
+ /**
41
+ * Component state for streaming
42
+ */
43
+ interface StreamingState {
44
+ isReady: boolean;
45
+ isLoading: boolean;
46
+ error: Error | null;
47
+ hasTimedOut: boolean;
48
+ }
49
+
50
+ /**
51
+ * Streaming Layout Component with Suspense-like behavior
52
+ */
53
+ export function StreamingLayout(props: StreamingLayoutComponentProps): ComponentChildren {
54
+ const {
55
+ component: Component,
56
+ componentProps = {},
57
+ children,
58
+ fallback,
59
+ priority = 'medium',
60
+ isReady,
61
+ timeout = 5000,
62
+ onError,
63
+ onLoadingChange,
64
+ } = props;
65
+
66
+ // In SSR mode, render children directly without streaming behavior
67
+ if (typeof window === 'undefined') {
68
+ return children;
69
+ }
70
+
71
+ const [state, setState] = useState<StreamingState>({
72
+ isReady: false,
73
+ isLoading: true,
74
+ error: null,
75
+ hasTimedOut: false,
76
+ });
77
+
78
+ const timeoutRef = useRef<number>();
79
+ const mountedRef = useRef(true);
80
+
81
+ useEffect(() => {
82
+ return () => {
83
+ mountedRef.current = false;
84
+ };
85
+ }, []);
86
+
87
+ useEffect(() => {
88
+ if (!isReady) {
89
+ // If no ready check provided, assume ready immediately
90
+ setState(prev => ({ ...prev, isReady: true, isLoading: false }));
91
+ onLoadingChange?.(false);
92
+ return;
93
+ }
94
+
95
+ let cancelled = false;
96
+
97
+ const checkReady = async () => {
98
+ try {
99
+ // Set up timeout
100
+ if (timeout > 0) {
101
+ timeoutRef.current = setTimeout(() => {
102
+ if (!cancelled && mountedRef.current) {
103
+ setState(prev => ({ ...prev, hasTimedOut: true, isLoading: false }));
104
+ onLoadingChange?.(false);
105
+ }
106
+ }, timeout);
107
+ }
108
+
109
+ // Wait for component to be ready
110
+ const ready = await isReady();
111
+
112
+ if (cancelled || !mountedRef.current) return;
113
+
114
+ // Clear timeout
115
+ if (timeoutRef.current) {
116
+ clearTimeout(timeoutRef.current);
117
+ }
118
+
119
+ setState(prev => ({
120
+ ...prev,
121
+ isReady: ready,
122
+ isLoading: false,
123
+ hasTimedOut: false,
124
+ }));
125
+
126
+ onLoadingChange?.(false);
127
+ } catch (error) {
128
+ if (cancelled || !mountedRef.current) return;
129
+
130
+ // Clear timeout
131
+ if (timeoutRef.current) {
132
+ clearTimeout(timeoutRef.current);
133
+ }
134
+
135
+ setState(prev => ({
136
+ ...prev,
137
+ error: error as Error,
138
+ isLoading: false,
139
+ }));
140
+
141
+ onLoadingChange?.(false);
142
+ }
143
+ };
144
+
145
+ checkReady();
146
+
147
+ return () => {
148
+ cancelled = true;
149
+ if (timeoutRef.current) {
150
+ clearTimeout(timeoutRef.current);
151
+ }
152
+ };
153
+ }, [isReady, timeout, onLoadingChange]);
154
+
155
+ // Handle error state
156
+ if (state.error) {
157
+ if (onError) {
158
+ return onError(state.error);
159
+ }
160
+
161
+ return (
162
+ <div class="streaming-error" data-priority={priority}>
163
+ <p>Failed to load component: {state.error.message}</p>
164
+ <button
165
+ onClick={() => {
166
+ setState({
167
+ isReady: false,
168
+ isLoading: true,
169
+ error: null,
170
+ hasTimedOut: false,
171
+ });
172
+ onLoadingChange?.(true);
173
+ }}>
174
+ Retry
175
+ </button>
176
+ </div>
177
+ );
178
+ }
179
+
180
+ // Handle timeout state
181
+ if (state.hasTimedOut) {
182
+ return (
183
+ <div class="streaming-timeout" data-priority={priority}>
184
+ {fallback || (
185
+ <div class="timeout-message">
186
+ <p>Component loading timed out</p>
187
+ <button
188
+ onClick={() => {
189
+ setState({
190
+ isReady: false,
191
+ isLoading: true,
192
+ error: null,
193
+ hasTimedOut: false,
194
+ });
195
+ onLoadingChange?.(true);
196
+ }}>
197
+ Retry
198
+ </button>
199
+ </div>
200
+ )}
201
+ </div>
202
+ );
203
+ }
204
+
205
+ // Handle loading state
206
+ if (state.isLoading || !state.isReady) {
207
+ return (
208
+ <div class="streaming-loading" data-priority={priority}>
209
+ {fallback || <StreamingFallback priority={priority} />}
210
+ </div>
211
+ );
212
+ }
213
+
214
+ // Render the actual component
215
+ return (
216
+ <div class="streaming-ready" data-priority={priority}>
217
+ <Component {...componentProps}>{children}</Component>
218
+ </div>
219
+ );
220
+ }
221
+
222
+ /**
223
+ * Default streaming fallback component
224
+ */
225
+ function StreamingFallback({ priority }: { priority: string }) {
226
+ const priorityClass = `skeleton-${priority}`;
227
+
228
+ return (
229
+ <div class={`streaming-skeleton ${priorityClass}`}>
230
+ <div class="skeleton-content">
231
+ <div class="skeleton-line skeleton-line-1"></div>
232
+ <div class="skeleton-line skeleton-line-2"></div>
233
+ <div class="skeleton-line skeleton-line-3"></div>
234
+ </div>
235
+ <style>{`
236
+ .streaming-skeleton {
237
+ padding: 1rem;
238
+ border-radius: 0.5rem;
239
+ background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
240
+ background-size: 200% 100%;
241
+ animation: skeleton-loading 1.5s infinite;
242
+ }
243
+ .skeleton-content {
244
+ display: flex;
245
+ flex-direction: column;
246
+ gap: 0.5rem;
247
+ }
248
+ .skeleton-line {
249
+ height: 1rem;
250
+ background: rgba(255, 255, 255, 0.8);
251
+ border-radius: 0.25rem;
252
+ }
253
+ .skeleton-line-1 { width: 100%; }
254
+ .skeleton-line-2 { width: 75%; }
255
+ .skeleton-line-3 { width: 50%; }
256
+ .skeleton-high { border-left: 4px solid #ef4444; }
257
+ .skeleton-medium { border-left: 4px solid #f59e0b; }
258
+ .skeleton-low { border-left: 4px solid #10b981; }
259
+ @keyframes skeleton-loading {
260
+ 0% { background-position: 200% 0; }
261
+ 100% { background-position: -200% 0; }
262
+ }
263
+ `}</style>
264
+ </div>
265
+ );
266
+ }
267
+
268
+ /**
269
+ * Suspense-like boundary for streaming components
270
+ */
271
+ export interface StreamingSuspenseProps {
272
+ /**
273
+ * Fallback to show while loading
274
+ */
275
+ fallback?: ComponentChildren;
276
+
277
+ /**
278
+ * Children components
279
+ */
280
+ children: ComponentChildren;
281
+
282
+ /**
283
+ * Priority for this suspense boundary
284
+ */
285
+ priority?: 'high' | 'medium' | 'low';
286
+
287
+ /**
288
+ * Timeout for all children (ms)
289
+ */
290
+ timeout?: number;
291
+
292
+ /**
293
+ * Error boundary for failed components
294
+ */
295
+ onError?: (error: Error) => ComponentChildren;
296
+ }
297
+
298
+ /**
299
+ * Streaming Suspense Boundary Component
300
+ */
301
+ export function StreamingSuspense(props: StreamingSuspenseProps): ComponentChildren {
302
+ const { fallback, children, priority = 'medium', timeout = 5000, onError } = props;
303
+
304
+ const [isLoading, setIsLoading] = useState(true);
305
+ const [error, setError] = useState<Error | null>(null);
306
+ const [hasTimedOut, setHasTimedOut] = useState(false);
307
+ const timeoutRef = useRef<number>();
308
+ const mountedRef = useRef(true);
309
+
310
+ useEffect(() => {
311
+ return () => {
312
+ mountedRef.current = false;
313
+ };
314
+ }, []);
315
+
316
+ useEffect(() => {
317
+ // Set up timeout for the entire suspense boundary
318
+ if (timeout > 0) {
319
+ timeoutRef.current = setTimeout(() => {
320
+ if (mountedRef.current && isLoading) {
321
+ setHasTimedOut(true);
322
+ setIsLoading(false);
323
+ }
324
+ }, timeout);
325
+ }
326
+
327
+ return () => {
328
+ if (timeoutRef.current) {
329
+ clearTimeout(timeoutRef.current);
330
+ }
331
+ };
332
+ }, [timeout, isLoading]);
333
+
334
+ // Handle child errors
335
+ const handleError = (childError: Error) => {
336
+ setError(childError);
337
+ setIsLoading(false);
338
+ if (timeoutRef.current) {
339
+ clearTimeout(timeoutRef.current);
340
+ }
341
+ };
342
+
343
+ // Handle error state
344
+ if (error) {
345
+ if (onError) {
346
+ return onError(error);
347
+ }
348
+
349
+ return (
350
+ <div class="streaming-suspense-error" data-priority={priority}>
351
+ <p>Suspense boundary error: {error.message}</p>
352
+ <button
353
+ onClick={() => {
354
+ setError(null);
355
+ setIsLoading(true);
356
+ setHasTimedOut(false);
357
+ }}>
358
+ Retry
359
+ </button>
360
+ </div>
361
+ );
362
+ }
363
+
364
+ // Handle timeout state
365
+ if (hasTimedOut) {
366
+ return (
367
+ <div class="streaming-suspense-timeout" data-priority={priority}>
368
+ {fallback || (
369
+ <div class="suspense-timeout-message">
370
+ <p>Suspense boundary timed out</p>
371
+ <button
372
+ onClick={() => {
373
+ setHasTimedOut(false);
374
+ setIsLoading(true);
375
+ }}>
376
+ Retry
377
+ </button>
378
+ </div>
379
+ )}
380
+ </div>
381
+ );
382
+ }
383
+
384
+ // Handle loading state
385
+ if (isLoading) {
386
+ return (
387
+ <div class="streaming-suspense-loading" data-priority={priority}>
388
+ {fallback || <StreamingFallback priority={priority} />}
389
+ </div>
390
+ );
391
+ }
392
+
393
+ // Render children with error boundary
394
+ return (
395
+ <div class="streaming-suspense-ready" data-priority={priority}>
396
+ <StreamingErrorBoundary onError={handleError}>{children}</StreamingErrorBoundary>
397
+ </div>
398
+ );
399
+ }
400
+
401
+ /**
402
+ * Error boundary for streaming components
403
+ */
404
+ interface StreamingErrorBoundaryProps {
405
+ children: ComponentChildren;
406
+ onError?: (error: Error) => void;
407
+ }
408
+
409
+ interface StreamingErrorBoundaryState {
410
+ hasError: boolean;
411
+ error?: Error;
412
+ }
413
+
414
+ class StreamingErrorBoundary extends Component<StreamingErrorBoundaryProps, StreamingErrorBoundaryState> {
415
+ constructor(props: StreamingErrorBoundaryProps) {
416
+ super(props);
417
+ this.state = { hasError: false };
418
+ }
419
+
420
+ static override getDerivedStateFromError(error: Error): StreamingErrorBoundaryState {
421
+ return { hasError: true, error };
422
+ }
423
+
424
+ override componentDidCatch(error: Error, errorInfo: any) {
425
+ console.error('StreamingErrorBoundary caught an error:', error, errorInfo);
426
+ this.props.onError?.(error);
427
+ }
428
+
429
+ render() {
430
+ if (this.state.hasError) {
431
+ return (
432
+ <div class="streaming-error-boundary">
433
+ <p>Something went wrong in streaming component.</p>
434
+ <button onClick={() => this.setState({ hasError: false, error: undefined })}>Retry</button>
435
+ </div>
436
+ );
437
+ }
438
+
439
+ return this.props.children;
440
+ }
441
+ }
442
+
443
+ /**
444
+ * Higher-order component to add streaming capabilities
445
+ */
446
+ export function withStreaming<P extends object>(
447
+ WrappedComponent: ComponentType<P>,
448
+ streamingOptions: {
449
+ fallback?: ComponentChildren;
450
+ priority?: 'high' | 'medium' | 'low';
451
+ isReady?: () => Promise<boolean>;
452
+ timeout?: number;
453
+ } = {}
454
+ ) {
455
+ return function StreamingWrapper(props: P) {
456
+ const finalOptions = {
457
+ priority: 'medium' as const,
458
+ ...streamingOptions,
459
+ };
460
+
461
+ return <StreamingLayout component={WrappedComponent} componentProps={props} {...finalOptions} />;
462
+ };
463
+ }
464
+
465
+ /**
466
+ * Hook for streaming component state
467
+ */
468
+ export function useStreamingState(isReady?: () => Promise<boolean>, timeout = 5000) {
469
+ const [state, setState] = useState<StreamingState>({
470
+ isReady: false,
471
+ isLoading: true,
472
+ error: null,
473
+ hasTimedOut: false,
474
+ });
475
+
476
+ useEffect(() => {
477
+ if (!isReady) {
478
+ setState(prev => ({ ...prev, isReady: true, isLoading: false }));
479
+ return;
480
+ }
481
+
482
+ let cancelled = false;
483
+ let timeoutId: number;
484
+
485
+ const checkReady = async () => {
486
+ try {
487
+ if (timeout > 0) {
488
+ timeoutId = setTimeout(() => {
489
+ if (!cancelled) {
490
+ setState(prev => ({ ...prev, hasTimedOut: true, isLoading: false }));
491
+ }
492
+ }, timeout);
493
+ }
494
+
495
+ const ready = await isReady();
496
+
497
+ if (cancelled) return;
498
+
499
+ if (timeoutId) clearTimeout(timeoutId);
500
+
501
+ setState(prev => ({
502
+ ...prev,
503
+ isReady: ready,
504
+ isLoading: false,
505
+ hasTimedOut: false,
506
+ }));
507
+ } catch (error) {
508
+ if (cancelled) return;
509
+
510
+ if (timeoutId) clearTimeout(timeoutId);
511
+
512
+ setState(prev => ({
513
+ ...prev,
514
+ error: error as Error,
515
+ isLoading: false,
516
+ }));
517
+ }
518
+ };
519
+
520
+ checkReady();
521
+
522
+ return () => {
523
+ cancelled = true;
524
+ if (timeoutId) clearTimeout(timeoutId);
525
+ };
526
+ }, [isReady, timeout]);
527
+
528
+ const retry = () => {
529
+ setState({
530
+ isReady: false,
531
+ isLoading: true,
532
+ error: null,
533
+ hasTimedOut: false,
534
+ });
535
+ };
536
+
537
+ return { ...state, retry };
538
+ }
@@ -0,0 +1,192 @@
1
+ /**
2
+ * Component Analyzer - High-level interface for component detection system
3
+ *
4
+ * This module provides a convenient interface for analyzing components
5
+ * and making hydration decisions in the SSR system.
6
+ */
7
+
8
+ import {
9
+ analyzeComponent,
10
+ shouldHydrateComponent,
11
+ createComponentMetadata,
12
+ type ComponentAnalysis,
13
+ type DetectionResult,
14
+ type ComponentMetadata,
15
+ } from './component-detection.ts';
16
+
17
+ export interface AnalyzerOptions {
18
+ forceSSROnly?: boolean;
19
+ detectScripts?: boolean;
20
+ suppressWarnings?: boolean;
21
+ logDecisions?: boolean;
22
+ }
23
+
24
+ export interface AnalysisReport {
25
+ metadata: ComponentMetadata;
26
+ decision: DetectionResult;
27
+ analysis: ComponentAnalysis;
28
+ }
29
+
30
+ /**
31
+ * Analyzes a component file and returns comprehensive analysis report
32
+ */
33
+ export async function analyzeComponentFile(filePath: string, options: AnalyzerOptions = {}): Promise<AnalysisReport> {
34
+ try {
35
+ // Read component file
36
+ const { readFile } = await import('node:fs/promises');
37
+ const content = await readFile(filePath, 'utf-8');
38
+
39
+ // Perform analysis
40
+ const analysis = analyzeComponent(filePath, content);
41
+ const decision = shouldHydrateComponent(analysis, options);
42
+ const metadata = createComponentMetadata(filePath, content, analysis);
43
+
44
+ // Log decision if requested
45
+ if (options.logDecisions) {
46
+ logAnalysisDecision(filePath, analysis, decision);
47
+ }
48
+
49
+ return {
50
+ metadata,
51
+ decision,
52
+ analysis,
53
+ };
54
+ } catch (error) {
55
+ const errorMessage = error instanceof Error ? error.message : String(error);
56
+ throw new Error(`Failed to analyze component ${filePath}: ${errorMessage}`);
57
+ }
58
+ }
59
+
60
+ /**
61
+ * Analyzes component content directly (for in-memory components)
62
+ */
63
+ export function analyzeComponentContent(
64
+ filePath: string,
65
+ content: string,
66
+ options: AnalyzerOptions = {}
67
+ ): AnalysisReport {
68
+ const analysis = analyzeComponent(filePath, content);
69
+ const decision = shouldHydrateComponent(analysis, options);
70
+ const metadata = createComponentMetadata(filePath, content, analysis);
71
+
72
+ // Log decision if requested
73
+ if (options.logDecisions) {
74
+ logAnalysisDecision(filePath, analysis, decision);
75
+ }
76
+
77
+ return {
78
+ metadata,
79
+ decision,
80
+ analysis,
81
+ };
82
+ }
83
+
84
+ /**
85
+ * Batch analyze multiple components
86
+ */
87
+ export async function analyzeComponents(
88
+ filePaths: string[],
89
+ options: AnalyzerOptions = {}
90
+ ): Promise<Map<string, AnalysisReport>> {
91
+ const results = new Map<string, AnalysisReport>();
92
+
93
+ for (const filePath of filePaths) {
94
+ try {
95
+ const report = await analyzeComponentFile(filePath, options);
96
+ results.set(filePath, report);
97
+ } catch (error) {
98
+ const errorMessage = error instanceof Error ? error.message : String(error);
99
+ console.error(`Failed to analyze ${filePath}:`, errorMessage);
100
+ }
101
+ }
102
+
103
+ return results;
104
+ }
105
+
106
+ /**
107
+ * Quick check if a component should be hydrated
108
+ */
109
+ export async function shouldHydrate(filePath: string, options: AnalyzerOptions = {}): Promise<boolean> {
110
+ try {
111
+ const report = await analyzeComponentFile(filePath, options);
112
+ return report.decision.shouldHydrate;
113
+ } catch (error) {
114
+ const errorMessage = error instanceof Error ? error.message : String(error);
115
+ console.error(`Error checking hydration for ${filePath}:`, errorMessage);
116
+ // Default to hydration on error for safety
117
+ return true;
118
+ }
119
+ }
120
+
121
+ /**
122
+ * Get component framework type
123
+ */
124
+ export async function getComponentFramework(filePath: string): Promise<ComponentAnalysis['framework']> {
125
+ try {
126
+ const report = await analyzeComponentFile(filePath);
127
+ return report.analysis.framework;
128
+ } catch (error) {
129
+ const errorMessage = error instanceof Error ? error.message : String(error);
130
+ console.error(`Error detecting framework for ${filePath}:`, errorMessage);
131
+ return 'unknown';
132
+ }
133
+ }
134
+
135
+ /**
136
+ * Logs analysis decision for debugging
137
+ */
138
+ function logAnalysisDecision(filePath: string, analysis: ComponentAnalysis, decision: DetectionResult): void {
139
+ const framework = analysis.framework.toUpperCase();
140
+ const strategy = decision.shouldHydrate ? 'HYDRATE' : 'SSR-ONLY';
141
+
142
+ console.log(`[Component Analysis] ${filePath}`);
143
+ console.log(` Framework: ${framework}`);
144
+ console.log(` Has Script: ${analysis.hasScript}`);
145
+ console.log(` Has Hydrate Function: ${analysis.hasHydrateFunction}`);
146
+ console.log(` Strategy: ${strategy}`);
147
+ console.log(` Reason: ${decision.reason}`);
148
+
149
+ if (decision.warnings && decision.warnings.length > 0) {
150
+ console.log(` Warnings:`);
151
+ decision.warnings.forEach(warning => console.log(` - ${warning}`));
152
+ }
153
+
154
+ console.log('');
155
+ }
156
+
157
+ /**
158
+ * Generate summary statistics for a batch of components
159
+ */
160
+ export function generateAnalysisSummary(reports: Map<string, AnalysisReport>): {
161
+ total: number;
162
+ byFramework: Record<string, number>;
163
+ byStrategy: Record<string, number>;
164
+ withWarnings: number;
165
+ } {
166
+ const summary = {
167
+ total: reports.size,
168
+ byFramework: {} as Record<string, number>,
169
+ byStrategy: {} as Record<string, number>,
170
+ withWarnings: 0,
171
+ };
172
+
173
+ for (const [, report] of reports) {
174
+ // Count by framework
175
+ const framework = report.analysis.framework;
176
+ summary.byFramework[framework] = (summary.byFramework[framework] || 0) + 1;
177
+
178
+ // Count by strategy
179
+ const strategy = report.decision.shouldHydrate ? 'hydrate' : 'ssr-only';
180
+ summary.byStrategy[strategy] = (summary.byStrategy[strategy] || 0) + 1;
181
+
182
+ // Count warnings
183
+ if (report.decision.warnings && report.decision.warnings.length > 0) {
184
+ summary.withWarnings++;
185
+ }
186
+ }
187
+
188
+ return summary;
189
+ }
190
+
191
+ // Export types for external use
192
+ export type { ComponentAnalysis, DetectionResult, ComponentMetadata } from './component-detection.ts';