| import React from 'react' |
| import Link from 'next/link' |
| import { createContext } from 'react' |
| import { flushSync } from 'react-dom' |
| import { createRoot } from 'react-dom/client' |
| import App, { AppContext } from 'next/app' |
| import { renderToString } from 'react-dom/server' |
|
|
| export const DummyContext = createContext(null) as React.Context<string | null> |
|
|
| export default class MyApp extends App<{ html: string }> { |
| static async getInitialProps({ Component, AppTree, ctx }: AppContext) { |
| let pageProps = {} |
|
|
| if (Component.getInitialProps) { |
| pageProps = await Component.getInitialProps(ctx) |
| } |
|
|
| let html: string |
| const toRender = <AppTree pageProps={pageProps} another="prop" /> |
|
|
| if (typeof window !== 'undefined') { |
| const el = document.createElement('div') |
| document.querySelector('body')?.appendChild(el) |
| flushSync(() => { |
| createRoot(el).render(toRender) |
| }) |
| html = el.innerHTML |
| el.remove() |
| } else { |
| html = renderToString(toRender) |
| } |
|
|
| return { pageProps, html } |
| } |
|
|
| render() { |
| const { Component, pageProps, html, router } = this.props |
| const href = router.pathname === '/' ? '/another' : '/' |
| const child = |
| html && router.pathname !== '/hello' ? ( |
| <> |
| <div dangerouslySetInnerHTML={{ __html: html }} /> |
| <Link href={href} id={href === '/' ? 'home' : 'another'}> |
| to{href} |
| </Link> |
| </> |
| ) : ( |
| <Component {...pageProps} /> |
| ) |
|
|
| return ( |
| <DummyContext.Provider value={'::ctx::'}>{child}</DummyContext.Provider> |
| ) |
| } |
| } |
|
|