mirror of
https://github.com/supabase/supabase.git
synced 2026-06-22 23:15:18 +08:00
Before: All pages have the Home nav menu in static HTML, which is blown away and replaced by the proper nav menu upon hydration. This leads to jankiness when the page first loads and an unpleasant flash of the wrong nav menu (especially obvious on the JavaScript ref page, which takes a long time to process and rerender the nav). Now: All pages have their correct nav menu in static HTML.
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { MenuId } from '~/components/Navigation/NavigationMenu/NavigationMenu'
|
|
import RefSectionHandler from '~/components/reference/RefSectionHandler'
|
|
import { flattenSections } from '~/lib/helpers'
|
|
import handleRefGetStaticPaths from '~/lib/mdx/handleRefStaticPaths'
|
|
import handleRefStaticProps from '~/lib/mdx/handleRefStaticProps'
|
|
import { gen_v3 } from '~/lib/refGenerator/helpers'
|
|
|
|
import apiCommonSections from '~/spec/common-api-sections.json' assert { type: 'json' }
|
|
import specFile from '~/spec/transforms/api_v0_openapi_deparsed.json' assert { type: 'json' }
|
|
|
|
// @ts-ignore
|
|
const generatedSpec = gen_v3(specFile, 'wat', { apiUrl: 'apiv0' })
|
|
const sections = flattenSections(apiCommonSections)
|
|
const libraryPath = '/api'
|
|
|
|
export default function Config(props) {
|
|
return (
|
|
<RefSectionHandler
|
|
menuId={MenuId.RefApi}
|
|
sections={sections}
|
|
spec={generatedSpec}
|
|
pageProps={props}
|
|
type="api"
|
|
/>
|
|
)
|
|
}
|
|
|
|
export async function getStaticProps() {
|
|
return handleRefStaticProps(sections, libraryPath)
|
|
}
|
|
|
|
export async function getStaticPaths() {
|
|
return handleRefGetStaticPaths(sections)
|
|
}
|