@rangojs/router 0.0.0-experimental.1b930379 → 0.0.0-experimental.1c0bdfad
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/AGENTS.md +12 -0
- package/README.md +245 -49
- package/dist/bin/rango.js +441 -134
- package/dist/testing/vitest.js +82 -0
- package/dist/vite/index.js +3453 -1240
- package/dist/vite/plugins/cloudflare-protocol-loader-hook.mjs +76 -0
- package/package.json +76 -21
- package/skills/api-client/SKILL.md +211 -0
- package/skills/breadcrumbs/SKILL.md +64 -2
- package/skills/bundle-analysis/SKILL.md +159 -0
- package/skills/cache-guide/SKILL.md +247 -23
- package/skills/caching/SKILL.md +318 -15
- package/skills/composability/SKILL.md +27 -2
- package/skills/css/SKILL.md +76 -0
- package/skills/debug-manifest/SKILL.md +4 -2
- package/skills/document-cache/SKILL.md +78 -55
- package/skills/handler-use/SKILL.md +364 -0
- package/skills/hooks/SKILL.md +250 -30
- package/skills/host-router/SKILL.md +83 -23
- package/skills/i18n/SKILL.md +276 -0
- package/skills/intercept/SKILL.md +50 -6
- package/skills/layout/SKILL.md +35 -9
- package/skills/links/SKILL.md +249 -17
- package/skills/loader/SKILL.md +279 -53
- package/skills/middleware/SKILL.md +52 -13
- package/skills/migrate-nextjs/SKILL.md +584 -0
- package/skills/migrate-react-router/SKILL.md +771 -0
- package/skills/mime-routes/SKILL.md +28 -1
- package/skills/observability/SKILL.md +172 -0
- package/skills/parallel/SKILL.md +203 -7
- package/skills/prerender/SKILL.md +153 -109
- package/skills/rango/SKILL.md +251 -22
- package/skills/react-compiler/SKILL.md +168 -0
- package/skills/response-routes/SKILL.md +123 -48
- package/skills/route/SKILL.md +101 -5
- package/skills/router-setup/SKILL.md +116 -8
- package/skills/scripts/SKILL.md +179 -0
- package/skills/server-actions/SKILL.md +775 -0
- package/skills/streams-and-websockets/SKILL.md +283 -0
- package/skills/tailwind/SKILL.md +27 -3
- package/skills/testing/SKILL.md +129 -0
- package/skills/testing/bindings.md +103 -0
- package/skills/testing/cache-prerender.md +127 -0
- package/skills/testing/client-components.md +124 -0
- package/skills/testing/e2e-parity.md +125 -0
- package/skills/testing/flight.md +91 -0
- package/skills/testing/handles.md +129 -0
- package/skills/testing/loader.md +128 -0
- package/skills/testing/middleware.md +99 -0
- package/skills/testing/render-handler.md +121 -0
- package/skills/testing/response-routes.md +95 -0
- package/skills/testing/reverse-and-types.md +84 -0
- package/skills/testing/server-actions.md +107 -0
- package/skills/testing/server-tree.md +128 -0
- package/skills/testing/setup.md +123 -0
- package/skills/typesafety/SKILL.md +332 -29
- package/skills/use-cache/SKILL.md +46 -14
- package/skills/view-transitions/SKILL.md +294 -0
- package/src/__augment-tests__/augment.ts +81 -0
- package/src/__augment-tests__/augmented.check.ts +116 -0
- package/src/__internal.ts +1 -66
- package/src/browser/action-coordinator.ts +53 -36
- package/src/browser/action-fence.ts +47 -0
- package/src/browser/app-shell.ts +39 -0
- package/src/browser/app-version.ts +14 -0
- package/src/browser/connection-warmup.ts +134 -0
- package/src/browser/cookie-name.ts +140 -0
- package/src/browser/event-controller.ts +197 -150
- package/src/browser/history-state.ts +21 -0
- package/src/browser/index.ts +3 -3
- package/src/browser/invalidate-client-cache.ts +52 -0
- package/src/browser/navigation-bridge.ts +111 -31
- package/src/browser/navigation-client.ts +201 -67
- package/src/browser/navigation-store-handle.ts +38 -0
- package/src/browser/navigation-store.ts +76 -67
- package/src/browser/navigation-transaction.ts +18 -66
- package/src/browser/network-error-handler.ts +34 -7
- package/src/browser/partial-update.ts +187 -112
- package/src/browser/prefetch/cache.ts +230 -35
- package/src/browser/prefetch/fetch.ts +338 -39
- package/src/browser/prefetch/queue.ts +126 -20
- package/src/browser/prefetch/resource-ready.ts +77 -0
- package/src/browser/rango-state.ts +158 -76
- package/src/browser/react/Link.tsx +111 -16
- package/src/browser/react/NavigationProvider.tsx +135 -120
- package/src/browser/react/ScrollRestoration.tsx +10 -6
- package/src/browser/react/context.ts +7 -2
- package/src/browser/react/filter-segment-order.ts +66 -7
- package/src/browser/react/index.ts +0 -48
- package/src/browser/react/location-state-shared.ts +178 -8
- package/src/browser/react/location-state.ts +39 -14
- package/src/browser/react/use-action.ts +6 -15
- package/src/browser/react/use-handle.ts +23 -69
- package/src/browser/react/use-href.tsx +8 -1
- package/src/browser/react/use-link-status.ts +33 -8
- package/src/browser/react/use-navigation.ts +32 -7
- package/src/browser/react/use-params.ts +20 -10
- package/src/browser/react/use-reverse.ts +106 -0
- package/src/browser/react/use-router.ts +46 -11
- package/src/browser/react/use-search-params.ts +0 -5
- package/src/browser/react/use-segments.ts +11 -21
- package/src/browser/response-adapter.ts +80 -5
- package/src/browser/rsc-router.tsx +218 -76
- package/src/browser/scroll-restoration.ts +54 -42
- package/src/browser/segment-reconciler.ts +36 -9
- package/src/browser/segment-structure-assert.ts +2 -2
- package/src/browser/server-action-bridge.ts +222 -61
- package/src/browser/types.ts +91 -11
- package/src/browser/validate-redirect-origin.ts +43 -16
- package/src/build/collect-fallback-refs.ts +107 -0
- package/src/build/generate-manifest.ts +65 -40
- package/src/build/generate-route-types.ts +5 -1
- package/src/build/index.ts +8 -2
- package/src/build/prefix-tree-utils.ts +123 -0
- package/src/build/route-trie.ts +165 -36
- package/src/build/route-types/ast-route-extraction.ts +15 -8
- package/src/build/route-types/codegen.ts +16 -5
- package/src/build/route-types/include-resolution.ts +125 -24
- package/src/build/route-types/param-extraction.ts +6 -3
- package/src/build/route-types/per-module-writer.ts +22 -6
- package/src/build/route-types/router-processing.ts +272 -96
- package/src/build/route-types/scan-filter.ts +9 -2
- package/src/build/route-types/source-scan.ts +216 -0
- package/src/build/runtime-discovery.ts +9 -20
- package/src/cache/cache-error.ts +104 -0
- package/src/cache/cache-key-utils.ts +29 -13
- package/src/cache/cache-policy.ts +108 -34
- package/src/cache/cache-runtime.ts +214 -48
- package/src/cache/cache-scope.ts +236 -89
- package/src/cache/cache-tag.ts +103 -0
- package/src/cache/cf/cf-base64.ts +33 -0
- package/src/cache/cf/cf-cache-constants.ts +127 -0
- package/src/cache/cf/cf-cache-store.ts +2224 -171
- package/src/cache/cf/cf-cache-types.ts +349 -0
- package/src/cache/cf/cf-kv-utils.ts +46 -0
- package/src/cache/cf/cf-tag-marker-memo.ts +105 -0
- package/src/cache/cf/index.ts +11 -17
- package/src/cache/document-cache.ts +89 -27
- package/src/cache/handle-snapshot.ts +70 -0
- package/src/cache/index.ts +11 -20
- package/src/cache/memory-segment-store.ts +136 -37
- package/src/cache/profile-registry.ts +31 -31
- package/src/cache/read-through-swr.ts +41 -11
- package/src/cache/segment-codec.ts +9 -17
- package/src/cache/tag-invalidation.ts +230 -0
- package/src/cache/taint.ts +55 -0
- package/src/cache/types.ts +37 -100
- package/src/client.rsc.tsx +44 -21
- package/src/client.tsx +119 -290
- package/src/cloudflare/index.ts +11 -0
- package/src/cloudflare/tracing.ts +109 -0
- package/src/component-utils.ts +19 -0
- package/src/components/DefaultDocument.tsx +8 -2
- package/src/context-var.ts +84 -2
- package/src/debug.ts +2 -2
- package/src/decode-loader-results.ts +52 -0
- package/src/defer.ts +196 -0
- package/src/deps/ssr.ts +0 -1
- package/src/encode-kv.ts +49 -0
- package/src/errors.ts +30 -4
- package/src/escape-script.ts +52 -0
- package/src/handle.ts +70 -22
- package/src/handles/MetaTags.tsx +56 -19
- package/src/handles/Scripts.tsx +183 -0
- package/src/handles/breadcrumbs.ts +37 -8
- package/src/handles/is-thenable.ts +19 -0
- package/src/handles/meta.ts +51 -40
- package/src/handles/script.ts +244 -0
- package/src/host/cookie-handler.ts +9 -60
- package/src/host/errors.ts +0 -24
- package/src/host/index.ts +8 -2
- package/src/host/pattern-matcher.ts +23 -52
- package/src/host/router.ts +107 -99
- package/src/host/testing.ts +40 -27
- package/src/host/types.ts +37 -4
- package/src/host/utils.ts +1 -1
- package/src/href-client.ts +137 -22
- package/src/index.rsc.ts +93 -12
- package/src/index.ts +133 -15
- package/src/internal-debug.ts +11 -10
- package/src/loader-store.ts +500 -0
- package/src/loader.rsc.ts +20 -13
- package/src/loader.ts +12 -11
- package/src/missing-id-error.ts +68 -0
- package/src/outlet-context.ts +1 -1
- package/src/outlet-provider.tsx +1 -5
- package/src/prerender/param-hash.ts +16 -16
- package/src/prerender/store.ts +37 -41
- package/src/prerender.ts +198 -82
- package/src/redirect-origin.ts +100 -0
- package/src/regex-escape.ts +8 -0
- package/src/render-error-thrower.tsx +20 -0
- package/src/response-utils.ts +62 -0
- package/src/reverse.ts +65 -15
- package/src/root-error-boundary.tsx +1 -19
- package/src/route-content-wrapper.tsx +7 -72
- package/src/route-definition/dsl-helpers.ts +469 -276
- package/src/route-definition/helper-factories.ts +29 -139
- package/src/route-definition/helpers-types.ts +113 -37
- package/src/route-definition/index.ts +3 -0
- package/src/route-definition/redirect.ts +53 -12
- package/src/route-definition/resolve-handler-use.ts +161 -0
- package/src/route-definition/use-item-types.ts +32 -0
- package/src/route-map-builder.ts +7 -17
- package/src/route-types.ts +37 -41
- package/src/router/basename.ts +14 -0
- package/src/router/content-negotiation.ts +164 -17
- package/src/router/error-handling.ts +45 -18
- package/src/router/find-match.ts +45 -22
- package/src/router/handler-context.ts +83 -39
- package/src/router/instrument.ts +350 -0
- package/src/router/intercept-resolution.ts +50 -24
- package/src/router/lazy-includes.ts +19 -53
- package/src/router/loader-resolution.ts +274 -56
- package/src/router/logging.ts +5 -8
- package/src/router/manifest.ts +49 -45
- package/src/router/match-api.ts +120 -204
- package/src/router/match-context.ts +0 -22
- package/src/router/match-handlers.ts +58 -58
- package/src/router/match-middleware/background-revalidation.ts +33 -6
- package/src/router/match-middleware/cache-lookup.ts +214 -263
- package/src/router/match-middleware/cache-store.ts +73 -33
- package/src/router/match-middleware/intercept-resolution.ts +8 -28
- package/src/router/match-middleware/segment-resolution.ts +52 -18
- package/src/router/match-pipelines.ts +1 -42
- package/src/router/match-result.ts +104 -40
- package/src/router/metrics.ts +5 -34
- package/src/router/middleware-types.ts +13 -142
- package/src/router/middleware.ts +270 -172
- package/src/router/navigation-snapshot.ts +131 -0
- package/src/router/params-util.ts +23 -0
- package/src/router/pattern-matching.ts +132 -90
- package/src/router/prefetch-cache-ttl.ts +51 -0
- package/src/router/prerender-match.ts +195 -56
- package/src/router/preview-match.ts +32 -102
- package/src/router/request-classification.ts +276 -0
- package/src/router/revalidation.ts +123 -73
- package/src/router/route-snapshot.ts +244 -0
- package/src/router/router-context.ts +8 -28
- package/src/router/router-interfaces.ts +115 -35
- package/src/router/router-options.ts +172 -15
- package/src/router/router-registry.ts +2 -5
- package/src/router/segment-resolution/fresh.ts +264 -77
- package/src/router/segment-resolution/helpers.ts +115 -30
- package/src/router/segment-resolution/loader-cache.ts +63 -37
- package/src/router/segment-resolution/revalidation.ts +474 -385
- package/src/router/segment-resolution/static-store.ts +19 -5
- package/src/router/segment-resolution/streamed-handler-telemetry.ts +52 -0
- package/src/router/segment-resolution/view-transition-default.ts +36 -0
- package/src/router/segment-resolution.ts +5 -1
- package/src/router/segment-wrappers.ts +8 -5
- package/src/router/state-cookie-name.ts +33 -0
- package/src/router/substitute-pattern-params.ts +56 -0
- package/src/router/telemetry-otel.ts +161 -199
- package/src/router/telemetry.ts +96 -19
- package/src/router/timeout.ts +0 -20
- package/src/router/tracing.ts +206 -0
- package/src/router/trie-matching.ts +163 -59
- package/src/router/types.ts +10 -63
- package/src/router/url-params.ts +44 -0
- package/src/router.ts +163 -55
- package/src/rsc/handler-context.ts +3 -2
- package/src/rsc/handler.ts +658 -511
- package/src/rsc/helpers.ts +168 -46
- package/src/rsc/index.ts +2 -5
- package/src/rsc/json-route-result.ts +38 -0
- package/src/rsc/loader-fetch.ts +127 -31
- package/src/rsc/manifest-init.ts +33 -42
- package/src/rsc/origin-guard.ts +39 -25
- package/src/rsc/progressive-enhancement.ts +77 -11
- package/src/rsc/redirect-guard.ts +99 -0
- package/src/rsc/response-cache-serve.ts +238 -0
- package/src/rsc/response-error.ts +79 -12
- package/src/rsc/response-route-handler.ts +99 -189
- package/src/rsc/rsc-rendering.ts +105 -72
- package/src/rsc/runtime-warnings.ts +23 -10
- package/src/rsc/server-action.ts +263 -112
- package/src/rsc/ssr-setup.ts +18 -2
- package/src/rsc/types.ts +32 -6
- package/src/runtime-env.ts +18 -0
- package/src/search-params.ts +35 -30
- package/src/segment-content-promise.ts +67 -0
- package/src/segment-loader-promise.ts +149 -0
- package/src/segment-system.tsx +281 -129
- package/src/serialize.ts +243 -0
- package/src/server/context.ts +309 -61
- package/src/server/cookie-parse.ts +32 -0
- package/src/server/cookie-store.ts +80 -5
- package/src/server/handle-store.ts +40 -38
- package/src/server/loader-registry.ts +26 -46
- package/src/server/request-context.ts +398 -172
- package/src/ssr/index.tsx +25 -16
- package/src/static-handler.ts +27 -18
- package/src/testing/cache-status.ts +162 -0
- package/src/testing/collect-handle.ts +40 -0
- package/src/testing/dispatch.ts +701 -0
- package/src/testing/dom.entry.ts +22 -0
- package/src/testing/e2e/fixture.ts +188 -0
- package/src/testing/e2e/index.ts +128 -0
- package/src/testing/e2e/matchers.ts +35 -0
- package/src/testing/e2e/page-helpers.ts +272 -0
- package/src/testing/e2e/parity.ts +387 -0
- package/src/testing/e2e/server.ts +195 -0
- package/src/testing/flight-matchers.ts +97 -0
- package/src/testing/flight-normalize.ts +11 -0
- package/src/testing/flight-runtime.d.ts +57 -0
- package/src/testing/flight-tree.ts +682 -0
- package/src/testing/flight.entry.ts +52 -0
- package/src/testing/flight.ts +257 -0
- package/src/testing/generated-routes.ts +183 -0
- package/src/testing/index.ts +99 -0
- package/src/testing/internal/context.ts +371 -0
- package/src/testing/internal/flight-client-globals.ts +30 -0
- package/src/testing/internal/seed-vars.ts +54 -0
- package/src/testing/render-handler.ts +343 -0
- package/src/testing/render-route.tsx +581 -0
- package/src/testing/run-loader.ts +385 -0
- package/src/testing/run-middleware.ts +205 -0
- package/src/testing/vitest-stubs/cloudflare-email.ts +9 -0
- package/src/testing/vitest-stubs/cloudflare-workers.ts +21 -0
- package/src/testing/vitest-stubs/plugin-rsc.ts +16 -0
- package/src/testing/vitest-stubs/version.ts +5 -0
- package/src/testing/vitest.ts +305 -0
- package/src/theme/ThemeProvider.tsx +20 -58
- package/src/theme/ThemeScript.tsx +7 -9
- package/src/theme/constants.ts +52 -13
- package/src/theme/index.ts +0 -7
- package/src/theme/theme-context.ts +1 -5
- package/src/theme/theme-script.ts +22 -21
- package/src/theme/use-theme.ts +0 -3
- package/src/types/boundaries.ts +0 -35
- package/src/types/cache-types.ts +17 -8
- package/src/types/error-types.ts +30 -90
- package/src/types/global-namespace.ts +54 -41
- package/src/types/handler-context.ts +233 -81
- package/src/types/index.ts +1 -10
- package/src/types/loader-types.ts +44 -15
- package/src/types/request-scope.ts +112 -0
- package/src/types/route-config.ts +6 -50
- package/src/types/route-entry.ts +19 -7
- package/src/types/segments.ts +37 -14
- package/src/urls/include-helper.ts +33 -70
- package/src/urls/index.ts +1 -11
- package/src/urls/path-helper-types.ts +58 -11
- package/src/urls/path-helper.ts +57 -111
- package/src/urls/pattern-types.ts +48 -19
- package/src/urls/response-types.ts +25 -22
- package/src/urls/type-extraction.ts +58 -139
- package/src/urls/urls-function.ts +1 -18
- package/src/use-loader.tsx +346 -89
- package/src/vite/debug.ts +185 -0
- package/src/vite/discovery/bundle-postprocess.ts +36 -38
- package/src/vite/discovery/discover-routers.ts +130 -85
- package/src/vite/discovery/discovery-errors.ts +194 -0
- package/src/vite/discovery/gate-state.ts +171 -0
- package/src/vite/discovery/prerender-collection.ts +214 -132
- package/src/vite/discovery/route-types-writer.ts +40 -84
- package/src/vite/discovery/self-gen-tracking.ts +27 -1
- package/src/vite/discovery/state.ts +57 -6
- package/src/vite/discovery/virtual-module-codegen.ts +14 -34
- package/src/vite/index.ts +6 -0
- package/src/vite/inject-client-debug.ts +36 -0
- package/src/vite/plugin-types.ts +155 -65
- package/src/vite/plugins/cjs-to-esm.ts +16 -19
- package/src/vite/plugins/client-ref-dedup.ts +16 -11
- package/src/vite/plugins/client-ref-hashing.ts +28 -15
- package/src/vite/plugins/cloudflare-protocol-loader-hook.d.mts +23 -0
- package/src/vite/plugins/cloudflare-protocol-loader-hook.mjs +76 -0
- package/src/vite/plugins/cloudflare-protocol-stub.ts +194 -0
- package/src/vite/plugins/expose-action-id.ts +49 -98
- package/src/vite/plugins/expose-id-utils.ts +96 -51
- package/src/vite/plugins/expose-ids/export-analysis.ts +101 -34
- package/src/vite/plugins/expose-ids/handler-transform.ts +15 -64
- package/src/vite/plugins/expose-ids/loader-transform.ts +14 -24
- package/src/vite/plugins/expose-ids/router-transform.ts +118 -29
- package/src/vite/plugins/expose-internal-ids.ts +553 -317
- package/src/vite/plugins/performance-tracks.ts +89 -0
- package/src/vite/plugins/refresh-cmd.ts +89 -27
- package/src/vite/plugins/use-cache-transform.ts +73 -83
- package/src/vite/plugins/version-injector.ts +21 -25
- package/src/vite/plugins/version-plugin.ts +46 -37
- package/src/vite/plugins/virtual-entries.ts +13 -18
- package/src/vite/rango.ts +238 -295
- package/src/vite/router-discovery.ts +940 -149
- package/src/vite/utils/ast-handler-extract.ts +26 -35
- package/src/vite/utils/banner.ts +4 -4
- package/src/vite/utils/bundle-analysis.ts +10 -15
- package/src/vite/utils/client-chunks.ts +184 -0
- package/src/vite/utils/directive-prologue.ts +40 -0
- package/src/vite/utils/forward-user-plugins.ts +171 -0
- package/src/vite/utils/manifest-utils.ts +4 -59
- package/src/vite/utils/package-resolution.ts +20 -52
- package/src/vite/utils/prerender-utils.ts +81 -34
- package/src/vite/utils/shared-utils.ts +92 -42
- package/src/browser/action-response-classifier.ts +0 -99
- package/src/browser/react/use-client-cache.ts +0 -58
- package/src/browser/shallow.ts +0 -40
- package/src/handles/index.ts +0 -7
- package/src/network-error-thrower.tsx +0 -23
- package/src/router/middleware-cookies.ts +0 -55
|
@@ -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
|
+
}
|
|
@@ -11,15 +11,24 @@ import type {
|
|
|
11
11
|
InterceptEntry,
|
|
12
12
|
InterceptSelectorContext,
|
|
13
13
|
} from "../server/context";
|
|
14
|
-
import type {
|
|
14
|
+
import type {
|
|
15
|
+
HandlerContext,
|
|
16
|
+
InternalHandlerContext,
|
|
17
|
+
ResolvedSegment,
|
|
18
|
+
} from "../types";
|
|
15
19
|
import { evaluateRevalidation } from "./revalidation.js";
|
|
16
20
|
import { getRequestContext } from "../server/request-context.js";
|
|
17
21
|
import { executeInterceptMiddleware } from "./middleware.js";
|
|
18
22
|
import { createReverseFunction } from "./handler-context.js";
|
|
19
23
|
import { getGlobalRouteMap } from "../route-map-builder.js";
|
|
20
|
-
import {
|
|
24
|
+
import {
|
|
25
|
+
handleHandlerResult,
|
|
26
|
+
warnOnStreamedResponse,
|
|
27
|
+
buildLoaderErrorContext,
|
|
28
|
+
} from "./segment-resolution.js";
|
|
21
29
|
import type { SegmentResolutionDeps } from "./types.js";
|
|
22
30
|
import { debugLog } from "./logging.js";
|
|
31
|
+
import { runInsideLoaderScope } from "../server/context.js";
|
|
23
32
|
|
|
24
33
|
/**
|
|
25
34
|
* Check if an intercept's when conditions are satisfied.
|
|
@@ -61,28 +70,14 @@ export function findInterceptForRoute(
|
|
|
61
70
|
let current: EntryData | null = fromEntry;
|
|
62
71
|
|
|
63
72
|
while (current) {
|
|
64
|
-
|
|
65
|
-
|
|
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) {
|
|
66
76
|
if (
|
|
67
77
|
intercept.routeName === targetRouteKey &&
|
|
68
78
|
evaluateInterceptWhen(intercept, selectorContext, isAction)
|
|
69
79
|
) {
|
|
70
|
-
return { intercept, entry:
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
if (current.layout && current.layout.length > 0) {
|
|
76
|
-
for (const siblingLayout of current.layout) {
|
|
77
|
-
if (siblingLayout.intercept && siblingLayout.intercept.length > 0) {
|
|
78
|
-
for (const intercept of siblingLayout.intercept) {
|
|
79
|
-
if (
|
|
80
|
-
intercept.routeName === targetRouteKey &&
|
|
81
|
-
evaluateInterceptWhen(intercept, selectorContext, isAction)
|
|
82
|
-
) {
|
|
83
|
-
return { intercept, entry: siblingLayout };
|
|
84
|
-
}
|
|
85
|
-
}
|
|
80
|
+
return { intercept, entry: source };
|
|
86
81
|
}
|
|
87
82
|
}
|
|
88
83
|
}
|
|
@@ -118,10 +113,25 @@ export async function resolveInterceptEntry<TEnv>(
|
|
|
118
113
|
};
|
|
119
114
|
stale?: boolean;
|
|
120
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
|
+
},
|
|
121
131
|
): Promise<ResolvedSegment[]> {
|
|
122
132
|
const segments: ResolvedSegment[] = [];
|
|
123
133
|
|
|
124
|
-
if (interceptEntry.middleware.length > 0) {
|
|
134
|
+
if (!options?.skipMiddleware && interceptEntry.middleware.length > 0) {
|
|
125
135
|
const requestCtx = getRequestContext();
|
|
126
136
|
if (!requestCtx?.res) {
|
|
127
137
|
throw new Error(
|
|
@@ -133,7 +143,7 @@ export async function resolveInterceptEntry<TEnv>(
|
|
|
133
143
|
context.request,
|
|
134
144
|
context.env,
|
|
135
145
|
params,
|
|
136
|
-
context
|
|
146
|
+
(context as InternalHandlerContext<any, TEnv>)._variables,
|
|
137
147
|
requestCtx.res,
|
|
138
148
|
createReverseFunction(getGlobalRouteMap()),
|
|
139
149
|
);
|
|
@@ -188,6 +198,7 @@ export async function resolveInterceptEntry<TEnv>(
|
|
|
188
198
|
context,
|
|
189
199
|
actionContext,
|
|
190
200
|
stale,
|
|
201
|
+
traceSource: "intercept-loader",
|
|
191
202
|
});
|
|
192
203
|
|
|
193
204
|
if (!shouldRevalidate) {
|
|
@@ -206,10 +217,13 @@ export async function resolveInterceptEntry<TEnv>(
|
|
|
206
217
|
loaderIds.push(loader.$$id);
|
|
207
218
|
loaderPromises.push(
|
|
208
219
|
deps.wrapLoaderPromise(
|
|
209
|
-
context.use(loader),
|
|
220
|
+
runInsideLoaderScope(() => context.use(loader)),
|
|
210
221
|
parentEntry,
|
|
211
222
|
segmentId,
|
|
212
223
|
context.pathname,
|
|
224
|
+
// Report a throwing intercept loader to onError + loader.error telemetry,
|
|
225
|
+
// matching the fresh/revalidation paths.
|
|
226
|
+
buildLoaderErrorContext(context),
|
|
213
227
|
),
|
|
214
228
|
);
|
|
215
229
|
}
|
|
@@ -236,6 +250,12 @@ export async function resolveInterceptEntry<TEnv>(
|
|
|
236
250
|
let loaderDataPromise: Promise<any[]> | any[] | undefined;
|
|
237
251
|
|
|
238
252
|
if (interceptEntry.loading && loaderPromises.length > 0) {
|
|
253
|
+
if (handlerResult instanceof Promise) {
|
|
254
|
+
warnOnStreamedResponse(
|
|
255
|
+
handlerResult,
|
|
256
|
+
`intercept ${interceptEntry.slotName}`,
|
|
257
|
+
);
|
|
258
|
+
}
|
|
239
259
|
component =
|
|
240
260
|
handlerResult instanceof Promise
|
|
241
261
|
? handlerResult
|
|
@@ -355,6 +375,7 @@ export async function resolveInterceptLoadersOnly<TEnv>(
|
|
|
355
375
|
context,
|
|
356
376
|
actionContext,
|
|
357
377
|
stale,
|
|
378
|
+
traceSource: "intercept-loader",
|
|
358
379
|
});
|
|
359
380
|
|
|
360
381
|
if (!shouldRevalidate) {
|
|
@@ -372,10 +393,15 @@ export async function resolveInterceptLoadersOnly<TEnv>(
|
|
|
372
393
|
loaderIds.push(loader.$$id);
|
|
373
394
|
loaderPromises.push(
|
|
374
395
|
deps.wrapLoaderPromise(
|
|
375
|
-
context.use(loader),
|
|
396
|
+
runInsideLoaderScope(() => context.use(loader)),
|
|
376
397
|
parentEntry,
|
|
377
398
|
segmentId,
|
|
378
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 },
|
|
379
405
|
),
|
|
380
406
|
);
|
|
381
407
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { registerRouteMap } from "../route-map-builder.js";
|
|
2
|
-
import { extractStaticPrefix } from "./pattern-matching.js";
|
|
2
|
+
import { extractStaticPrefix, joinPrefix } from "./pattern-matching.js";
|
|
3
3
|
import {
|
|
4
|
-
EntryData,
|
|
5
|
-
|
|
4
|
+
type EntryData,
|
|
5
|
+
RangoContext,
|
|
6
6
|
runWithPrefixes,
|
|
7
|
+
getIsolatedLazyParent,
|
|
7
8
|
} from "../server/context";
|
|
8
9
|
import type { UrlPatterns } from "../urls.js";
|
|
9
10
|
import type { AllUseItems, IncludeItem } from "../route-types.js";
|
|
@@ -14,11 +15,9 @@ export interface LazyEvalDeps<TEnv = any> {
|
|
|
14
15
|
mergedRouteMap: Record<string, string>;
|
|
15
16
|
nextMountIndex: () => number;
|
|
16
17
|
getPrecomputedByPrefix: () => Map<string, Record<string, string>> | null;
|
|
18
|
+
routerId?: string;
|
|
17
19
|
}
|
|
18
20
|
|
|
19
|
-
// Detect lazy includes in handler result and create placeholder entries
|
|
20
|
-
// Lazy includes are IncludeItem with lazy: true and _lazyContext
|
|
21
|
-
// Moved to outer scope so it can be reused by evaluateLazyEntry for nested includes
|
|
22
21
|
export function findLazyIncludes<TEnv = any>(
|
|
23
22
|
items: AllUseItems[],
|
|
24
23
|
): Array<{
|
|
@@ -54,7 +53,6 @@ export function findLazyIncludes<TEnv = any>(
|
|
|
54
53
|
});
|
|
55
54
|
}
|
|
56
55
|
}
|
|
57
|
-
// Recursively check nested items (in layouts, etc.)
|
|
58
56
|
if ((item as any).uses && Array.isArray((item as any).uses)) {
|
|
59
57
|
lazyItems.push(...findLazyIncludes((item as any).uses));
|
|
60
58
|
}
|
|
@@ -76,14 +74,6 @@ export function evaluateLazyEntry<TEnv = any>(
|
|
|
76
74
|
return;
|
|
77
75
|
}
|
|
78
76
|
|
|
79
|
-
// Check for pre-computed routes from build-time data.
|
|
80
|
-
// Only leaf nodes (no nested includes) are precomputed, so entries with
|
|
81
|
-
// nested lazy includes fall through to the handler below.
|
|
82
|
-
// When multiple entries share the same staticPrefix (e.g., several
|
|
83
|
-
// include("/", ...) calls), the precomputed data merges all their routes
|
|
84
|
-
// into one entry. Assigning that merged set to the first matching entry
|
|
85
|
-
// causes findMatch to pick the wrong handler for routes belonging to a
|
|
86
|
-
// different include. Skip the shortcut when the prefix is shared.
|
|
87
77
|
const currentPrecomputed = deps.getPrecomputedByPrefix();
|
|
88
78
|
if (currentPrecomputed) {
|
|
89
79
|
const routes = currentPrecomputed.get(entry.staticPrefix);
|
|
@@ -103,50 +93,41 @@ export function evaluateLazyEntry<TEnv = any>(
|
|
|
103
93
|
}
|
|
104
94
|
}
|
|
105
95
|
|
|
106
|
-
// Mark as evaluated immediately to prevent concurrent evaluation.
|
|
107
|
-
// JS is single-threaded but handlers.handler() could theoretically yield,
|
|
108
|
-
// and the while-loop in findMatch retries after evaluation.
|
|
109
96
|
entry.lazyEvaluated = true;
|
|
110
97
|
|
|
111
98
|
const lazyPatterns = entry.lazyPatterns as UrlPatterns<TEnv>;
|
|
112
99
|
const lazyContext = entry.lazyContext;
|
|
113
100
|
|
|
114
|
-
// Create a new context for evaluating the lazy patterns
|
|
115
101
|
const manifest = new Map<string, EntryData>();
|
|
116
102
|
const patterns = new Map<string, string>();
|
|
117
103
|
const patternsByPrefix = new Map<string, Map<string, string>>();
|
|
118
104
|
const trailingSlashMap = new Map<string, TrailingSlashMode>();
|
|
119
105
|
|
|
120
|
-
// Capture the handler result to detect nested lazy includes
|
|
121
106
|
let handlerResult: AllUseItems[] = [];
|
|
122
107
|
|
|
123
|
-
// Merge captured counters from include() to maintain consistent
|
|
124
|
-
// shortCode indices with sibling entries from pattern extraction
|
|
125
108
|
const lazyCounters: Record<string, number> = {};
|
|
126
|
-
if (lazyContext
|
|
127
|
-
const
|
|
128
|
-
for (const [key, value] of Object.entries(captured)) {
|
|
109
|
+
if (lazyContext?.counters) {
|
|
110
|
+
for (const [key, value] of Object.entries(lazyContext.counters)) {
|
|
129
111
|
lazyCounters[key] = value;
|
|
130
112
|
}
|
|
131
113
|
}
|
|
132
114
|
|
|
133
|
-
|
|
115
|
+
RangoContext.run(
|
|
134
116
|
{
|
|
135
117
|
manifest,
|
|
136
118
|
patterns,
|
|
137
119
|
patternsByPrefix,
|
|
138
120
|
trailingSlash: trailingSlashMap,
|
|
139
121
|
namespace: "lazy",
|
|
140
|
-
parent: (lazyContext?.parent as EntryData | null)
|
|
122
|
+
parent: getIsolatedLazyParent(lazyContext?.parent as EntryData | null),
|
|
141
123
|
counters: lazyCounters,
|
|
142
|
-
cacheProfiles:
|
|
143
|
-
rootScoped:
|
|
124
|
+
cacheProfiles: lazyContext?.cacheProfiles,
|
|
125
|
+
rootScoped: lazyContext?.rootScoped,
|
|
126
|
+
includeScope: lazyContext?.includeScope,
|
|
144
127
|
},
|
|
145
128
|
() => {
|
|
146
|
-
// Run the lazy patterns handler with the original context prefixes
|
|
147
|
-
// The prefix comes from the IncludeItem stored in lazyPatterns
|
|
148
129
|
const includePrefix = (entry as any)._lazyPrefix || "";
|
|
149
|
-
const fullPrefix = (lazyContext?.urlPrefix
|
|
130
|
+
const fullPrefix = joinPrefix(lazyContext?.urlPrefix, includePrefix);
|
|
150
131
|
|
|
151
132
|
if (fullPrefix || lazyContext?.namePrefix) {
|
|
152
133
|
runWithPrefixes(fullPrefix, lazyContext?.namePrefix, () => {
|
|
@@ -158,11 +139,9 @@ export function evaluateLazyEntry<TEnv = any>(
|
|
|
158
139
|
},
|
|
159
140
|
);
|
|
160
141
|
|
|
161
|
-
// Populate the entry's routes from the patterns
|
|
162
142
|
const routesObject: Record<string, string> = {};
|
|
163
143
|
for (const [name, pattern] of patterns.entries()) {
|
|
164
144
|
routesObject[name] = pattern;
|
|
165
|
-
// Also add to merged route map for reverse() support
|
|
166
145
|
const existingPattern = deps.mergedRouteMap[name];
|
|
167
146
|
if (existingPattern !== undefined && existingPattern !== pattern) {
|
|
168
147
|
console.warn(
|
|
@@ -173,45 +152,33 @@ export function evaluateLazyEntry<TEnv = any>(
|
|
|
173
152
|
deps.mergedRouteMap[name] = pattern;
|
|
174
153
|
}
|
|
175
154
|
|
|
176
|
-
// Update the entry in-place
|
|
177
155
|
entry.routes = routesObject as ResolvedRouteMap<any>;
|
|
178
156
|
|
|
179
|
-
// Note: Do NOT clear lazyPatterns/lazyContext here.
|
|
180
|
-
// loadManifest() needs them on every request to re-run the handler
|
|
181
|
-
// in the correct AsyncLocalStorage context (Store.manifest).
|
|
182
|
-
|
|
183
|
-
// Update trailing slash config if available
|
|
184
157
|
if (trailingSlashMap.size > 0) {
|
|
185
158
|
entry.trailingSlash = Object.fromEntries(trailingSlashMap);
|
|
186
159
|
}
|
|
187
160
|
|
|
188
|
-
// Detect nested lazy includes and register them as new entries
|
|
189
161
|
const nestedLazyIncludes = findLazyIncludes(handlerResult);
|
|
190
162
|
for (const lazyInclude of nestedLazyIncludes) {
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
163
|
+
const fullPrefix = joinPrefix(
|
|
164
|
+
lazyInclude.context.urlPrefix,
|
|
165
|
+
lazyInclude.prefix,
|
|
166
|
+
);
|
|
195
167
|
|
|
196
168
|
const nestedEntry: RouteEntry<TEnv> & { _lazyPrefix?: string } = {
|
|
197
169
|
prefix: "",
|
|
198
170
|
staticPrefix: extractStaticPrefix(fullPrefix),
|
|
199
|
-
routes: {} as ResolvedRouteMap<any>,
|
|
171
|
+
routes: {} as ResolvedRouteMap<any>,
|
|
200
172
|
trailingSlash: entry.trailingSlash,
|
|
201
173
|
handler: (lazyInclude.patterns as UrlPatterns<TEnv>).handler,
|
|
202
174
|
mountIndex: deps.nextMountIndex(),
|
|
203
|
-
|
|
175
|
+
routerId: deps.routerId,
|
|
204
176
|
lazy: true,
|
|
205
177
|
lazyPatterns: lazyInclude.patterns,
|
|
206
178
|
lazyContext: lazyInclude.context,
|
|
207
179
|
lazyEvaluated: false,
|
|
208
|
-
// Store the include prefix for evaluation
|
|
209
180
|
_lazyPrefix: lazyInclude.prefix,
|
|
210
181
|
};
|
|
211
|
-
// Insert nested lazy entry before any entry whose staticPrefix is a
|
|
212
|
-
// prefix of (but shorter than) this lazy entry's staticPrefix.
|
|
213
|
-
// This ensures more specific lazy includes are matched before
|
|
214
|
-
// less specific eager entries (e.g., "/href/nested" before "/href/:id").
|
|
215
182
|
const nestedPrefix = nestedEntry.staticPrefix;
|
|
216
183
|
let insertIndex = deps.routesEntries.length;
|
|
217
184
|
if (nestedPrefix) {
|
|
@@ -229,6 +196,5 @@ export function evaluateLazyEntry<TEnv = any>(
|
|
|
229
196
|
deps.routesEntries.splice(insertIndex, 0, nestedEntry);
|
|
230
197
|
}
|
|
231
198
|
|
|
232
|
-
// Re-register route map for runtime reverse() usage
|
|
233
199
|
registerRouteMap(deps.mergedRouteMap);
|
|
234
200
|
}
|