|
|
'use client' |
|
|
|
|
|
import type { ParsedUrlQuery } from 'querystring' |
|
|
import { InvariantError } from '../../shared/lib/invariant-error' |
|
|
|
|
|
import type { Params } from '../../server/request/params' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function ClientPageRoot({ |
|
|
Component, |
|
|
searchParams, |
|
|
params, |
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
|
promises, |
|
|
}: { |
|
|
Component: React.ComponentType<any> |
|
|
searchParams: ParsedUrlQuery |
|
|
params: Params |
|
|
promises?: Array<Promise<any>> |
|
|
}) { |
|
|
if (typeof window === 'undefined') { |
|
|
const { workAsyncStorage } = |
|
|
require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external') |
|
|
|
|
|
let clientSearchParams: Promise<ParsedUrlQuery> |
|
|
let clientParams: Promise<Params> |
|
|
|
|
|
|
|
|
const store = workAsyncStorage.getStore() |
|
|
if (!store) { |
|
|
throw new InvariantError( |
|
|
'Expected workStore to exist when handling searchParams in a client Page.' |
|
|
) |
|
|
} |
|
|
|
|
|
const { createSearchParamsFromClient } = |
|
|
require('../../server/request/search-params') as typeof import('../../server/request/search-params') |
|
|
clientSearchParams = createSearchParamsFromClient(searchParams, store) |
|
|
|
|
|
const { createParamsFromClient } = |
|
|
require('../../server/request/params') as typeof import('../../server/request/params') |
|
|
clientParams = createParamsFromClient(params, store) |
|
|
|
|
|
return <Component params={clientParams} searchParams={clientSearchParams} /> |
|
|
} else { |
|
|
const { createRenderSearchParamsFromClient } = |
|
|
require('../request/search-params.browser') as typeof import('../request/search-params.browser') |
|
|
const clientSearchParams = createRenderSearchParamsFromClient(searchParams) |
|
|
const { createRenderParamsFromClient } = |
|
|
require('../request/params.browser') as typeof import('../request/params.browser') |
|
|
const clientParams = createRenderParamsFromClient(params) |
|
|
|
|
|
return <Component params={clientParams} searchParams={clientSearchParams} /> |
|
|
} |
|
|
} |
|
|
|