Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node. #562

Closed
Nquq opened this issue Aug 9, 2023 · 4 comments

Comments

@Nquq
Copy link

Nquq commented Aug 9, 2023

Hello!

I have a problem with the mermaid plugin. When I start erasing the word 'mermaid' in the editor, I get an error like in the screenshot.

image

here is my code component

export const Code = ({ inline, children = [], className, ...props }: any) => {
    const mermaidGraphId = useRef(`mermaidGraph${randomId()}`);
    const code = getCode(children);
    const mermaidGraph = useRef(null);

    const handle = useCallback(async () => {
        if (mermaidGraph.current) {
            try {
                const { svg } = await mermaid.render(
                    mermaidGraphId.current,
                    code
                );
                mermaidGraph.current.innerHTML = svg;
            } catch (error) {
                mermaidGraph.current.innerHTML = error;
            }
        }
    }, [mermaidGraph, code]);

    useEffect(() => {
        handle();
    }, [handle]);

    if (
        typeof code === 'string' &&
        typeof className === 'string' &&
        /^language-mermaid/.test(className.toLocaleLowerCase())
    ) {
        return (
            <code ref={mermaidGraph}>
                <code id={mermaidGraphId.current} style={{ display: 'none' }} />
            </code>
        );
    }

    return <code className={String(className)}>{children}</code>;
};

and MDEditor component

<MDEditor
     height={400}
     value={text}
     onChange={text => {
         setText(text);
         setFieldValue('text', text);
      }}
      previewOptions={{
          components: {
              code: Code,
              img: Image
           }
      }}
/>
@jaywcjlove
Copy link
Member

@Nquq Did not reproduce your error.

```jsx mdx:preview
import React, { useState, useRef, useEffect } from "react";
import ReactDOM from "react-dom";
import MDEditor from "@uiw/react-md-editor";
import mermaid from "mermaid";
const mdMermaid = `The following are some examples of the diagrams, charts and graphs that can be made using Mermaid and the Markdown-inspired text specific to it.
\`\`\`mermaid
graph TD
A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
\`\`\`
\`\`\`mermaid
sequenceDiagram
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
\`\`\`
`;
const randomid = () => parseInt(String(Math.random() * 1e15), 10).toString(36);
const Code = ({ inline, children = [], className, ...props }) => {
const demoid = useRef(`dome${randomid()}`);
const code = getCode(children);
const demo = useRef(null);
useEffect(() => {
if (demo.current) {
try {
const str = mermaid.render(demoid.current, code, () => null, demo.current);
// @ts-ignore
demo.current.innerHTML = str;
} catch (error) {
// @ts-ignore
demo.current.innerHTML = error;
}
}
}, [code, demo]);
if (
typeof code === "string" && typeof className === "string" &&
/^language-mermaid/.test(className.toLocaleLowerCase())
) {
return (
<code ref={demo}>
<code id={demoid.current} style={{ display: "none" }} />
</code>
);
}
return <code className={String(className)}>{children}</code>;
};
const getCode = (arr = []) => arr.map((dt) => {
if (typeof dt === "string") {
return dt;
}
if (dt.props && dt.props.children) {
return getCode(dt.props.children);
}
return false;
}).filter(Boolean).join("");
export default function App() {
const [value, setValue] = useState(mdMermaid);
return (
<MDEditor
onChange={(newValue = "") => setValue(newValue)}
textareaProps={{
placeholder: "Please enter Markdown text"
}}
height={500}
value={value}
previewOptions={{
components: {
code: Code
}
}}
/>
);
}

@Nquq
Copy link
Author

Nquq commented Aug 9, 2023

jaywcjlove added a commit that referenced this issue Aug 10, 2023
@jaywcjlove
Copy link
Member

@Nquq https://codesandbox.io/embed/markdown-editor-mermaid-for-react-forked-hxqn4r?fontsize=14&hidenavigation=1&theme=dark

Use mermaid@v9

import React, {
  useState,
  useRef,
  Fragment,
  useEffect,
  useCallback
} from "react";
import MDEditor from "@uiw/react-md-editor";
import mermaid from "mermaid";
import { createRoot } from "react-dom/client";
import { getCodeString } from "rehype-rewrite";

const mdMermaid = `The following are some examples of the diagrams, charts and graphs that can be made using Mermaid and the Markdown-inspired text specific to it. 

\`\`\`mermaid
graph TD
A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
\`\`\`

\`\`\`mermaid
sequenceDiagram
Alice->>John: Hello John, how are you?
loop Healthcheck
    John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
\`\`\`
`;

const randomid = () => parseInt(String(Math.random() * 1e15), 10).toString(36);
const Code = ({ inline, children = [], className, ...props }) => {
  const demoid = useRef(`dome${randomid()}`);
  const [container, setContainer] = useState(null);
  const isMermaid =
    className && /^language-mermaid/.test(className.toLocaleLowerCase());
  const txt = children[0] || "";
  const code =
    props.node && props.node.children
      ? getCodeString(props.node.children)
      : txt;
  useEffect(() => {
    if (container && isMermaid) {
      try {
        const str = mermaid.render(demoid.current, code);
        container.innerHTML = str;
      } catch (error) {
        container.innerHTML = error;
      }
    }
  }, [container, isMermaid, code, demoid]);

  const refElement = useCallback((node) => {
    if (node !== null) {
      setContainer(node);
    }
  }, []);

  if (isMermaid) {
    return (
      <Fragment>
        <code id={demoid.current} style={{ display: "none" }} />
        <code ref={refElement} data-name="mermaid" />
      </Fragment>
    );
  }
  return <code>{children}</code>;
};

export default function App() {
  const [value, setValue] = useState(mdMermaid);
  return (
    <div data-color-mode="light">
      <MDEditor
        onChange={(newValue = "") => setValue(newValue)}
        textareaProps={{
          placeholder: "Please enter Markdown text"
        }}
        height={500}
        value={value}
        previewOptions={{
          components: {
            code: Code
          }
        }}
      />
    </div>
  );
}

const container = document.getElementById("container");
const root = createRoot(container);
root.render(<App />);

@Nquq
Copy link
Author

Nquq commented Aug 10, 2023

@jaywcjlove thank a lot!

@Nquq Nquq closed this as completed Aug 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants