123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- import ReactMarkdown from "react-markdown";
- import "katex/dist/katex.min.css";
- import RemarkMath from "remark-math";
- import RemarkBreaks from "remark-breaks";
- import RehypeKatex from "rehype-katex";
- import RemarkGfm from "remark-gfm";
- import RehypeHighlight from "rehype-highlight";
- import { useRef, useState, RefObject, useEffect, useMemo } from "react";
- import { copyToClipboard } from "../utils";
- import mermaid from "mermaid";
- import LoadingIcon from "../icons/three-dots.svg";
- import React from "react";
- import { useDebouncedCallback } from "use-debounce";
- import { showImageModal } from "./ui-lib";
- export function Mermaid(props: { code: string }) {
- const ref = useRef<HTMLDivElement>(null);
- const [hasError, setHasError] = useState(false);
- useEffect(() => {
- if (props.code && ref.current) {
- mermaid
- .run({
- nodes: [ref.current],
- suppressErrors: true,
- })
- .catch((e) => {
- setHasError(true);
- console.error("[Mermaid] ", e.message);
- });
- }
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [props.code]);
- function viewSvgInNewWindow() {
- const svg = ref.current?.querySelector("svg");
- if (!svg) return;
- const text = new XMLSerializer().serializeToString(svg);
- const blob = new Blob([text], { type: "image/svg+xml" });
- showImageModal(URL.createObjectURL(blob));
- }
- if (hasError) {
- return null;
- }
- return (
- <div
- className="no-dark mermaid"
- style={{
- cursor: "pointer",
- overflow: "auto",
- }}
- ref={ref}
- onClick={() => viewSvgInNewWindow()}
- >
- {props.code}
- </div>
- );
- }
- export function PreCode(props: { children: any }) {
- const ref = useRef<HTMLPreElement>(null);
- const refText = ref.current?.innerText;
- const [mermaidCode, setMermaidCode] = useState("");
- const renderMermaid = useDebouncedCallback(() => {
- if (!ref.current) return;
- const mermaidDom = ref.current.querySelector("code.language-mermaid");
- if (mermaidDom) {
- setMermaidCode((mermaidDom as HTMLElement).innerText);
- }
- }, 600);
- useEffect(() => {
- setTimeout(renderMermaid, 1);
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [refText]);
- return (
- <>
- {mermaidCode.length > 0 && (
- <Mermaid code={mermaidCode} key={mermaidCode} />
- )}
- <pre ref={ref}>
- <span
- className="copy-code-button"
- onClick={() => {
- if (ref.current) {
- const code = ref.current.innerText;
- copyToClipboard(code);
- }
- }}
- ></span>
- {props.children}
- </pre>
- </>
- );
- }
- function escapeDollarNumber(text: string) {
- let escapedText = "";
- for (let i = 0; i < text.length; i += 1) {
- let char = text[i];
- const nextChar = text[i + 1] || " ";
- if (char === "$" && nextChar >= "0" && nextChar <= "9") {
- char = "\\$";
- }
- escapedText += char;
- }
- return escapedText;
- }
- function _MarkDownContent(props: { content: string }) {
- const escapedContent = useMemo(
- () => escapeDollarNumber(props.content),
- [props.content],
- );
- return (
- <ReactMarkdown
- remarkPlugins={[RemarkMath, RemarkGfm, RemarkBreaks]}
- rehypePlugins={[
- RehypeKatex,
- [
- RehypeHighlight,
- {
- detect: false,
- ignoreMissing: true,
- },
- ],
- ]}
- components={{
- pre: PreCode,
- p: (pProps) => <p {...pProps} dir="auto" />,
- a: (aProps) => {
- const href = aProps.href || "";
- const isInternal = /^\/#/i.test(href);
- const target = isInternal ? "_self" : aProps.target ?? "_blank";
- return <a {...aProps} target={target} />;
- },
- }}
- >
- {escapedContent}
- </ReactMarkdown>
- );
- }
- export const MarkdownContent = React.memo(_MarkDownContent);
- export function Markdown(
- props: {
- content: string;
- loading?: boolean;
- fontSize?: number;
- parentRef?: RefObject<HTMLDivElement>;
- defaultShow?: boolean;
- } & React.DOMAttributes<HTMLDivElement>,
- ) {
- const mdRef = useRef<HTMLDivElement>(null);
- return (
- <div
- className="markdown-body"
- style={{
- fontSize: `${props.fontSize ?? 14}px`,
- }}
- ref={mdRef}
- onContextMenu={props.onContextMenu}
- onDoubleClickCapture={props.onDoubleClickCapture}
- dir="auto"
- >
- {props.loading ? (
- <LoadingIcon />
- ) : (
- <MarkdownContent content={props.content} />
- )}
- </div>
- );
- }
|