Skip to content

Commit 6dabe3a

Browse files
committed
skip postpone to do dynamic render
1 parent 1b4a2f4 commit 6dabe3a

File tree

4 files changed

+28
-14
lines changed

4 files changed

+28
-14
lines changed

packages/next/src/server/app-render/app-render.tsx

+1-10
Original file line numberDiff line numberDiff line change
@@ -1847,18 +1847,9 @@ async function renderToStream(
18471847
// one task before continuing
18481848
await waitAtLeastOneReactRenderTask()
18491849

1850-
// When streaming metadata is enabled and request UA is a html-limited bot, we should do a dynamic render.
1851-
const shouldDoDynamicRender =
1852-
ctx.renderOpts.botType === 'html' &&
1853-
ctx.renderOpts.experimental.streamingMetadata
1854-
18551850
// If provided, the postpone state should be parsed as JSON so it can be
18561851
// provided to React.
1857-
if (
1858-
typeof renderOpts.postponed === 'string' &&
1859-
// When we don't need to forcedly do a dynamic render, continue PPR renderer.
1860-
!shouldDoDynamicRender
1861-
) {
1852+
if (typeof renderOpts.postponed === 'string') {
18621853
if (postponedState?.type === DynamicState.DATA) {
18631854
// We have a complete HTML Document in the prerender but we need to
18641855
// still include the new server component render because it was not included

packages/next/src/server/base-server.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,10 @@ import type { RouteModule } from './route-modules/route-module'
175175
import { FallbackMode, parseFallbackField } from '../lib/fallback'
176176
import { toResponseCacheEntry } from './response-cache/utils'
177177
import { scheduleOnNextTick } from '../lib/scheduler'
178-
import { shouldServeStreamingMetadata } from './lib/streaming-metadata'
178+
import {
179+
shouldServeStreamingMetadata,
180+
shouldSkipPostponedState,
181+
} from './lib/streaming-metadata'
179182

180183
export type FindComponentsResult = {
181184
components: LoadComponentsReturnType
@@ -2097,6 +2100,11 @@ export default abstract class Server<
20972100
const hasDebugFallbackShellQuery =
20982101
hasDebugStaticShellQuery && query.__nextppronly === 'fallback'
20992102

2103+
const skipPostponed = shouldSkipPostponedState(
2104+
req,
2105+
this.renderOpts.experimental.streamingMetadata
2106+
)
2107+
21002108
// This page supports PPR if it is marked as being `PARTIALLY_STATIC` in the
21012109
// prerender manifest and this is an app page.
21022110
const isRoutePPREnabled: boolean =
@@ -2443,7 +2451,7 @@ export default abstract class Server<
24432451
isOnDemandRevalidate,
24442452
isDraftMode: isPreviewMode,
24452453
isServerAction,
2446-
postponed,
2454+
postponed: skipPostponed ? undefined : postponed,
24472455
waitUntil: this.getWaitUntil(),
24482456
onClose: res.onClose.bind(res),
24492457
onAfterTaskError: undefined,

packages/next/src/server/lib/streaming-metadata.ts

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
import { HTML_LIMITED_BOT_UA_RE_STRING } from '../../shared/lib/router/utils/is-bot'
1+
import {
2+
getBotType,
3+
HTML_LIMITED_BOT_UA_RE_STRING,
4+
} from '../../shared/lib/router/utils/is-bot'
5+
import type { BaseNextRequest } from '../base-http'
26

37
export function shouldServeStreamingMetadata(
48
userAgent: string,
@@ -23,3 +27,15 @@ export function shouldServeStreamingMetadata(
2327
!!userAgent && !blockingMetadataUARegex.test(userAgent)
2428
)
2529
}
30+
31+
// When streaming metadata is enabled and request UA is a html-limited bot, we should do a dynamic render.
32+
// In this case, postpone state is not sent.
33+
export function shouldSkipPostponedState(
34+
req: BaseNextRequest,
35+
streamingMetadata: boolean
36+
): boolean {
37+
const ua = req.headers['user-agent'] || ''
38+
const botType = getBotType(ua)
39+
40+
return botType === 'html' && streamingMetadata
41+
}

test/e2e/app-dir/ppr-metadata-streaming/app/layout.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import Link from 'next/link'
22
import { ReactNode } from 'react'
33

44
const hrefs = [
5-
'/',
65
'/dynamic-metadata',
76
'/dynamic-metadata/partial',
87
'/dynamic-page',

0 commit comments

Comments
 (0)