oxen-website/pages/[page].tsx

110 lines
2.5 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 {
2021-02-18 04:07:53 +01:00
params: { page: string; isRoadmap?: boolean };
2021-02-10 09:38:27 +01:00
}
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-18 04:07:53 +01:00
// Roadmap page is special 👁️👄👁️
if (SideMenuItem[id] == [SideMenuItem.ROADMAP]) {
return {
props: {
page: null,
isRoadmap: true,
},
revalidate: 60,
};
}
2021-03-02 06:02:21 +01:00
const cms = new CmsApi();
const page = await cms.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-18 04:07:53 +01:00
isRoadmap: false,
2021-02-10 09:38:27 +01:00
},
revalidate: 60,
};
}
2021-02-18 04:07:53 +01:00
function Page({
page,
isRoadmap,
}: {
page: ISplitPage | null;
isRoadmap?: boolean;
}) {
const dispatch = useDispatch();
2021-02-10 09:38:27 +01:00
useEffect(() => {
dispatch(setPageType(PageType.NORMAL));
}, []);
return (
<>
<Head>
2021-02-18 04:07:53 +01:00
<title>
{generateTitle(
isRoadmap
? NAVIGATION.SIDE_MENU_ITEMS[SideMenuItem.ROADMAP].label
: 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-03-02 06:02:21 +01:00
<div className="relative flex items-center justify-center w-full h-full pt-3 bg-gradient-to-bl from-hyper to-blush">
2021-02-18 04:07:53 +01:00
<img
2021-03-02 06:02:21 +01:00
style={{ maxHeight: '33vh' }}
src={page?.hero?.imageUrl}
className="object-contain w-full"
2021-02-18 04:07:53 +01:00
/>
</div>
2021-02-11 02:54:53 +01:00
2021-03-02 06:02:21 +01:00
<Contained>
<h1 className="mt-12 mb-4 text-4xl font-bold leading-none text-primary font-prompt">
{page?.title}
</h1>
2021-02-19 05:05:29 +01:00
2021-03-02 06:02:21 +01:00
<div className="mb-10">
<RichBody body={page?.body} />
</div>
</Contained>
2021-02-11 01:38:40 +01:00
</div>
2021-02-10 09:38:27 +01:00
</>
);
}
export default Page;