mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import dynamic from 'next/dynamic';
|
|
import { MyMatters } from 'types';
|
|
import { renderToString } from 'react-dom/server';
|
|
import { getHeadings } from 'lib/utils';
|
|
import PostTOC from 'components/post/PostTOC';
|
|
|
|
const Footer = dynamic(() => import('components/Footer'));
|
|
const HeadBar = dynamic(() => import('components/NavBar'));
|
|
const PostComment = dynamic(() => import('components/post/PostComment'));
|
|
|
|
interface Props extends MyMatters {
|
|
showTOC?: boolean;
|
|
children: React.ReactElement;
|
|
}
|
|
|
|
const MDXLayout = ({ title, date, showTOC = true, children }: Props) => {
|
|
const contentString = renderToString(children);
|
|
const headings = getHeadings(contentString);
|
|
|
|
return (
|
|
<>
|
|
<HeadBar />
|
|
|
|
<main id="article" className="max-w-5xl px-4 mx-auto my-10">
|
|
<article>
|
|
<h1>{title}</h1>
|
|
|
|
<time>{date}</time>
|
|
|
|
{showTOC && <PostTOC headings={headings} />}
|
|
|
|
{children}
|
|
|
|
<PostComment />
|
|
</article>
|
|
</main>
|
|
|
|
<Footer />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default MDXLayout;
|