Files
page-assist/src/components/Common/Markdown.tsx

62 lines
1.8 KiB
TypeScript
Raw Normal View History

2024-02-01 13:40:44 +05:30
import remarkGfm from "remark-gfm"
import remarkMath from "remark-math"
import ReactMarkdown, { Options } from "react-markdown"
2024-02-01 23:48:40 +05:30
import "property-information"
2024-02-01 13:40:44 +05:30
import React from "react"
2024-02-01 23:48:40 +05:30
import { Tooltip } from "antd"
import { CheckIcon, ClipboardIcon } from "lucide-react"
import { useTranslation } from "react-i18next"
2024-02-01 13:40:44 +05:30
import { FC, memo } from "react"
import { CodeBlock } from "./CodeBlock"
export const MemoizedReactMarkdown: FC<Options> = memo(
ReactMarkdown,
(prevProps, nextProps) =>
prevProps.children === nextProps.children &&
prevProps.className === nextProps.className
)
2024-02-01 13:40:44 +05:30
export default function Markdown({ message }: { message: string }) {
2024-02-01 13:40:44 +05:30
return (
<React.Fragment>
<MemoizedReactMarkdown
className="prose break-words dark:prose-invert prose-p:leading-relaxed prose-pre:p-0 dark:prose-dark"
remarkPlugins={[remarkGfm, remarkMath]}
2024-02-01 13:40:44 +05:30
components={{
code({ node, inline, className, children, ...props }) {
const match = /language-(\w+)/.exec(className || "")
return !inline ? (
<CodeBlock
language={match ? match[1] : ""}
value={String(children).replace(/\n$/, "")}
/>
2024-02-01 13:40:44 +05:30
) : (
<code className={`${className} font-semibold`} {...props}>
{children}
</code>
)
},
a({ node, ...props }) {
return (
<a
target="_blank"
rel="noreferrer"
className="text-blue-500 text-sm hover:underline"
{...props}>
{props.children}
</a>
)
},
p({ children }) {
return <p className="mb-2 last:mb-0">{children}</p>
}
}}>
{message}
</MemoizedReactMarkdown>
2024-02-01 13:40:44 +05:30
</React.Fragment>
)
}