InvestWeb/components/wiki/RenderMarkdown.tsx

61 lines
2 KiB
TypeScript
Raw Normal View History

2023-02-06 06:03:33 -05:00
import Link from "next/link";
import ReactMarkdown from "react-markdown";
import rehypeHighlight from "rehype-highlight";
import rehypeRaw from "rehype-raw";
import rehypeSlug from "rehype-slug";
import remarkGfm from "remark-gfm";
interface RenderMarkdownProps {
children: string;
path: string;
currentLanguage: string;
2023-02-06 06:03:33 -05:00
}
export default function RenderMarkdown(pageprops: RenderMarkdownProps) {
2023-02-06 06:03:33 -05:00
return (
<ReactMarkdown
remarkPlugins={[remarkGfm]}
rehypePlugins={[rehypeRaw, rehypeHighlight, rehypeSlug]}
components={{
a: ({ node, ...props }) => {
// if the link is internal, reformat it; if it ends with a slash, do not apply this
let href = props.href as string;
if (!href.endsWith("/") && !href.startsWith("http")) {
if (href.startsWith("/wiki/")) {
href = `/wiki/${pageprops.currentLanguage}${href.slice(5)}`;
} else {
// if single relative
href = `/wiki/${pageprops.currentLanguage}/${pageprops.path}/${href}`;
}
}
2023-02-06 06:03:33 -05:00
return (
<Link legacyBehavior href={href as string}>
<a>{props.children ? props.children[0] : href}</a>
2023-02-06 06:03:33 -05:00
</Link>
);
},
img: ({ node, ...props }) => {
// if image is internal (relative), prefix it with the current page's path
let src = props.src as string;
if (!src.startsWith("http") && !src.startsWith("/")) {
src = `/img/wiki/${pageprops.path}/${src}`;
}
return (
<div className="flex w-full flex-col items-center justify-center">
<img
className="mb-2"
src={src}
alt={props.alt as string}
title={props.title as string}
/>
<p> {props.title as string} </p>
</div>
);
},
2023-02-06 06:03:33 -05:00
}}
>
{pageprops.children}
2023-02-06 06:03:33 -05:00
</ReactMarkdown>
);
}