@rangojs/router 0.0.0-experimental.eb0645d3 → 0.0.0-experimental.f1468e3c

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 (392) hide show
  1. package/AGENTS.md +8 -0
  2. package/README.md +126 -16
  3. package/dist/bin/rango.js +319 -95
  4. package/dist/testing/vitest.js +82 -0
  5. package/dist/vite/index.js +2724 -1053
  6. package/package.json +68 -14
  7. package/skills/api-client/SKILL.md +211 -0
  8. package/skills/breadcrumbs/SKILL.md +64 -2
  9. package/skills/bundle-analysis/SKILL.md +159 -0
  10. package/skills/cache-guide/SKILL.md +224 -32
  11. package/skills/caching/SKILL.md +279 -17
  12. package/skills/composability/SKILL.md +27 -3
  13. package/skills/css/SKILL.md +76 -0
  14. package/skills/debug-manifest/SKILL.md +4 -2
  15. package/skills/document-cache/SKILL.md +78 -55
  16. package/skills/handler-use/SKILL.md +11 -9
  17. package/skills/hooks/SKILL.md +243 -29
  18. package/skills/host-router/SKILL.md +83 -23
  19. package/skills/i18n/SKILL.md +276 -0
  20. package/skills/intercept/SKILL.md +68 -19
  21. package/skills/layout/SKILL.md +13 -9
  22. package/skills/links/SKILL.md +190 -23
  23. package/skills/loader/SKILL.md +235 -9
  24. package/skills/middleware/SKILL.md +18 -10
  25. package/skills/migrate-nextjs/SKILL.md +43 -19
  26. package/skills/migrate-react-router/SKILL.md +8 -2
  27. package/skills/mime-routes/SKILL.md +28 -1
  28. package/skills/observability/SKILL.md +172 -0
  29. package/skills/parallel/SKILL.md +18 -7
  30. package/skills/prerender/SKILL.md +65 -60
  31. package/skills/rango/SKILL.md +251 -24
  32. package/skills/react-compiler/SKILL.md +168 -0
  33. package/skills/response-routes/SKILL.md +115 -48
  34. package/skills/route/SKILL.md +46 -5
  35. package/skills/router-setup/SKILL.md +30 -8
  36. package/skills/scripts/SKILL.md +179 -0
  37. package/skills/server-actions/SKILL.md +775 -0
  38. package/skills/tailwind/SKILL.md +27 -3
  39. package/skills/testing/SKILL.md +130 -0
  40. package/skills/testing/bindings.md +103 -0
  41. package/skills/testing/cache-prerender.md +127 -0
  42. package/skills/testing/client-components.md +124 -0
  43. package/skills/testing/e2e-parity.md +125 -0
  44. package/skills/testing/flight.md +91 -0
  45. package/skills/testing/handles.md +129 -0
  46. package/skills/testing/loader.md +128 -0
  47. package/skills/testing/middleware.md +99 -0
  48. package/skills/testing/render-handler.md +122 -0
  49. package/skills/testing/response-routes.md +95 -0
  50. package/skills/testing/reverse-and-types.md +84 -0
  51. package/skills/testing/server-actions.md +107 -0
  52. package/skills/testing/server-tree.md +128 -0
  53. package/skills/testing/setup.md +123 -0
  54. package/skills/typesafety/SKILL.md +322 -29
  55. package/skills/use-cache/SKILL.md +57 -14
  56. package/skills/view-transitions/SKILL.md +337 -0
  57. package/src/__augment-tests__/augment.ts +81 -0
  58. package/src/__augment-tests__/augmented.check.ts +116 -0
  59. package/src/__internal.ts +0 -65
  60. package/src/browser/action-coordinator.ts +53 -36
  61. package/src/browser/action-fence.ts +47 -0
  62. package/src/browser/app-shell.ts +39 -0
  63. package/src/browser/connection-warmup.ts +134 -0
  64. package/src/browser/cookie-name.ts +140 -0
  65. package/src/browser/event-controller.ts +192 -150
  66. package/src/browser/history-state.ts +21 -0
  67. package/src/browser/index.ts +3 -3
  68. package/src/browser/invalidate-client-cache.ts +52 -0
  69. package/src/browser/navigation-bridge.ts +94 -25
  70. package/src/browser/navigation-client.ts +121 -84
  71. package/src/browser/navigation-store-handle.ts +38 -0
  72. package/src/browser/navigation-store.ts +115 -67
  73. package/src/browser/navigation-transaction.ts +9 -59
  74. package/src/browser/network-error-handler.ts +34 -7
  75. package/src/browser/partial-update.ts +147 -128
  76. package/src/browser/prefetch/cache.ts +107 -56
  77. package/src/browser/prefetch/fetch.ts +204 -34
  78. package/src/browser/prefetch/queue.ts +6 -3
  79. package/src/browser/rango-state.ts +158 -76
  80. package/src/browser/react/Link.tsx +30 -7
  81. package/src/browser/react/NavigationProvider.tsx +283 -118
  82. package/src/browser/react/ScrollRestoration.tsx +10 -6
  83. package/src/browser/react/deferred-handle-resolution.ts +75 -0
  84. package/src/browser/react/filter-segment-order.ts +66 -7
  85. package/src/browser/react/index.ts +0 -48
  86. package/src/browser/react/location-state-shared.ts +178 -8
  87. package/src/browser/react/location-state.ts +39 -14
  88. package/src/browser/react/use-action.ts +6 -15
  89. package/src/browser/react/use-handle.ts +17 -14
  90. package/src/browser/react/use-href.tsx +8 -1
  91. package/src/browser/react/use-link-status.ts +33 -8
  92. package/src/browser/react/use-navigation.ts +10 -5
  93. package/src/browser/react/use-params.ts +11 -11
  94. package/src/browser/react/use-reverse.ts +106 -0
  95. package/src/browser/react/use-router.ts +25 -3
  96. package/src/browser/react/use-search-params.ts +0 -5
  97. package/src/browser/react/use-segments.ts +11 -21
  98. package/src/browser/response-adapter.ts +99 -8
  99. package/src/browser/rsc-router.tsx +91 -24
  100. package/src/browser/scroll-restoration.ts +30 -17
  101. package/src/browser/segment-structure-assert.ts +2 -2
  102. package/src/browser/server-action-bridge.ts +214 -55
  103. package/src/browser/types.ts +80 -9
  104. package/src/browser/validate-redirect-origin.ts +43 -16
  105. package/src/build/collect-fallback-refs.ts +107 -0
  106. package/src/build/generate-manifest.ts +60 -35
  107. package/src/build/generate-route-types.ts +2 -1
  108. package/src/build/index.ts +8 -2
  109. package/src/build/prefix-tree-utils.ts +123 -0
  110. package/src/build/route-trie.ts +117 -14
  111. package/src/build/route-types/ast-route-extraction.ts +15 -8
  112. package/src/build/route-types/codegen.ts +16 -5
  113. package/src/build/route-types/include-resolution.ts +117 -23
  114. package/src/build/route-types/param-extraction.ts +6 -3
  115. package/src/build/route-types/per-module-writer.ts +22 -6
  116. package/src/build/route-types/router-processing.ts +55 -28
  117. package/src/build/route-types/scan-filter.ts +1 -1
  118. package/src/build/route-types/source-scan.ts +216 -0
  119. package/src/build/runtime-discovery.ts +9 -20
  120. package/src/cache/cache-error.ts +104 -0
  121. package/src/cache/cache-key-utils.ts +29 -13
  122. package/src/cache/cache-policy.ts +108 -34
  123. package/src/cache/cache-runtime.ts +224 -41
  124. package/src/cache/cache-scope.ts +188 -82
  125. package/src/cache/cache-tag.ts +103 -0
  126. package/src/cache/cf/cf-base64.ts +33 -0
  127. package/src/cache/cf/cf-cache-constants.ts +127 -0
  128. package/src/cache/cf/cf-cache-store.ts +1989 -378
  129. package/src/cache/cf/cf-cache-types.ts +349 -0
  130. package/src/cache/cf/cf-kv-utils.ts +46 -0
  131. package/src/cache/cf/cf-tag-marker-memo.ts +105 -0
  132. package/src/cache/cf/index.ts +6 -16
  133. package/src/cache/document-cache.ts +89 -21
  134. package/src/cache/handle-snapshot.ts +70 -0
  135. package/src/cache/index.ts +10 -20
  136. package/src/cache/memory-segment-store.ts +136 -37
  137. package/src/cache/profile-registry.ts +46 -31
  138. package/src/cache/read-through-swr.ts +56 -12
  139. package/src/cache/segment-codec.ts +9 -17
  140. package/src/cache/tag-invalidation.ts +230 -0
  141. package/src/cache/types.ts +37 -100
  142. package/src/client.rsc.tsx +44 -21
  143. package/src/client.tsx +36 -61
  144. package/src/cloudflare/index.ts +11 -0
  145. package/src/cloudflare/tracing.ts +109 -0
  146. package/src/component-utils.ts +19 -0
  147. package/src/components/DefaultDocument.tsx +8 -2
  148. package/src/context-var.ts +18 -6
  149. package/src/decode-loader-results.ts +52 -0
  150. package/src/defer.ts +196 -0
  151. package/src/deps/ssr.ts +0 -1
  152. package/src/encode-kv.ts +49 -0
  153. package/src/errors.ts +30 -4
  154. package/src/escape-script.ts +52 -0
  155. package/src/handle.ts +31 -23
  156. package/src/handles/MetaTags.tsx +62 -19
  157. package/src/handles/Scripts.tsx +183 -0
  158. package/src/handles/breadcrumbs.ts +37 -8
  159. package/src/handles/is-thenable.ts +19 -0
  160. package/src/handles/meta.ts +51 -40
  161. package/src/handles/script.ts +244 -0
  162. package/src/host/cookie-handler.ts +9 -60
  163. package/src/host/errors.ts +0 -24
  164. package/src/host/index.ts +8 -2
  165. package/src/host/pattern-matcher.ts +23 -52
  166. package/src/host/router.ts +107 -99
  167. package/src/host/testing.ts +40 -27
  168. package/src/host/types.ts +37 -4
  169. package/src/host/utils.ts +1 -1
  170. package/src/href-client.ts +137 -22
  171. package/src/index.rsc.ts +96 -12
  172. package/src/index.ts +94 -14
  173. package/src/internal-debug.ts +11 -10
  174. package/src/loader-store.ts +500 -0
  175. package/src/loader.rsc.ts +20 -13
  176. package/src/loader.ts +12 -11
  177. package/src/missing-id-error.ts +68 -0
  178. package/src/outlet-context.ts +1 -1
  179. package/src/outlet-provider.tsx +1 -5
  180. package/src/prerender/param-hash.ts +16 -16
  181. package/src/prerender/store.ts +32 -37
  182. package/src/prerender.ts +61 -6
  183. package/src/redirect-origin.ts +100 -0
  184. package/src/regex-escape.ts +8 -0
  185. package/src/render-error-thrower.tsx +20 -0
  186. package/src/response-utils.ts +34 -0
  187. package/src/reverse.ts +65 -40
  188. package/src/root-error-boundary.tsx +1 -19
  189. package/src/route-content-wrapper.tsx +19 -77
  190. package/src/route-definition/dsl-helpers.ts +304 -309
  191. package/src/route-definition/helper-factories.ts +28 -140
  192. package/src/route-definition/helpers-types.ts +82 -55
  193. package/src/route-definition/index.ts +1 -2
  194. package/src/route-definition/redirect.ts +44 -11
  195. package/src/route-definition/resolve-handler-use.ts +12 -1
  196. package/src/route-definition/use-item-types.ts +29 -0
  197. package/src/route-map-builder.ts +0 -16
  198. package/src/route-types.ts +19 -46
  199. package/src/router/basename.ts +14 -0
  200. package/src/router/content-negotiation.ts +73 -25
  201. package/src/router/error-handling.ts +45 -18
  202. package/src/router/find-match.ts +44 -23
  203. package/src/router/handler-context.ts +27 -43
  204. package/src/router/instrument.ts +350 -0
  205. package/src/router/intercept-resolution.ts +39 -20
  206. package/src/router/lazy-includes.ts +10 -47
  207. package/src/router/loader-resolution.ts +155 -72
  208. package/src/router/logging.ts +0 -6
  209. package/src/router/manifest.ts +18 -29
  210. package/src/router/match-api.ts +9 -24
  211. package/src/router/match-context.ts +0 -22
  212. package/src/router/match-handlers.ts +58 -58
  213. package/src/router/match-middleware/background-revalidation.ts +40 -24
  214. package/src/router/match-middleware/cache-lookup.ts +159 -285
  215. package/src/router/match-middleware/cache-store.ts +64 -52
  216. package/src/router/match-middleware/intercept-resolution.ts +0 -22
  217. package/src/router/match-middleware/segment-resolution.ts +0 -22
  218. package/src/router/match-pipelines.ts +1 -42
  219. package/src/router/match-result.ts +44 -74
  220. package/src/router/metrics.ts +0 -34
  221. package/src/router/middleware-types.ts +7 -134
  222. package/src/router/middleware.ts +247 -166
  223. package/src/router/navigation-snapshot.ts +0 -51
  224. package/src/router/params-util.ts +23 -0
  225. package/src/router/pattern-matching.ts +85 -94
  226. package/src/router/prefetch-cache-ttl.ts +51 -0
  227. package/src/router/prerender-match.ts +104 -65
  228. package/src/router/preview-match.ts +3 -1
  229. package/src/router/request-classification.ts +28 -62
  230. package/src/router/revalidation.ts +123 -73
  231. package/src/router/route-snapshot.ts +0 -1
  232. package/src/router/router-context.ts +3 -28
  233. package/src/router/router-interfaces.ts +83 -35
  234. package/src/router/router-options.ts +136 -5
  235. package/src/router/router-registry.ts +2 -5
  236. package/src/router/segment-resolution/fresh.ts +97 -84
  237. package/src/router/segment-resolution/helpers.ts +86 -6
  238. package/src/router/segment-resolution/loader-cache.ts +76 -39
  239. package/src/router/segment-resolution/revalidation.ts +272 -320
  240. package/src/router/segment-resolution/static-store.ts +19 -5
  241. package/src/router/segment-resolution/streamed-handler-telemetry.ts +52 -0
  242. package/src/router/segment-resolution/view-transition-default.ts +56 -0
  243. package/src/router/segment-resolution.ts +5 -1
  244. package/src/router/segment-wrappers.ts +6 -5
  245. package/src/router/state-cookie-name.ts +33 -0
  246. package/src/router/substitute-pattern-params.ts +56 -0
  247. package/src/router/telemetry-otel.ts +161 -199
  248. package/src/router/telemetry.ts +96 -19
  249. package/src/router/timeout.ts +0 -20
  250. package/src/router/tracing.ts +206 -0
  251. package/src/router/trie-matching.ts +162 -64
  252. package/src/router/types.ts +9 -63
  253. package/src/router/url-params.ts +0 -5
  254. package/src/router.ts +110 -55
  255. package/src/rsc/handler-context.ts +3 -2
  256. package/src/rsc/handler.ts +264 -220
  257. package/src/rsc/helpers.ts +100 -6
  258. package/src/rsc/index.ts +2 -5
  259. package/src/rsc/json-route-result.ts +38 -0
  260. package/src/rsc/loader-fetch.ts +114 -38
  261. package/src/rsc/manifest-init.ts +28 -41
  262. package/src/rsc/origin-guard.ts +39 -25
  263. package/src/rsc/progressive-enhancement.ts +117 -11
  264. package/src/rsc/redirect-guard.ts +99 -0
  265. package/src/rsc/response-cache-serve.ts +238 -0
  266. package/src/rsc/response-error.ts +79 -12
  267. package/src/rsc/response-route-handler.ts +88 -188
  268. package/src/rsc/rsc-rendering.ts +98 -76
  269. package/src/rsc/runtime-warnings.ts +23 -10
  270. package/src/rsc/server-action.ts +281 -117
  271. package/src/rsc/ssr-setup.ts +16 -0
  272. package/src/rsc/transition-gate.ts +89 -0
  273. package/src/rsc/types.ts +23 -5
  274. package/src/runtime-env.ts +18 -0
  275. package/src/search-params.ts +35 -30
  276. package/src/segment-loader-promise.ts +31 -4
  277. package/src/segment-system.tsx +254 -143
  278. package/src/serialize.ts +243 -0
  279. package/src/server/context.ts +163 -51
  280. package/src/server/cookie-parse.ts +32 -0
  281. package/src/server/cookie-store.ts +80 -5
  282. package/src/server/handle-store.ts +21 -38
  283. package/src/server/loader-registry.ts +33 -42
  284. package/src/server/request-context.ts +287 -178
  285. package/src/ssr/index.tsx +21 -16
  286. package/src/static-handler.ts +10 -13
  287. package/src/testing/cache-status.ts +162 -0
  288. package/src/testing/collect-handle.ts +40 -0
  289. package/src/testing/dispatch.ts +701 -0
  290. package/src/testing/dom.entry.ts +22 -0
  291. package/src/testing/e2e/fixture.ts +188 -0
  292. package/src/testing/e2e/index.ts +128 -0
  293. package/src/testing/e2e/matchers.ts +35 -0
  294. package/src/testing/e2e/page-helpers.ts +272 -0
  295. package/src/testing/e2e/parity.ts +387 -0
  296. package/src/testing/e2e/server.ts +195 -0
  297. package/src/testing/flight-matchers.ts +97 -0
  298. package/src/testing/flight-normalize.ts +11 -0
  299. package/src/testing/flight-runtime.d.ts +57 -0
  300. package/src/testing/flight-tree.ts +682 -0
  301. package/src/testing/flight.entry.ts +52 -0
  302. package/src/testing/flight.ts +257 -0
  303. package/src/testing/generated-routes.ts +183 -0
  304. package/src/testing/index.ts +105 -0
  305. package/src/testing/internal/context.ts +371 -0
  306. package/src/testing/internal/flight-client-globals.ts +30 -0
  307. package/src/testing/internal/seed-vars.ts +54 -0
  308. package/src/testing/render-handler.ts +357 -0
  309. package/src/testing/render-route.tsx +581 -0
  310. package/src/testing/run-loader.ts +385 -0
  311. package/src/testing/run-middleware.ts +205 -0
  312. package/src/testing/run-transition-when.ts +164 -0
  313. package/src/testing/vitest-stubs/cloudflare-email.ts +9 -0
  314. package/src/testing/vitest-stubs/cloudflare-workers.ts +21 -0
  315. package/src/testing/vitest-stubs/plugin-rsc.ts +16 -0
  316. package/src/testing/vitest-stubs/version.ts +5 -0
  317. package/src/testing/vitest.ts +305 -0
  318. package/src/theme/ThemeProvider.tsx +20 -58
  319. package/src/theme/ThemeScript.tsx +7 -9
  320. package/src/theme/constants.ts +52 -13
  321. package/src/theme/index.ts +0 -7
  322. package/src/theme/theme-context.ts +1 -5
  323. package/src/theme/theme-script.ts +22 -21
  324. package/src/theme/use-theme.ts +0 -3
  325. package/src/types/boundaries.ts +0 -35
  326. package/src/types/cache-types.ts +13 -4
  327. package/src/types/error-types.ts +30 -90
  328. package/src/types/global-namespace.ts +54 -41
  329. package/src/types/handler-context.ts +110 -62
  330. package/src/types/index.ts +3 -10
  331. package/src/types/loader-types.ts +11 -9
  332. package/src/types/request-scope.ts +112 -0
  333. package/src/types/route-config.ts +6 -50
  334. package/src/types/route-entry.ts +0 -6
  335. package/src/types/segments.ts +135 -14
  336. package/src/urls/include-helper.ts +9 -56
  337. package/src/urls/index.ts +1 -11
  338. package/src/urls/path-helper-types.ts +29 -12
  339. package/src/urls/path-helper.ts +17 -106
  340. package/src/urls/pattern-types.ts +36 -19
  341. package/src/urls/response-types.ts +22 -29
  342. package/src/urls/type-extraction.ts +58 -139
  343. package/src/urls/urls-function.ts +1 -19
  344. package/src/use-loader.tsx +292 -107
  345. package/src/vite/debug.ts +185 -0
  346. package/src/vite/discovery/bundle-postprocess.ts +8 -7
  347. package/src/vite/discovery/discover-routers.ts +126 -85
  348. package/src/vite/discovery/discovery-errors.ts +194 -0
  349. package/src/vite/discovery/gate-state.ts +171 -0
  350. package/src/vite/discovery/prerender-collection.ts +96 -68
  351. package/src/vite/discovery/route-types-writer.ts +40 -84
  352. package/src/vite/discovery/self-gen-tracking.ts +27 -1
  353. package/src/vite/discovery/state.ts +44 -0
  354. package/src/vite/discovery/virtual-module-codegen.ts +14 -34
  355. package/src/vite/index.ts +2 -0
  356. package/src/vite/inject-client-debug.ts +36 -0
  357. package/src/vite/plugin-types.ts +126 -8
  358. package/src/vite/plugins/cjs-to-esm.ts +16 -19
  359. package/src/vite/plugins/client-ref-dedup.ts +16 -11
  360. package/src/vite/plugins/client-ref-hashing.ts +28 -15
  361. package/src/vite/plugins/cloudflare-protocol-stub.ts +1 -21
  362. package/src/vite/plugins/expose-action-id.ts +48 -95
  363. package/src/vite/plugins/expose-id-utils.ts +88 -55
  364. package/src/vite/plugins/expose-ids/export-analysis.ts +101 -34
  365. package/src/vite/plugins/expose-ids/handler-transform.ts +11 -90
  366. package/src/vite/plugins/expose-ids/loader-transform.ts +14 -24
  367. package/src/vite/plugins/expose-ids/router-transform.ts +118 -29
  368. package/src/vite/plugins/expose-internal-ids.ts +505 -486
  369. package/src/vite/plugins/performance-tracks.ts +26 -25
  370. package/src/vite/plugins/refresh-cmd.ts +1 -1
  371. package/src/vite/plugins/use-cache-transform.ts +73 -83
  372. package/src/vite/plugins/version-injector.ts +40 -29
  373. package/src/vite/plugins/version-plugin.ts +37 -40
  374. package/src/vite/plugins/virtual-entries.ts +39 -25
  375. package/src/vite/rango.ts +109 -118
  376. package/src/vite/router-discovery.ts +718 -119
  377. package/src/vite/utils/ast-handler-extract.ts +26 -35
  378. package/src/vite/utils/banner.ts +1 -1
  379. package/src/vite/utils/bundle-analysis.ts +10 -15
  380. package/src/vite/utils/client-chunks.ts +184 -0
  381. package/src/vite/utils/directive-prologue.ts +40 -0
  382. package/src/vite/utils/forward-user-plugins.ts +171 -0
  383. package/src/vite/utils/manifest-utils.ts +4 -59
  384. package/src/vite/utils/package-resolution.ts +20 -52
  385. package/src/vite/utils/prerender-utils.ts +54 -39
  386. package/src/vite/utils/shared-utils.ts +90 -41
  387. package/src/browser/action-response-classifier.ts +0 -99
  388. package/src/browser/react/use-client-cache.ts +0 -58
  389. package/src/browser/shallow.ts +0 -40
  390. package/src/handles/index.ts +0 -7
  391. package/src/network-error-thrower.tsx +0 -23
  392. package/src/router/middleware-cookies.ts +0 -55
@@ -18,7 +18,13 @@ import { isInsideCacheScope } from "../server/context.js";
18
18
  import { NOCACHE_SYMBOL, assertNotInsideCacheExec } from "../cache/taint.js";
19
19
  import { isAutoGeneratedRouteName } from "../route-name.js";
20
20
  import { PRERENDER_PASSTHROUGH } from "../prerender.js";
21
- import { encodePathSegment } from "./url-params.js";
21
+ import { substitutePatternParams } from "./substitute-pattern-params.js";
22
+ import { fireAndForgetWaitUntil } from "../types/request-scope.js";
23
+
24
+ // Mutating Headers methods guarded so they throw inside "use cache" / cache()
25
+ // scope. Module-level constant (read-only, .has() lookups) so it is allocated
26
+ // once at module load instead of per createHandlerContext (per-request) call.
27
+ const MUTATING_HEADERS_METHODS = new Set(["set", "append", "delete"]);
22
28
 
23
29
  /**
24
30
  * Strip internal _rsc* query params from a URL.
@@ -159,51 +165,14 @@ export function createReverseFunction(
159
165
  );
160
166
  }
161
167
 
162
- let result = pattern;
163
-
164
168
  // Merge current request params as defaults, explicit params override
165
169
  const effectiveParams = currentParams
166
170
  ? { ...currentParams, ...hrefParams }
167
171
  : hrefParams;
168
172
 
169
- // Substitute params (strip constraint and optional syntax: :param(a|b)? -> value)
170
- // Optional params (:param?) are omitted when not provided
171
- if (effectiveParams) {
172
- let hadOmittedOptional = false;
173
- // First pass: optional params (trailing ?)
174
- result = result.replace(
175
- /:([a-zA-Z_][a-zA-Z0-9_]*)(\([^)]*\))?(\?)/g,
176
- (_, key) => {
177
- const value = effectiveParams[key];
178
- // Empty string is treated as omitted — the trie matcher fills
179
- // unmatched optional params with "" (not undefined), so reverse
180
- // must collapse those segments instead of leaving empty slots.
181
- if (value === undefined || value === "") {
182
- hadOmittedOptional = true;
183
- return "";
184
- }
185
- return encodePathSegment(value);
186
- },
187
- );
188
- // Second pass: required params (no trailing ?)
189
- result = result.replace(
190
- /:([a-zA-Z_][a-zA-Z0-9_]*)(\([^)]*\))?(?!\?)/g,
191
- (_, key) => {
192
- const value = effectiveParams[key];
193
- if (value === undefined) {
194
- throw new Error(`Missing param "${key}" for route "${name}"`);
195
- }
196
- return encodePathSegment(value);
197
- },
198
- );
199
- // Clean up slashes only when an optional param was actually omitted,
200
- // so intentional trailing-slash patterns like "/blog/" are preserved.
201
- if (hadOmittedOptional) {
202
- const hadTrailingSlash = pattern.length > 1 && pattern.endsWith("/");
203
- result = result.replace(/\/\/+/g, "/").replace(/\/+$/, "") || "/";
204
- if (hadTrailingSlash && !result.endsWith("/")) result += "/";
205
- }
206
- }
173
+ let result = effectiveParams
174
+ ? substitutePatternParams(pattern, effectiveParams, name)
175
+ : pattern;
207
176
 
208
177
  // Append search params as query string
209
178
  if (search) {
@@ -248,7 +217,7 @@ export function createHandlerContext<TEnv>(
248
217
  // Guard mutating Headers methods so they throw inside "use cache" or cache() scope.
249
218
  // Uses lazy `ctx` reference (assigned below) — only the specific handler ctx
250
219
  // is stamped by cache-runtime, not the shared request context.
251
- const MUTATING_HEADERS_METHODS = new Set(["set", "append", "delete"]);
220
+ // MUTATING_HEADERS_METHODS is hoisted to module scope (constant, read-only).
252
221
  let ctx: InternalHandlerContext<any, TEnv>;
253
222
  const guardedHeaders = new Proxy(stubResponse.headers, {
254
223
  get(target, prop, receiver) {
@@ -282,8 +251,12 @@ export function createHandlerContext<TEnv>(
282
251
  search: searchSchema ? resolvedSearchParams : {},
283
252
  pathname,
284
253
  url,
285
- originalUrl: new URL(request.url),
254
+ originalUrl: requestContext?.originalUrl ?? new URL(request.url),
286
255
  env: bindings,
256
+ waitUntil: requestContext
257
+ ? requestContext.waitUntil.bind(requestContext)
258
+ : fireAndForgetWaitUntil,
259
+ executionContext: requestContext?.executionContext,
287
260
  _variables: variables,
288
261
  get: ((keyOrVar: any) => {
289
262
  // Read-time guard: non-cacheable var inside cache() → throw.
@@ -388,6 +361,12 @@ export function createPrerenderContext<TEnv>(
388
361
  "Configure buildEnv in your rango() plugin options to enable build-time env access.",
389
362
  );
390
363
  },
364
+ // Build-time prerender has no live request. waitUntil is a true no-op
365
+ // (running fn() here would fire side effects during build, which is
366
+ // incorrect — these are meant to outlive the live response).
367
+ // executionContext is absent for the same reason.
368
+ waitUntil: () => {},
369
+ executionContext: undefined,
391
370
  _variables: variables,
392
371
  get: ((keyOrVar: any) => contextGet(variables, keyOrVar)) as any,
393
372
  set: ((keyOrVar: any, value: any) => {
@@ -477,6 +456,11 @@ export function createStaticContext<TEnv>(
477
456
  "Configure buildEnv in your rango() plugin options to enable build-time env access.",
478
457
  );
479
458
  },
459
+ // Static() handlers have no live request. waitUntil is a true no-op
460
+ // (running fn() here would fire side effects during build, which is
461
+ // incorrect). executionContext is absent for the same reason.
462
+ waitUntil: () => {},
463
+ executionContext: undefined,
480
464
  _variables: variables,
481
465
  get: ((keyOrVar: any) => contextGet(variables, keyOrVar)) as any,
482
466
  set: ((keyOrVar: any, value: any) => {
@@ -0,0 +1,350 @@
1
+ /**
2
+ * Phase + event instrumentation — the single internal API for observing router
3
+ * work.
4
+ *
5
+ * The router exposes the same work on three surfaces, and the rule is: each
6
+ * surface has exactly one owner here, so they cannot drift.
7
+ *
8
+ * - observePhase(): a span of work. Co-emits the `debugPerformance` perf
9
+ * metric (metrics store -> [RSC Perf] timeline + Server-Timing) AND the
10
+ * platform span (tracing runner -> Cloudflare custom spans / OTel). From one
11
+ * wrap site, so the span set is always a subset of the perf phases and the
12
+ * two can't disagree. Phases that meter their own perf metric with a finer
13
+ * decomposition (request, middleware) pass `metric: false` and get the span
14
+ * only — still co-located, still one owner per surface.
15
+ * - observeEvent(): a discrete fact (TelemetrySink): cache decisions,
16
+ * revalidation decisions, handler errors, timeouts, origin rejections.
17
+ * Event-shaped, not phase-shaped — derived from the same call sites but a
18
+ * separate surface from spans.
19
+ *
20
+ * Why phases, not events, are the parent abstraction: Cloudflare's span API is
21
+ * callback-bound (enterSpan wraps the actual work), so the callback boundary is
22
+ * the source of truth — async-context nesting (a loader's KV/D1/fetch spans
23
+ * landing under rango.loader) cannot be faithfully reconstructed from
24
+ * after-the-fact start/end events. Spans drive; events are emitted alongside.
25
+ *
26
+ * Phase identity lives in the PHASES registry below, so the raw `rango.*` span
27
+ * names, perf-metric labels, and span attributes have a single definition each.
28
+ *
29
+ * When neither perf surface nor tracing is active on the request, observePhase
30
+ * is a direct call — no wrapper, no timestamp, no allocation.
31
+ */
32
+
33
+ import { _getRequestContext } from "../server/request-context.js";
34
+ import { isAutoGeneratedRouteName } from "../route-name.js";
35
+ import { getRouterContext } from "./router-context.js";
36
+ import { resolveSink, safeEmit, type TelemetryEvent } from "./telemetry.js";
37
+ import { appendMetric } from "./metrics.js";
38
+ import { type MetricsStore } from "../server/context.js";
39
+ import {
40
+ NOOP_TRACE_SPAN,
41
+ traceSpan,
42
+ runThenSettle,
43
+ type TracePhase,
44
+ type TraceSpan,
45
+ } from "./tracing.js";
46
+
47
+ /**
48
+ * Perf-metric boundary for a phase, or `false` for span-only. `false` means the
49
+ * caller records its own perf metric with a finer decomposition than a single
50
+ * wrap (request: a grand total incl. pre-context bootstrap; middleware: pre/post
51
+ * own-time), so observePhase opens the span but records no metric of its own.
52
+ */
53
+ export type PhaseMetric =
54
+ | { label: string | (() => string); depth?: number }
55
+ | false;
56
+
57
+ /** Describes one observable phase across the perf and span surfaces. */
58
+ export interface PhaseSpec {
59
+ /** Perf timeline label + Server-Timing name, or false for span-only. */
60
+ metric: PhaseMetric;
61
+ /** Span phase gate (per-phase toggle in the tracing config). */
62
+ tracePhase: TracePhase;
63
+ /** Span name (rango.*). */
64
+ spanName: string;
65
+ /** Span attributes set automatically when the span opens. */
66
+ attributes?: Record<string, string | number | boolean>;
67
+ /**
68
+ * Span attributes resolved AFTER the wrapped work runs (so they can read state
69
+ * that only exists once the work is underway, e.g. the matched route name).
70
+ * Applied for streaming phases once fn has constructed its value. Return
71
+ * undefined to add nothing.
72
+ */
73
+ lazyAttributes?: () => Record<string, string | number | boolean> | undefined;
74
+ }
75
+
76
+ /**
77
+ * The matched route name for the current request, or undefined when there is no
78
+ * named route (unmatched / auto-generated). Shared by the render phase's metric
79
+ * label and its rango.route span attribute so the two can't disagree.
80
+ */
81
+ function currentRouteName(): string | undefined {
82
+ const routeName = _getRequestContext()?._routeName;
83
+ return routeName && !isAutoGeneratedRouteName(routeName)
84
+ ? routeName
85
+ : undefined;
86
+ }
87
+
88
+ /**
89
+ * The router's observable phases. One definition per phase keeps the `rango.*`
90
+ * span names, perf-metric labels, and identifying attributes from spreading
91
+ * across call sites.
92
+ */
93
+ export const PHASES = {
94
+ /** Whole request pipeline. Span only — handler:total is metered directly. */
95
+ request: {
96
+ metric: false,
97
+ tracePhase: "request",
98
+ spanName: "rango.request",
99
+ } as PhaseSpec,
100
+
101
+ /** One middleware (incl. its downstream onion). Span only — the perf metric
102
+ * is the middleware's exclusive pre/post own-time, recorded directly.
103
+ * `metricLabel` is that metric's label (e.g. "middleware:auth@*"); it doubles
104
+ * as the rango.middleware_name span attribute. */
105
+ middleware: (metricLabel: string): PhaseSpec => ({
106
+ metric: false,
107
+ tracePhase: "middleware",
108
+ spanName: "rango.middleware",
109
+ attributes: { "rango.middleware_name": metricLabel },
110
+ }),
111
+
112
+ /** The server-action execution (decode args + run the action body), before
113
+ * the revalidation render. The metric label carries the action id (the
114
+ * _rsc_action / action $$id) so the perf timeline shows WHICH action ran, not
115
+ * just "an action"; the span also gets it as rango.action_id. */
116
+ action: (id: string): PhaseSpec => ({
117
+ metric: { label: `action:${id}` },
118
+ tracePhase: "action",
119
+ spanName: "rango.action",
120
+ attributes: { "rango.action_id": id },
121
+ }),
122
+
123
+ /**
124
+ * One loader execution. `depth` is the perf-timeline indentation: 2 (default)
125
+ * for render-time loaders that nest under the render phase; 1 for a standalone
126
+ * fetchable `_rsc_loader` request, which has no render parent.
127
+ */
128
+ loader: (id: string, depth: number = 2): PhaseSpec => ({
129
+ metric: { label: `loader:${id}`, depth },
130
+ tracePhase: "loader",
131
+ spanName: "rango.loader",
132
+ attributes: { "rango.loader_id": id },
133
+ }),
134
+
135
+ /** One segment route/layout handler execution (the component/handler that
136
+ * produces a segment). Span only — the perf metric (handler:<id>) is owned by
137
+ * the legacy track() at the same call site, so observePhase here adds the
138
+ * rango.handler span without double-recording. `id` is the HANDLER id (the
139
+ * entry.id used in the handler:<id> perf row), carried as rango.handler_id —
140
+ * NOT the emitted segment's id (shortCode), which differs; the *_id naming
141
+ * mirrors rango.loader_id / rango.action_id. */
142
+ handler: (id: string): PhaseSpec => ({
143
+ metric: false,
144
+ tracePhase: "handler",
145
+ spanName: "rango.handler",
146
+ attributes: { "rango.handler_id": id },
147
+ }),
148
+
149
+ /** Whole render phase: match + serialize + SSR. The metric label is resolved
150
+ * lazily at record time (after match has set the route name) so the perf
151
+ * timeline shows WHICH route rendered: `render:total:<routeName>`, falling back
152
+ * to `render:total` when there is no named route (unmatched / auto-generated). */
153
+ render: {
154
+ metric: {
155
+ label: () => {
156
+ const routeName = currentRouteName();
157
+ return routeName ? `render:total:${routeName}` : "render:total";
158
+ },
159
+ },
160
+ tracePhase: "render",
161
+ spanName: "rango.render",
162
+ // Tag the render span with the matched route so the Cloudflare/OTel waterfall
163
+ // shows WHICH route rendered (rango.render + rango.route=index), resolved
164
+ // after match has run. Kept an attribute (not baked into the span name) so the
165
+ // span name stays low-cardinality and aggregatable across routes.
166
+ lazyAttributes: () => {
167
+ const routeName = currentRouteName();
168
+ return routeName ? { "rango.route": routeName } : undefined;
169
+ },
170
+ } as PhaseSpec,
171
+
172
+ /** SSR HTML render from the RSC stream. Colon-delimited like the other ssr:*
173
+ * setup metrics (ssr:module-load / ssr:stream-mode). */
174
+ ssr: {
175
+ metric: { label: "ssr:render-html" },
176
+ tracePhase: "ssr",
177
+ spanName: "rango.ssr",
178
+ } as PhaseSpec,
179
+ } as const;
180
+
181
+ /** Apply a phase spec's static attributes to a span (the no-op span ignores them). */
182
+ function applyAttributes(
183
+ span: TraceSpan,
184
+ attributes: Record<string, string | number | boolean>,
185
+ ): void {
186
+ for (const key in attributes) span.setAttribute(key, attributes[key]);
187
+ }
188
+
189
+ /**
190
+ * Record a phase's perf metric for the interval [start, now]. The label may be
191
+ * lazy (resolved here, e.g. render:total needs the route name that match sets
192
+ * partway through the wrapped work).
193
+ */
194
+ function recordPhaseMetric(
195
+ store: MetricsStore,
196
+ metric: Exclude<PhaseMetric, false>,
197
+ start: number,
198
+ ): void {
199
+ const label =
200
+ typeof metric.label === "function" ? metric.label() : metric.label;
201
+ appendMetric(store, label, start, performance.now() - start, metric.depth);
202
+ }
203
+
204
+ /**
205
+ * Instrument one unit of work: open its span AND (unless `metric: false`) record
206
+ * its perf metric, from a single wrap site. fn is invoked exactly once with the
207
+ * span (a no-op span when tracing is off); its return value is returned
208
+ * unchanged and thrown errors / rejected promises propagate unchanged. When fn
209
+ * returns a promise both the metric duration and the span end when it settles.
210
+ *
211
+ * This is the ONLY phase primitive: every phase (request/middleware/action/
212
+ * loader/handler/render/ssr) is construction-bound — the span and metric settle
213
+ * when fn's own work completes (for the streaming phases, when the RSC/HTML
214
+ * stream is constructed, NOT when the body drains). Instrumentation is strictly
215
+ * best-effort: it never wraps or buffers the response and adds no work on the
216
+ * streaming path, so it cannot regress response latency or streaming. A loader
217
+ * that resolves while the body streams therefore keeps a rango.loader span that
218
+ * may extend past its render parent — overlapping spans are valid; the loader
219
+ * really did take that long.
220
+ *
221
+ * Reads the metrics store + tracing off the RequestContext ALS, which is active
222
+ * for the WHOLE request — contrast observeEvent, which reads the RouterContext
223
+ * ALS (entered later, during match).
224
+ */
225
+ export function observePhase<T>(
226
+ spec: PhaseSpec,
227
+ fn: (span: TraceSpan) => T,
228
+ ): T {
229
+ const reqCtx = _getRequestContext();
230
+ const store = reqCtx?._metricsStore;
231
+ const tracing = reqCtx?._tracing;
232
+
233
+ // Neither surface active: direct call, zero overhead.
234
+ if (!store && !tracing) return fn(NOOP_TRACE_SPAN);
235
+
236
+ // Attributes only land on a real span. Build the attribute/lazy wrapper only
237
+ // when this phase's span is actually enabled (not toggled off via `spans`), and
238
+ // short-circuit inside when the runner hands back the no-op span (tracing
239
+ // configured but off at runtime — e.g. no executionContext.tracing). That keeps
240
+ // the "configured but effectively off" path free of per-call attribute loops
241
+ // and lazy `.then()` allocations. `lazyAttributes` resolve AFTER fn runs (e.g.
242
+ // rango.route, known post-match) and apply on BOTH success and failure so an
243
+ // errored phase span is still tagged.
244
+ const attributes = spec.attributes;
245
+ const lazy = spec.lazyAttributes;
246
+ const spanEnabled =
247
+ tracing !== undefined && tracing.phases[spec.tracePhase] !== false;
248
+ const wrapped: (span: TraceSpan) => T =
249
+ (attributes || lazy) && spanEnabled
250
+ ? (span) => {
251
+ if (span === NOOP_TRACE_SPAN) return fn(span);
252
+ if (attributes) applyAttributes(span, attributes);
253
+ // A SYNCHRONOUS throw from fn skips applyLate — fine by design: the only
254
+ // lazyAttributes phase (render) is always async, so any internal throw
255
+ // surfaces as a rejection that the onReject branch below DOES tag. If a
256
+ // sync lazyAttributes phase is ever added, wrap this in try/catch.
257
+ const out = fn(span);
258
+ if (!lazy) return out;
259
+ const applyLate = () => {
260
+ const late = lazy();
261
+ if (late) applyAttributes(span, late);
262
+ };
263
+ if (out instanceof Promise) {
264
+ return out.then(
265
+ (value) => {
266
+ applyLate();
267
+ return value;
268
+ },
269
+ (error) => {
270
+ applyLate();
271
+ throw error;
272
+ },
273
+ ) as T;
274
+ }
275
+ applyLate();
276
+ return out;
277
+ }
278
+ : fn;
279
+
280
+ const runSpan = (): T =>
281
+ traceSpan(tracing, spec.tracePhase, spec.spanName, wrapped);
282
+
283
+ // Span-only — no perf metric to record (metric:false, or perf surface off).
284
+ const metric = spec.metric;
285
+ if (!store || metric === false) return runSpan();
286
+
287
+ // Record the phase duration on EVERY termination — success or failure — so a
288
+ // failed loader/render still shows its timing in the perf report (parity with
289
+ // the old track().finally() path it replaced).
290
+ const start = performance.now();
291
+ return runThenSettle(runSpan, () => recordPhaseMetric(store, metric, start));
292
+ }
293
+
294
+ /**
295
+ * Open a rango.handler span around one segment route/layout handler call. The
296
+ * segment-resolution hot path runs this PER SEGMENT, so it gates on the SPAN
297
+ * surface alone and calls the handler directly otherwise — building neither the
298
+ * PhaseSpec (PHASES.handler allocates) nor the wrapper closure on the off path.
299
+ * The handler:<id> perf metric is owned by the track() at the call site, so the
300
+ * span is the only surface this adds (metric:false); a debugPerformance-only
301
+ * request (no tracing) or a disabled handler phase (spans:{handler:false}) has
302
+ * nothing to record here and short-circuits.
303
+ */
304
+ export function observeHandler<C, R>(
305
+ id: string,
306
+ handler: (ctx: C) => R,
307
+ ctx: C,
308
+ ): R {
309
+ const tracing = _getRequestContext()?._tracing;
310
+ if (!tracing || tracing.phases.handler === false) return handler(ctx);
311
+ return observePhase(PHASES.handler(id), () => handler(ctx));
312
+ }
313
+
314
+ /**
315
+ * Emit one discrete telemetry event (the event-shaped counterpart to
316
+ * observePhase). Resolves the sink from the active router context and stamps the
317
+ * request id when the event omits it. No-op (and total — never throws) when no
318
+ * sink is configured.
319
+ *
320
+ * This is the canonical emitter for SYNCHRONOUS facts that fire inside the
321
+ * request's ALS scope (handler errors, timeouts, origin rejections, revalidation
322
+ * decisions). A few emitters deliberately stay on the lower-level
323
+ * resolveSink + safeEmit because observeEvent's lazy, per-call
324
+ * getRouterContext() read does not fit them — keep this the complete list:
325
+ * - router.ts wrapLoaderPromise (loader.start/end/error) and
326
+ * segment-resolution/streamed-handler-telemetry.ts (streamed handler.error)
327
+ * capture the sink + request id EAGERLY and emit from a fire-and-forget
328
+ * continuation that runs after the ALS scope may have unwound.
329
+ * - router/match-handlers.ts resolves the sink ONCE for the hot match-pipeline
330
+ * loop (request.start/end/error, cache.decision, ...).
331
+ * - segment-resolution/helpers.ts emits via a caller-provided report.telemetry
332
+ * sink rather than the ALS router context.
333
+ */
334
+ export function observeEvent(event: TelemetryEvent): void {
335
+ // getRouterContext() either throws (real impl, outside a router context — e.g.
336
+ // the build-time prerender path) or returns null/undefined (e.g. mocked).
337
+ // Either way there is no sink to emit to, so swallow and return.
338
+ let routerCtx: ReturnType<typeof getRouterContext> | null | undefined;
339
+ try {
340
+ routerCtx = getRouterContext();
341
+ } catch {
342
+ return;
343
+ }
344
+ if (!routerCtx?.telemetry) return;
345
+ const stamped =
346
+ event.requestId === undefined && routerCtx.requestId !== undefined
347
+ ? ({ ...event, requestId: routerCtx.requestId } as TelemetryEvent)
348
+ : event;
349
+ safeEmit(resolveSink(routerCtx.telemetry), stamped);
350
+ }
@@ -21,7 +21,11 @@ import { getRequestContext } from "../server/request-context.js";
21
21
  import { executeInterceptMiddleware } from "./middleware.js";
22
22
  import { createReverseFunction } from "./handler-context.js";
23
23
  import { getGlobalRouteMap } from "../route-map-builder.js";
24
- import { handleHandlerResult } from "./segment-resolution.js";
24
+ import {
25
+ handleHandlerResult,
26
+ warnOnStreamedResponse,
27
+ buildLoaderErrorContext,
28
+ } from "./segment-resolution.js";
25
29
  import type { SegmentResolutionDeps } from "./types.js";
26
30
  import { debugLog } from "./logging.js";
27
31
  import { runInsideLoaderScope } from "../server/context.js";
@@ -66,28 +70,14 @@ export function findInterceptForRoute(
66
70
  let current: EntryData | null = fromEntry;
67
71
 
68
72
  while (current) {
69
- if (current.intercept && current.intercept.length > 0) {
70
- for (const intercept of current.intercept) {
73
+ // current first, then its sibling layouts — same order as before.
74
+ for (const source of [current, ...current.layout]) {
75
+ for (const intercept of source.intercept) {
71
76
  if (
72
77
  intercept.routeName === targetRouteKey &&
73
78
  evaluateInterceptWhen(intercept, selectorContext, isAction)
74
79
  ) {
75
- return { intercept, entry: current };
76
- }
77
- }
78
- }
79
-
80
- if (current.layout && current.layout.length > 0) {
81
- for (const siblingLayout of current.layout) {
82
- if (siblingLayout.intercept && siblingLayout.intercept.length > 0) {
83
- for (const intercept of siblingLayout.intercept) {
84
- if (
85
- intercept.routeName === targetRouteKey &&
86
- evaluateInterceptWhen(intercept, selectorContext, isAction)
87
- ) {
88
- return { intercept, entry: siblingLayout };
89
- }
90
- }
80
+ return { intercept, entry: source };
91
81
  }
92
82
  }
93
83
  }
@@ -123,10 +113,25 @@ export async function resolveInterceptEntry<TEnv>(
123
113
  };
124
114
  stale?: boolean;
125
115
  },
116
+ options?: {
117
+ /**
118
+ * Skip the intercept's middleware execution. Set ONLY by the post-response
119
+ * background re-render paths (proactive caching, stale background
120
+ * revalidation), whose sole purpose is to re-render the segment tree to
121
+ * populate the cache. The foreground request already ran the intercept
122
+ * middleware before the response was sent — it validated auth, set cookies,
123
+ * and wrote context vars into the request context's shared `_variables`,
124
+ * which the background render reuses. Re-running middleware here would fire
125
+ * its side effects a SECOND time, and a middleware that short-circuits with
126
+ * a Response would `throw` and silently abort the cache write. Never set on
127
+ * the foreground path.
128
+ */
129
+ skipMiddleware?: boolean;
130
+ },
126
131
  ): Promise<ResolvedSegment[]> {
127
132
  const segments: ResolvedSegment[] = [];
128
133
 
129
- if (interceptEntry.middleware.length > 0) {
134
+ if (!options?.skipMiddleware && interceptEntry.middleware.length > 0) {
130
135
  const requestCtx = getRequestContext();
131
136
  if (!requestCtx?.res) {
132
137
  throw new Error(
@@ -216,6 +221,9 @@ export async function resolveInterceptEntry<TEnv>(
216
221
  parentEntry,
217
222
  segmentId,
218
223
  context.pathname,
224
+ // Report a throwing intercept loader to onError + loader.error telemetry,
225
+ // matching the fresh/revalidation paths.
226
+ buildLoaderErrorContext(context),
219
227
  ),
220
228
  );
221
229
  }
@@ -242,6 +250,12 @@ export async function resolveInterceptEntry<TEnv>(
242
250
  let loaderDataPromise: Promise<any[]> | any[] | undefined;
243
251
 
244
252
  if (interceptEntry.loading && loaderPromises.length > 0) {
253
+ if (handlerResult instanceof Promise) {
254
+ warnOnStreamedResponse(
255
+ handlerResult,
256
+ `intercept ${interceptEntry.slotName}`,
257
+ );
258
+ }
245
259
  component =
246
260
  handlerResult instanceof Promise
247
261
  ? handlerResult
@@ -383,6 +397,11 @@ export async function resolveInterceptLoadersOnly<TEnv>(
383
397
  parentEntry,
384
398
  segmentId,
385
399
  context.pathname,
400
+ // Report a throwing intercept loader to onError + loader.error telemetry,
401
+ // matching the fresh/revalidation paths. resolveInterceptLoadersOnly is
402
+ // only called on the cache-hit partial-update path (handleCacheHitIntercept),
403
+ // so flag isPartial:true exactly like revalidation.ts's partial path.
404
+ { ...buildLoaderErrorContext(context), isPartial: true },
386
405
  ),
387
406
  );
388
407
  }