| import React, { useEffect, useRef } from 'react'; | |
| import type { JsonEditor, JSONEditorPropsOptional } from 'vanilla-jsoneditor'; | |
| import { createJSONEditor, Mode } from 'vanilla-jsoneditor'; | |
| const Editor: React.FC<JSONEditorPropsOptional> = (props) => { | |
| const editorRef = useRef<JsonEditor>(null); | |
| const container = useRef<HTMLDivElement>(null); | |
| useEffect(() => { | |
| if (container.current) { | |
| editorRef.current = createJSONEditor({ | |
| target: container.current, | |
| props: { | |
| mode: Mode.text, | |
| }, | |
| }); | |
| } | |
| return () => { | |
| editorRef.current?.destroy(); | |
| }; | |
| }, []); | |
| useEffect(() => { | |
| editorRef.current?.updateProps(props); | |
| }, [props.content]); | |
| return <div ref={container} className="vanilla-jsoneditor-react" />; | |
| }; | |
| export default Editor; | |