38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import type { LoaderArgs } from "@remix-run/node";
|
|
import { Link, useLoaderData } from "@remix-run/react";
|
|
import { getMDXComponent } from "mdx-bundler/client";
|
|
import React from "react";
|
|
import { findPost } from "~/models/posts.server";
|
|
import { getMdxFile } from "~/utils/posts.server";
|
|
|
|
export const loader = async ({ params }: LoaderArgs) => {
|
|
const id = params.id;
|
|
if (id == null) {
|
|
throw new Response(null, { status: 400 });
|
|
}
|
|
|
|
const post = await findPost(id);
|
|
if (post == null) {
|
|
throw new Response(null, { status: 404 });
|
|
}
|
|
|
|
const { code } = await getMdxFile(post.path);
|
|
return { post, code };
|
|
};
|
|
|
|
export default function () {
|
|
const { post, code } = useLoaderData<typeof loader>();
|
|
const Component = React.useMemo(() => getMDXComponent(code), [code]);
|
|
return (
|
|
<div className="m-5 h-max flex flex-col items-center">
|
|
<div className="hover:text-[#e6c2bf] text-xl">
|
|
<Link to="/blog">Go back</Link>
|
|
</div>
|
|
<div className="mt-5 text-[#ffff00] text-3xl font-bold">{post.title}</div>
|
|
<div className="mt-10 lg:w-1/3">
|
|
<Component />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|