mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-04 21:50:35 +03:00
Add necessary meta data to pages
This commit is contained in:
parent
66f7bd5d5c
commit
7e6d280797
5
website/meta/recordSections.tsx
Normal file
5
website/meta/recordSections.tsx
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import siteMetadata from './site.json'
|
||||||
|
|
||||||
|
const recordSections = Object.fromEntries(siteMetadata.sections.map((s) => [s.id, s]))
|
||||||
|
|
||||||
|
export default recordSections
|
|
@ -6,13 +6,35 @@ import path from 'path'
|
||||||
import Layout from '../components/layout'
|
import Layout from '../components/layout'
|
||||||
import remarkPlugins from '../plugins/index.mjs'
|
import remarkPlugins from '../plugins/index.mjs'
|
||||||
|
|
||||||
type PropsPage = {
|
import recordSection from '../meta/recordSections'
|
||||||
mdx: MDXRemoteSerializeResult
|
|
||||||
|
type ApiDetails = {
|
||||||
|
stringName: string | null
|
||||||
|
baseClass: {
|
||||||
|
title: string
|
||||||
|
slug: string
|
||||||
|
} | null
|
||||||
|
trainable: string | null
|
||||||
}
|
}
|
||||||
|
|
||||||
const PostPage = ({ mdx: mdx }: PropsPage) => {
|
type PropsPage = {
|
||||||
|
mdx: MDXRemoteSerializeResult
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TODO: This is only here for legacy support of the old code base
|
||||||
|
* It should be refactort to pass the file path and page path instead.
|
||||||
|
*/
|
||||||
|
slug: string
|
||||||
|
sectionTitle: string | null
|
||||||
|
theme: string | null
|
||||||
|
section: string
|
||||||
|
apiDetails: ApiDetails
|
||||||
|
isIndex: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
const PostPage = ({ mdx: mdx, ...props }: PropsPage) => {
|
||||||
return (
|
return (
|
||||||
<Layout>
|
<Layout {...props}>
|
||||||
<MDXRemote {...mdx} />
|
<MDXRemote {...mdx} />
|
||||||
</Layout>
|
</Layout>
|
||||||
)
|
)
|
||||||
|
@ -64,18 +86,47 @@ export const getStaticProps: GetStaticProps<PropsPage, ParsedUrlQuery> = async (
|
||||||
const listPathFile = ['docs', ...args.params.listPathPage]
|
const listPathFile = ['docs', ...args.params.listPathPage]
|
||||||
const isIndex = fs.existsSync(getPathFileWithExtension(listPathFile)) !== true
|
const isIndex = fs.existsSync(getPathFileWithExtension(listPathFile)) !== true
|
||||||
const listPathFileWithIndex = isIndex ? [...listPathFile, 'index'] : listPathFile
|
const listPathFileWithIndex = isIndex ? [...listPathFile, 'index'] : listPathFile
|
||||||
const listPathFileWithIndexAndExtension = getPathFileWithExtension(listPathFileWithIndex)
|
const pathFileWithIndexAndExtension = getPathFileWithExtension(listPathFileWithIndex)
|
||||||
|
|
||||||
const mdx = await serialize(fs.readFileSync(listPathFileWithIndexAndExtension, 'utf-8'), {
|
const mdx = await serialize(fs.readFileSync(pathFileWithIndexAndExtension, 'utf-8'), {
|
||||||
parseFrontmatter: true,
|
parseFrontmatter: true,
|
||||||
mdxOptions: {
|
mdxOptions: {
|
||||||
remarkPlugins,
|
remarkPlugins,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (!mdx.frontmatter) {
|
||||||
|
throw new Error(`Frontmatter missing for ${pathFileWithIndexAndExtension}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
const parentFolder =
|
||||||
|
listPathFileWithIndex.length > 1
|
||||||
|
? listPathFileWithIndex[listPathFileWithIndex.length - 2]
|
||||||
|
: null
|
||||||
|
const section = mdx.frontmatter.section ?? parentFolder
|
||||||
|
const sectionMeta = section ? recordSection[section] ?? null : null
|
||||||
|
const baseClass = null
|
||||||
|
const apiDetails: ApiDetails = {
|
||||||
|
stringName: mdx.frontmatter.api_string_name ?? null,
|
||||||
|
baseClass: baseClass
|
||||||
|
? {
|
||||||
|
title: mdx.frontmatter.title,
|
||||||
|
slug: mdx.frontmatter.api_base_class,
|
||||||
|
}
|
||||||
|
: null,
|
||||||
|
trainable: mdx.frontmatter.api_trainable ?? null,
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
props: {
|
props: {
|
||||||
|
...mdx.frontmatter,
|
||||||
|
slug: `/${args.params.listPathPage.join('/')}`,
|
||||||
mdx,
|
mdx,
|
||||||
|
sectionTitle: sectionMeta?.title ?? null,
|
||||||
|
theme: sectionMeta?.theme ?? null,
|
||||||
|
section: section,
|
||||||
|
apiDetails: apiDetails,
|
||||||
|
isIndex,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user