oxen-website/pages/[page].tsx

91 lines
2.2 KiB
TypeScript
Raw Normal View History

2021-02-10 09:38:27 +01:00
// [slug].js
import Head from 'next/head';
import React, { useEffect } from 'react';
import { useDispatch } from 'react-redux';
2021-02-11 02:54:53 +01:00
import { Contained } from '../components/Contained';
import { RichBody } from '../components/RichBody';
2021-02-11 01:38:40 +01:00
import { NAVIGATION } from '../constants';
import { CmsApi, unslugify } from '../services/cms';
import { PageType, setPageType, SideMenuItem } from '../state/navigation';
2021-02-10 09:38:27 +01:00
import { ISplitPage } from '../types/cms';
import { generateTitle } from '../utils/metadata';
interface IPath {
params: { page: string };
}
export async function getStaticPaths() {
// Get paths to all pages
2021-02-11 01:38:40 +01:00
// Hardcoded in navigation constants.
// Contentful can edit entries but cannot add/remove
// without touching code.
const paths: IPath[] = Object.values(NAVIGATION.SIDE_MENU_ITEMS).map(
item => ({
params: { page: item.href },
}),
);
2021-02-10 09:38:27 +01:00
2021-02-11 02:54:53 +01:00
return { paths, fallback: true };
2021-02-10 09:38:27 +01:00
}
export async function getStaticProps({ params }) {
2021-02-11 01:38:40 +01:00
const id = unslugify(String(params?.page) ?? '');
2021-02-10 09:38:27 +01:00
2021-02-11 01:38:40 +01:00
const api = new CmsApi();
const page = await api.fetchPageById(SideMenuItem[id]);
2021-02-10 09:38:27 +01:00
if (!page) {
return { notFound: true };
}
return {
props: {
2021-02-11 01:38:40 +01:00
page,
2021-02-10 09:38:27 +01:00
},
revalidate: 60,
};
}
function Page({ page }: { page: ISplitPage }) {
const dispatch = useDispatch();
2021-02-11 02:54:53 +01:00
console.log('[page] ➡️ page:', page);
2021-02-10 09:38:27 +01:00
useEffect(() => {
dispatch(setPageType(PageType.NORMAL));
}, []);
return (
<>
<Head>
2021-02-11 01:38:40 +01:00
<title>{generateTitle(page?.label)}</title>
2021-02-10 09:38:27 +01:00
</Head>
2021-02-12 04:14:34 +01:00
<div className="bg-alt">
2021-02-11 02:54:53 +01:00
<div className="aspect-w-16 aspect-h-10">
<div className="flex items-center justify-center bg-gradient-to-br from-blush to-hyper">
<img
style={{ maxHeight: '90%' }}
src={page?.hero?.imageUrl}
className="w-8/12 py-12"
/>
</div>
2021-02-11 01:38:40 +01:00
</div>
2021-02-11 02:54:53 +01:00
<Contained>
2021-02-12 04:14:34 +01:00
<h1 className="w-10/12 mt-6 mb-4 text-4xl font-bold leading-none text-primary font-prompt">
2021-02-11 02:54:53 +01:00
{page?.title}
</h1>
2021-02-12 01:06:54 +01:00
<div className="mb-10">
<RichBody body={page?.body} />
</div>
2021-02-11 02:54:53 +01:00
</Contained>
2021-02-11 01:38:40 +01:00
</div>
2021-02-10 09:38:27 +01:00
</>
);
}
export default Page;