* fix: clean up getThemeProps, use better fallbacks for unknown themes * fix: fallback to unsupported theme color_mode, pass theme props into <ThemeProvider />
82 lines
2.5 KiB
TypeScript
82 lines
2.5 KiB
TypeScript
import React, { useEffect } from 'react'
|
|
import App from 'next/app'
|
|
import type { AppProps, AppContext } from 'next/app'
|
|
import Head from 'next/head'
|
|
import { useTheme, ThemeProvider } from '@primer/components'
|
|
import { defaultComponentThemeProps, getThemeProps } from 'components/lib/getThemeProps'
|
|
|
|
import '../stylesheets/index.scss'
|
|
|
|
import events from 'components/lib/events'
|
|
import experiment from 'components/lib/experiment'
|
|
import { LanguagesContext, LanguagesContextT } from 'components/context/LanguagesContext'
|
|
|
|
type MyAppProps = AppProps & {
|
|
csrfToken: string
|
|
themeProps: typeof defaultComponentThemeProps
|
|
languagesContext: LanguagesContextT
|
|
}
|
|
const MyApp = ({ Component, pageProps, csrfToken, themeProps, languagesContext }: MyAppProps) => {
|
|
useEffect(() => {
|
|
events()
|
|
experiment()
|
|
}, [])
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<meta charSet="utf-8" />
|
|
<title>GitHub Documentation</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="alternate icon" type="image/png" href="/assets/images/site/favicon.png" />
|
|
<link rel="icon" type="image/svg+xml" href="/assets/images/site/favicon.svg" />
|
|
|
|
<meta
|
|
name="google-site-verification"
|
|
content="OgdQc0GZfjDI52wDv1bkMT-SLpBUo_h5nn9mI9L22xQ"
|
|
/>
|
|
<meta
|
|
name="google-site-verification"
|
|
content="c1kuD-K2HIVF635lypcsWPoD4kilo5-jA_wBFyT4uMY"
|
|
/>
|
|
|
|
<meta name="csrf-token" content={csrfToken} />
|
|
</Head>
|
|
<ThemeProvider dayScheme={themeProps.dayTheme} nightScheme={themeProps.nightTheme}>
|
|
<LanguagesContext.Provider value={languagesContext}>
|
|
<SetTheme themeProps={themeProps} />
|
|
<Component {...pageProps} />
|
|
</LanguagesContext.Provider>
|
|
</ThemeProvider>
|
|
</>
|
|
)
|
|
}
|
|
|
|
MyApp.getInitialProps = async (appContext: AppContext) => {
|
|
const { ctx } = appContext
|
|
// calls page's `getInitialProps` and fills `appProps.pageProps`
|
|
const appProps = await App.getInitialProps(appContext)
|
|
const req: any = ctx.req
|
|
|
|
return {
|
|
...appProps,
|
|
themeProps: getThemeProps(req),
|
|
csrfToken: req?.csrfToken?.() || '',
|
|
languagesContext: { languages: req.context.languages },
|
|
}
|
|
}
|
|
|
|
const SetTheme = ({ themeProps }: { themeProps: typeof defaultComponentThemeProps }) => {
|
|
// Cause primer/components to re-evaluate the 'auto' color mode on client side render
|
|
const { setColorMode } = useTheme()
|
|
useEffect(() => {
|
|
setTimeout(() => {
|
|
setColorMode(themeProps.colorMode as any)
|
|
})
|
|
}, [])
|
|
return null
|
|
}
|
|
|
|
export default MyApp
|