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 } from "react"; import { copyToClipboard } from "../utils"; import mermaid from "mermaid"; import LoadingIcon from "../icons/three-dots.svg"; import React from "react"; import { useDebouncedCallback, useThrottledCallback } from "use-debounce"; export function Mermaid(props: { code: string }) { const ref = useRef(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" }); const url = URL.createObjectURL(blob); const win = window.open(url); if (win) { win.onload = () => URL.revokeObjectURL(url); } } if (hasError) { return null; } return (
viewSvgInNewWindow()} > {props.code}
); } export function PreCode(props: { children: any }) { const ref = useRef(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 && ( )}
         {
            if (ref.current) {
              const code = ref.current.innerText;
              copyToClipboard(code);
            }
          }}
        >
        {props.children}
      
); } function _MarkDownContent(props: { content: string }) { return ( { const href = aProps.href || ""; const isInternal = /^\/#/i.test(href); const target = isInternal ? "_self" : aProps.target ?? "_blank"; return ; }, }} > {props.content} ); } export const MarkdownContent = React.memo(_MarkDownContent); export function Markdown( props: { content: string; loading?: boolean; fontSize?: number; parentRef?: RefObject; defaultShow?: boolean; } & React.DOMAttributes, ) { const mdRef = useRef(null); const renderedHeight = useRef(0); const renderedWidth = useRef(0); const inView = useRef(!!props.defaultShow); const [_, triggerRender] = useState(0); const checkInView = useThrottledCallback( () => { const parent = props.parentRef?.current; const md = mdRef.current; if (parent && md && !props.defaultShow) { const parentBounds = parent.getBoundingClientRect(); const twoScreenHeight = Math.max(500, parentBounds.height * 2); const mdBounds = md.getBoundingClientRect(); const parentTop = parentBounds.top - twoScreenHeight; const parentBottom = parentBounds.bottom + twoScreenHeight; const isOverlap = Math.max(parentTop, mdBounds.top) <= Math.min(parentBottom, mdBounds.bottom); inView.current = isOverlap; triggerRender(Date.now()); } if (inView.current && md) { const rect = md.getBoundingClientRect(); renderedHeight.current = Math.max(renderedHeight.current, rect.height); renderedWidth.current = Math.max(renderedWidth.current, rect.width); } // eslint-disable-next-line react-hooks/exhaustive-deps }, 300, { leading: true, trailing: true, }, ); useEffect(() => { props.parentRef?.current?.addEventListener("scroll", checkInView); checkInView(); return () => props.parentRef?.current?.removeEventListener("scroll", checkInView); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); const getSize = (x: number) => (!inView.current && x > 0 ? x : "auto"); return (
{inView.current && (props.loading ? ( ) : ( ))}
); }