import { GetServerSideProps } from 'next' import { MainContextT, MainContext, getMainContext, addUINamespaces, } from '@/frame/components/context/MainContext' import { AutomatedPage } from '@/automated-pipelines/components/AutomatedPage' import { AutomatedPageContext, AutomatedPageContextT, getAutomatedPageContextFromRequest, } from '@/automated-pipelines/components/AutomatedPageContext' import { Previews } from '@/graphql/components/Previews' import { PreviewT } from '@/graphql/components/types' type Props = { mainContext: MainContextT schema: PreviewT[] automatedPageContext: AutomatedPageContextT } export default function GraphqlPreviews({ mainContext, schema, automatedPageContext }: Props) { const content = return ( {content} ) } export const getServerSideProps: GetServerSideProps = async (context) => { const { getPreviews } = await import('@/graphql/lib/index') const { getAutomatedPageMiniTocItems } = await import('@/frame/lib/get-mini-toc-items') const req = context.req as any const res = context.res as any const currentVersion = context.query.versionId as string const schema = getPreviews(currentVersion) as PreviewT[] if (!schema) throw new Error(`No graphql preview schema found for ${currentVersion}`) // Gets the miniTocItems in the article context. At this point it will only // include miniTocItems that exist in Markdown pages in // content/graphql/reference/* const automatedPageContext = getAutomatedPageContextFromRequest(req) const titles = schema.map((item) => item.title) const changelogMiniTocItems = await getAutomatedPageMiniTocItems(titles, req.context.context, 2) // Update the existing context to include the miniTocItems from GraphQL automatedPageContext.miniTocItems.push(...changelogMiniTocItems) const mainContext = await getMainContext(req, res) addUINamespaces(req, mainContext.data.ui, ['graphql']) return { props: { mainContext, automatedPageContext, schema, }, } }