-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path_app.tsx
273 lines (242 loc) · 7.33 KB
/
_app.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
import {
type ComponentProps,
Suspense,
forwardRef,
startTransition,
useEffect,
useMemo,
useState,
} from 'react'
import {
FillLevelProvider,
type NavigationContextLinkProps,
NavigationContextProvider,
type NavigationContextValue,
GlobalStyle as PluralGlobalStyle,
theme as honorableTheme,
styledTheme,
} from '@pluralsh/design-system'
import { CssBaseline, ThemeProvider } from 'honorable'
import type { AppProps } from 'next/app'
import NextLink from 'next/link'
import { useRouter } from 'next/router'
import { until } from '@open-draft/until'
import { MarkdocContextProvider } from '@pluralsh/design-system/dist/markdoc'
import { SSRProvider } from '@react-aria/ssr'
import styled, { ThemeProvider as StyledThemeProvider } from 'styled-components'
import { SWRConfig } from 'swr'
import '@src/styles/globals.css'
import { BreakpointProvider } from '@src/components/Breakpoints'
import DocSearchStyles from '@src/components/DocSearchStyles'
import ExternalScripts from '@src/components/ExternalScripts'
import { FullNav } from '@src/components/FullNav'
import {
GITHUB_DATA_URL,
getGithubDataServer,
isGithubRepoData,
} from '@src/components/GithubStars'
import GlobalStyles from '@src/components/GlobalStyles'
import { usePosthog } from '@src/components/hooks/usePosthog'
import HtmlHead from '@src/components/HtmlHead'
import MainContent from '@src/components/MainContent'
import PageFooter from '@src/components/PageFooter'
import {
ContentContainer,
PageGrid,
SideCarContainer,
SideNavContainer,
} from '@src/components/PageGrid'
import { PageHeader } from '@src/components/PageHeader'
import { PagePropsContext } from '@src/components/PagePropsContext'
import { TableOfContents } from '@src/components/TableOfContents'
import {
META_DESCRIPTION,
PAGE_TITLE_PREFIX,
PAGE_TITLE_SUFFIX,
ROOT_TITLE,
} from '@src/consts'
import { NavDataProvider } from '@src/contexts/NavDataContext'
import { ReposProvider } from '@src/contexts/ReposContext'
import { type Repo, getRepos, reposCache } from '@src/data/getRepos'
import { getNavData } from '@src/NavData'
import type { MarkdocNextJsPageProps } from '@markdoc/next.js'
export type MyPageProps = MarkdocNextJsPageProps & {
displayTitle?: string
metaTitle?: string
displayDescription?: string
metaDescription?: string
repo?: Repo | null
tableOfContents?: any
}
type MyAppProps = AppProps<MyPageProps | undefined> & {
errors: Error[]
repos: Repo[]
swrConfig: ComponentProps<typeof SWRConfig>['value']
}
export type MarkdocHeading = {
id?: string
level?: number
title?: string
}
const docsStyledTheme = { ...styledTheme, ...{ docs: { topNavHeight: 72 } } }
function collectHeadings(node, sections: MarkdocHeading[] = []) {
if (node) {
if (node?.name === 'Heading') {
const title = node.children[0]
if (typeof title === 'string') {
sections.push({
...node.attributes,
title,
})
}
}
if (node?.children) {
for (const child of node.children) {
collectHeadings(child, sections)
}
}
}
return sections as MarkdocHeading[]
}
const Page = styled.div(() => ({}))
const useNavigate = () => {
const router = useRouter()
return (url) => {
router.push(url)
}
}
const usePathname = () => {
const router = useRouter()
return router.basePath + (router.asPath.split(/[?#]/)[0] || router.pathname)
}
const Link = forwardRef(
({ href, ...props }: NavigationContextLinkProps, ref) => (
<NextLink
ref={ref}
href={href ?? ''}
{...props}
/>
)
)
function App({ Component, repos = [], pageProps = {}, swrConfig }: MyAppProps) {
usePosthog()
const router = useRouter()
const markdoc = pageProps?.markdoc
const [isClient, setIsClient] = useState(false)
const [navData, setNavData] = useState(() => getNavData({ repos }))
useEffect(() => {
setIsClient(true)
startTransition(() => {
setNavData(getNavData({ repos }))
})
}, [repos])
const { metaTitle, metaDescription } = pageProps
const displayTitle = pageProps?.displayTitle || markdoc?.frontmatter?.title
const displayDescription =
pageProps?.displayDescription || markdoc?.frontmatter?.description
const headProps = {
title:
metaTitle || displayTitle
? `${PAGE_TITLE_PREFIX}${displayTitle}${PAGE_TITLE_SUFFIX}`
: ROOT_TITLE,
description:
metaDescription ||
(router.pathname === '/'
? META_DESCRIPTION
: markdoc?.frontmatter?.description || META_DESCRIPTION),
}
const toc = pageProps.tableOfContents
? pageProps.tableOfContents
: pageProps?.markdoc?.content
? collectHeadings(pageProps?.markdoc.content)
: []
const app = (
<>
<CssBaseline />
<PluralGlobalStyle />
<GlobalStyles />
<DocSearchStyles />
<PagePropsContext.Provider value={pageProps}>
<HtmlHead {...headProps} />
<PageHeader />
<Page>
<PageGrid>
<SideNavContainer>
{isClient ? (
<Suspense fallback={<div>Loading navigation...</div>}>
<FullNav desktop />
</Suspense>
) : (
<FullNav desktop />
)}
</SideNavContainer>
<ContentContainer>
<MainContent
Component={Component}
title={displayTitle}
description={displayDescription}
/>
<PageFooter />
</ContentContainer>
<SideCarContainer>
{isClient ? (
<Suspense fallback={<div>Loading table of contents...</div>}>
<TableOfContents toc={toc} />
</Suspense>
) : (
<TableOfContents toc={toc} />
)}
</SideCarContainer>
</PageGrid>
</Page>
<ExternalScripts />
</PagePropsContext.Provider>
</>
)
const navContextVal = useMemo<NavigationContextValue>(
() => ({ useNavigate, usePathname, Link }),
[]
)
return (
<SSRProvider>
<MarkdocContextProvider value={{ variant: 'docs' }}>
<NavigationContextProvider value={navContextVal}>
<SWRConfig value={swrConfig}>
<ReposProvider value={repos}>
<NavDataProvider value={navData}>
<BreakpointProvider>
<ThemeProvider theme={honorableTheme}>
<StyledThemeProvider theme={docsStyledTheme}>
<FillLevelProvider value={0}>{app}</FillLevelProvider>
</StyledThemeProvider>
</ThemeProvider>
</BreakpointProvider>
</NavDataProvider>
</ReposProvider>
</SWRConfig>
</NavigationContextProvider>
</MarkdocContextProvider>
</SSRProvider>
)
}
App.getInitialProps = async () => {
const { data: repos, error: reposError } = await until(() => getRepos())
const { data: githubData, error: githubError } = await until(() =>
getGithubDataServer()
)
const swrFallback = {}
if (isGithubRepoData(githubData)) {
swrFallback[GITHUB_DATA_URL] = githubData
}
return {
repos: repos || reposCache.filtered,
swrConfig: {
fallback: swrFallback,
},
errors: [
...(reposError ? [reposError] : []),
...(githubError ? [githubError] : []),
],
}
}
export default App