|
|
import './app-globals' |
|
|
import ReactDOMClient from 'react-dom/client' |
|
|
import React, { use } from 'react' |
|
|
|
|
|
|
|
|
import { createFromReadableStream as createFromReadableStreamBrowser } from 'react-server-dom-webpack/client' |
|
|
import { HeadManagerContext } from '../shared/lib/head-manager-context.shared-runtime' |
|
|
import { onRecoverableError } from './react-client-callbacks/on-recoverable-error' |
|
|
import { |
|
|
onCaughtError, |
|
|
onUncaughtError, |
|
|
} from './react-client-callbacks/error-boundary-callbacks' |
|
|
import { callServer } from './app-call-server' |
|
|
import { findSourceMapURL } from './app-find-source-map-url' |
|
|
import { |
|
|
type AppRouterActionQueue, |
|
|
createMutableActionQueue, |
|
|
} from './components/app-router-instance' |
|
|
import AppRouter from './components/app-router' |
|
|
import type { InitialRSCPayload } from '../server/app-render/types' |
|
|
import { createInitialRouterState } from './components/router-reducer/create-initial-router-state' |
|
|
import { MissingSlotContext } from '../shared/lib/app-router-context.shared-runtime' |
|
|
import { setAppBuildId } from './app-build-id' |
|
|
import { isBot } from '../shared/lib/router/utils/is-bot' |
|
|
|
|
|
|
|
|
|
|
|
const createFromReadableStream = |
|
|
createFromReadableStreamBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromReadableStream'] |
|
|
|
|
|
const appElement: HTMLElement | Document = document |
|
|
|
|
|
const encoder = new TextEncoder() |
|
|
|
|
|
let initialServerDataBuffer: (string | Uint8Array)[] | undefined = undefined |
|
|
let initialServerDataWriter: ReadableStreamDefaultController | undefined = |
|
|
undefined |
|
|
let initialServerDataLoaded = false |
|
|
let initialServerDataFlushed = false |
|
|
|
|
|
let initialFormStateData: null | any = null |
|
|
|
|
|
type FlightSegment = |
|
|
| [isBootStrap: 0] |
|
|
| [isNotBootstrap: 1, responsePartial: string] |
|
|
| [isFormState: 2, formState: any] |
|
|
| [isBinary: 3, responseBase64Partial: string] |
|
|
|
|
|
type NextFlight = Omit<Array<FlightSegment>, 'push'> & { |
|
|
push: (seg: FlightSegment) => void |
|
|
} |
|
|
|
|
|
declare global { |
|
|
|
|
|
interface Window { |
|
|
__next_f: NextFlight |
|
|
} |
|
|
} |
|
|
|
|
|
function nextServerDataCallback(seg: FlightSegment): void { |
|
|
if (seg[0] === 0) { |
|
|
initialServerDataBuffer = [] |
|
|
} else if (seg[0] === 1) { |
|
|
if (!initialServerDataBuffer) |
|
|
throw new Error('Unexpected server data: missing bootstrap script.') |
|
|
|
|
|
if (initialServerDataWriter) { |
|
|
initialServerDataWriter.enqueue(encoder.encode(seg[1])) |
|
|
} else { |
|
|
initialServerDataBuffer.push(seg[1]) |
|
|
} |
|
|
} else if (seg[0] === 2) { |
|
|
initialFormStateData = seg[1] |
|
|
} else if (seg[0] === 3) { |
|
|
if (!initialServerDataBuffer) |
|
|
throw new Error('Unexpected server data: missing bootstrap script.') |
|
|
|
|
|
|
|
|
const binaryString = atob(seg[1]) |
|
|
const decodedChunk = new Uint8Array(binaryString.length) |
|
|
for (var i = 0; i < binaryString.length; i++) { |
|
|
decodedChunk[i] = binaryString.charCodeAt(i) |
|
|
} |
|
|
|
|
|
if (initialServerDataWriter) { |
|
|
initialServerDataWriter.enqueue(decodedChunk) |
|
|
} else { |
|
|
initialServerDataBuffer.push(decodedChunk) |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
function isStreamErrorOrUnfinished(ctr: ReadableStreamDefaultController) { |
|
|
|
|
|
return ctr.desiredSize === null || ctr.desiredSize < 0 |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function nextServerDataRegisterWriter(ctr: ReadableStreamDefaultController) { |
|
|
if (initialServerDataBuffer) { |
|
|
initialServerDataBuffer.forEach((val) => { |
|
|
ctr.enqueue(typeof val === 'string' ? encoder.encode(val) : val) |
|
|
}) |
|
|
if (initialServerDataLoaded && !initialServerDataFlushed) { |
|
|
if (isStreamErrorOrUnfinished(ctr)) { |
|
|
ctr.error( |
|
|
new Error( |
|
|
'The connection to the page was unexpectedly closed, possibly due to the stop button being clicked, loss of Wi-Fi, or an unstable internet connection.' |
|
|
) |
|
|
) |
|
|
} else { |
|
|
ctr.close() |
|
|
} |
|
|
initialServerDataFlushed = true |
|
|
initialServerDataBuffer = undefined |
|
|
} |
|
|
} |
|
|
|
|
|
initialServerDataWriter = ctr |
|
|
} |
|
|
|
|
|
|
|
|
const DOMContentLoaded = function () { |
|
|
if (initialServerDataWriter && !initialServerDataFlushed) { |
|
|
initialServerDataWriter.close() |
|
|
initialServerDataFlushed = true |
|
|
initialServerDataBuffer = undefined |
|
|
} |
|
|
initialServerDataLoaded = true |
|
|
} |
|
|
|
|
|
|
|
|
if (document.readyState === 'loading') { |
|
|
document.addEventListener('DOMContentLoaded', DOMContentLoaded, false) |
|
|
} else { |
|
|
|
|
|
setTimeout(DOMContentLoaded) |
|
|
} |
|
|
|
|
|
const nextServerDataLoadingGlobal = (self.__next_f = self.__next_f || []) |
|
|
nextServerDataLoadingGlobal.forEach(nextServerDataCallback) |
|
|
nextServerDataLoadingGlobal.push = nextServerDataCallback |
|
|
|
|
|
const readable = new ReadableStream({ |
|
|
start(controller) { |
|
|
nextServerDataRegisterWriter(controller) |
|
|
}, |
|
|
}) |
|
|
|
|
|
const initialServerResponse = createFromReadableStream<InitialRSCPayload>( |
|
|
readable, |
|
|
{ callServer, findSourceMapURL } |
|
|
) |
|
|
|
|
|
function ServerRoot({ |
|
|
pendingActionQueue, |
|
|
}: { |
|
|
pendingActionQueue: Promise<AppRouterActionQueue> |
|
|
}): React.ReactNode { |
|
|
const initialRSCPayload = use(initialServerResponse) |
|
|
const actionQueue = use<AppRouterActionQueue>(pendingActionQueue) |
|
|
|
|
|
const router = ( |
|
|
<AppRouter |
|
|
gracefullyDegrade={isBot(window.navigator.userAgent)} |
|
|
actionQueue={actionQueue} |
|
|
globalErrorState={initialRSCPayload.G} |
|
|
assetPrefix={initialRSCPayload.p} |
|
|
/> |
|
|
) |
|
|
|
|
|
if (process.env.NODE_ENV === 'development' && initialRSCPayload.m) { |
|
|
|
|
|
|
|
|
return ( |
|
|
<MissingSlotContext value={initialRSCPayload.m}> |
|
|
{router} |
|
|
</MissingSlotContext> |
|
|
) |
|
|
} |
|
|
|
|
|
return router |
|
|
} |
|
|
|
|
|
const StrictModeIfEnabled = process.env.__NEXT_STRICT_MODE_APP |
|
|
? React.StrictMode |
|
|
: React.Fragment |
|
|
|
|
|
function Root({ children }: React.PropsWithChildren<{}>) { |
|
|
if (process.env.__NEXT_TEST_MODE) { |
|
|
|
|
|
React.useEffect(() => { |
|
|
window.__NEXT_HYDRATED = true |
|
|
window.__NEXT_HYDRATED_AT = performance.now() |
|
|
window.__NEXT_HYDRATED_CB?.() |
|
|
}, []) |
|
|
} |
|
|
|
|
|
return children |
|
|
} |
|
|
|
|
|
function onDefaultTransitionIndicator() { |
|
|
|
|
|
|
|
|
return () => {} |
|
|
} |
|
|
|
|
|
const reactRootOptions: ReactDOMClient.RootOptions = { |
|
|
onDefaultTransitionIndicator: onDefaultTransitionIndicator, |
|
|
onRecoverableError, |
|
|
onCaughtError, |
|
|
onUncaughtError, |
|
|
} |
|
|
|
|
|
export type ClientInstrumentationHooks = { |
|
|
onRouterTransitionStart?: ( |
|
|
url: string, |
|
|
navigationType: 'push' | 'replace' | 'traverse' |
|
|
) => void |
|
|
} |
|
|
|
|
|
export function hydrate( |
|
|
instrumentationHooks: ClientInstrumentationHooks | null |
|
|
) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const pendingActionQueue: Promise<AppRouterActionQueue> = new Promise( |
|
|
(resolve, reject) => { |
|
|
initialServerResponse.then( |
|
|
(initialRSCPayload) => { |
|
|
|
|
|
|
|
|
setAppBuildId(initialRSCPayload.b) |
|
|
|
|
|
const initialTimestamp = Date.now() |
|
|
|
|
|
resolve( |
|
|
createMutableActionQueue( |
|
|
createInitialRouterState({ |
|
|
navigatedAt: initialTimestamp, |
|
|
initialFlightData: initialRSCPayload.f, |
|
|
initialCanonicalUrlParts: initialRSCPayload.c, |
|
|
initialParallelRoutes: new Map(), |
|
|
location: window.location, |
|
|
couldBeIntercepted: initialRSCPayload.i, |
|
|
postponed: initialRSCPayload.s, |
|
|
prerendered: initialRSCPayload.S, |
|
|
}), |
|
|
instrumentationHooks |
|
|
) |
|
|
) |
|
|
}, |
|
|
(err: Error) => reject(err) |
|
|
) |
|
|
} |
|
|
) |
|
|
|
|
|
const reactEl = ( |
|
|
<StrictModeIfEnabled> |
|
|
<HeadManagerContext.Provider value={{ appDir: true }}> |
|
|
<Root> |
|
|
<ServerRoot pendingActionQueue={pendingActionQueue} /> |
|
|
</Root> |
|
|
</HeadManagerContext.Provider> |
|
|
</StrictModeIfEnabled> |
|
|
) |
|
|
|
|
|
if (document.documentElement.id === '__next_error__') { |
|
|
let element = reactEl |
|
|
|
|
|
if (process.env.NODE_ENV !== 'production') { |
|
|
const { createRootLevelDevOverlayElement } = |
|
|
require('../next-devtools/userspace/app/client-entry') as typeof import('../next-devtools/userspace/app/client-entry') |
|
|
|
|
|
|
|
|
element = createRootLevelDevOverlayElement(element) |
|
|
} |
|
|
|
|
|
ReactDOMClient.createRoot(appElement, reactRootOptions).render(element) |
|
|
} else { |
|
|
React.startTransition(() => { |
|
|
ReactDOMClient.hydrateRoot(appElement, reactEl, { |
|
|
...reactRootOptions, |
|
|
formState: initialFormStateData, |
|
|
}) |
|
|
}) |
|
|
} |
|
|
|
|
|
|
|
|
if (process.env.NODE_ENV !== 'production') { |
|
|
const { linkGc } = |
|
|
require('./app-link-gc') as typeof import('./app-link-gc') |
|
|
linkGc() |
|
|
} |
|
|
} |
|
|
|