import {
GetStaticPathsResult,
GetStaticPropsContext,
GetStaticPropsResult,
} from "next";
import {
Page as MakeswiftPage,
PageProps as MakeswiftPageProps,
Makeswift,
} from "@makeswift/runtime/next";
import { client } from "@/makeswift/client";
import "@/makeswift/components";
type ParsedUrlQuery = { path?: string[] };
export async function getStaticPaths(): Promise<
GetStaticPathsResult<ParsedUrlQuery>
> {
const pages = await client.getPages().toArray();
return {
paths: pages.map((page) => ({
params: {
path: page.path.split("/").filter((segment) => segment !== ""),
},
})),
fallback: "blocking",
};
}
export type PageProps = MakeswiftPageProps & {
previewMode: boolean;
};
export async function getStaticProps({
params,
previewData,
}: GetStaticPropsContext<ParsedUrlQuery>): Promise<
GetStaticPropsResult<PageProps>
> {
const path = "/" + (params?.path ?? []).join("/");
const snapshot = await client.getPageSnapshot(path, {
siteVersion: Makeswift.getSiteVersion(previewData),
});
if (snapshot == null) return { notFound: true };
return {
props: {
snapshot,
previewMode: Makeswift.getPreviewMode(previewData),
},
};
}
export default function Page({ snapshot }: MakeswiftPageProps) {
return <MakeswiftPage snapshot={snapshot} />;
}