mirror of
https://github.com/supabase/supabase.git
synced 2026-06-22 21:16:29 +08:00
31 lines
952 B
TypeScript
31 lines
952 B
TypeScript
import clientLibsCommonSections from '~/../../spec/common-client-libs-sections.json'
|
|
import typeSpec from '~/../../spec/enrichments/tsdoc_v1/combined.json'
|
|
// @ts-expect-error
|
|
import spec from '~/../../spec/supabase_js_v1.yml' assert { type: 'yml' }
|
|
import RefSectionHandler from '~/components/reference/RefSectionHandler'
|
|
import { flattenSections } from '~/lib/helpers'
|
|
import handleRefGetStaticPaths from '~/lib/mdx/handleRefStaticPaths'
|
|
import handleRefStaticProps from '~/lib/mdx/handleRefStaticProps'
|
|
|
|
const sections = flattenSections(clientLibsCommonSections)
|
|
|
|
export default function JSReference(props) {
|
|
return (
|
|
<RefSectionHandler
|
|
sections={sections}
|
|
spec={spec}
|
|
typeSpec={typeSpec}
|
|
pageProps={props}
|
|
type="client-lib"
|
|
/>
|
|
)
|
|
}
|
|
|
|
export async function getStaticProps() {
|
|
return handleRefStaticProps(sections, '/javascript/v1')
|
|
}
|
|
|
|
export function getStaticPaths() {
|
|
return handleRefGetStaticPaths()
|
|
}
|