4
0
forked from crowetic/commerce
commerce/pages/[...pages].tsx

75 lines
2.1 KiB
TypeScript
Raw Normal View History

2020-10-29 19:03:43 -05:00
import type {
GetStaticPathsContext,
GetStaticPropsContext,
InferGetStaticPropsType,
} from 'next'
2020-11-26 13:36:59 -03:00
import getSlug from '@lib/get-slug'
import { missingLocaleInPages } from '@lib/usage-warns'
import { Layout } from '@components/common'
import { Text } from '@components/ui'
2020-12-29 20:04:26 -05:00
import { getConfig } from '@framework/api'
import getPage from '@framework/api/operations/get-page'
import getAllPages from '@framework/api/operations/get-all-pages'
2020-11-26 13:36:59 -03:00
import { defatultPageProps } from '@lib/defaults'
2020-10-15 18:00:33 -05:00
export async function getStaticProps({
preview,
params,
2020-10-25 13:31:12 -05:00
locale,
2020-10-15 18:00:33 -05:00
}: GetStaticPropsContext<{ pages: string[] }>) {
2020-10-27 04:00:42 -05:00
const config = getConfig({ locale })
const { pages } = await getAllPages({ preview, config })
2020-10-25 13:31:12 -05:00
const path = params?.pages.join('/')
const slug = locale ? `${locale}/${path}` : path
2020-10-15 18:00:33 -05:00
const pageItem = pages.find((p) => (p.url ? getSlug(p.url) === slug : false))
2020-10-27 00:47:29 -05:00
const data =
2020-10-27 04:00:42 -05:00
pageItem &&
(await getPage({ variables: { id: pageItem.id! }, config, preview }))
2020-10-15 18:00:33 -05:00
const page = data?.page
if (!page) {
2020-10-25 13:31:12 -05:00
// We throw to make sure this fails at build time as this is never expected to happen
2020-10-15 18:00:33 -05:00
throw new Error(`Page with slug '${slug}' not found`)
}
return {
2020-11-26 13:36:59 -03:00
props: { ...defatultPageProps, pages, page },
2020-10-25 13:31:12 -05:00
revalidate: 60 * 60, // Every hour
2020-10-15 18:00:33 -05:00
}
}
2020-10-29 19:03:43 -05:00
export async function getStaticPaths({ locales }: GetStaticPathsContext) {
2020-10-15 18:00:33 -05:00
const { pages } = await getAllPages()
2020-10-29 19:21:46 -05:00
const [invalidPaths, log] = missingLocaleInPages()
const paths = pages
.map((page) => page.url)
.filter((url) => {
if (!url || !locales) return url
// If there are locales, only include the pages that include one of the available locales
if (locales.includes(getSlug(url).split('/')[0])) return url
2020-10-15 18:00:33 -05:00
2020-10-29 19:21:46 -05:00
invalidPaths.push(url)
})
log()
2020-10-29 19:03:43 -05:00
2020-10-29 19:21:46 -05:00
return {
paths,
2020-10-15 18:00:33 -05:00
// Fallback shouldn't be enabled here or otherwise this route
// will catch every page, even 404s, and we don't want that
fallback: false,
}
}
export default function Pages({
page,
}: InferGetStaticPropsType<typeof getStaticProps>) {
2020-10-15 18:42:03 -05:00
return (
<div className="max-w-2xl mx-auto py-20">
2020-11-26 13:38:37 -03:00
{page?.body && <Text html={page.body} />}
2020-10-15 18:42:03 -05:00
</div>
)
2020-10-15 18:00:33 -05:00
}
Pages.Layout = Layout