feat: add posts
This commit is contained in:
@@ -1,20 +1,37 @@
|
||||
import { Link } from "@remix-run/react";
|
||||
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 = () => {
|
||||
throw new Response(null, {
|
||||
status: 404,
|
||||
});
|
||||
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">
|
||||
<div className="flex flex-col items-center text-[#ffff00] text-3xl font-bold">
|
||||
foo
|
||||
</div>
|
||||
<div className="mt-10 flex flex-col items-end hover:text-[#e6c2bf] text-xl">
|
||||
<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>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user