diff --git a/ui/code-editor/index.tsx b/ui/code-editor/index.tsx index 3e79e27..fd3827f 100644 --- a/ui/code-editor/index.tsx +++ b/ui/code-editor/index.tsx @@ -1,8 +1,12 @@ import React from "react"; -import Editor, { useMonaco } from "@monaco-editor/react"; +import Editor from "@monaco-editor/react"; import { useEditorLanguageConfig } from "./use-editor-lang-config"; import { DocumentRange, MonacoTokensProvider } from "../../engines/types"; -import { createHighlightRange, EditorInstance } from "./monaco-utils"; +import { + createHighlightRange, + EditorInstance, + MonacoInstance, +} from "./monaco-utils"; import { useEditorBreakpoints } from "./use-editor-breakpoints"; // Interface for interacting with the editor @@ -30,13 +34,13 @@ type Props = { */ const CodeEditorComponent = (props: Props, ref: React.Ref) => { const editorRef = React.useRef(null); + const monacoRef = React.useRef(null); const highlightRange = React.useRef([]); - const monacoInstance = useMonaco(); // Breakpoints useEditorBreakpoints({ editor: editorRef.current, - monaco: monacoInstance, + monaco: monacoRef.current, onUpdateBreakpoints: props.onUpdateBreakpoints, }); @@ -47,20 +51,17 @@ const CodeEditorComponent = (props: Props, ref: React.Ref) => { }); /** Update code highlights */ - const updateHighlights = React.useCallback( - (hl: DocumentRange | null) => { - // Remove previous highlights - const prevRange = highlightRange.current; - editorRef.current!.deltaDecorations(prevRange, []); + const updateHighlights = React.useCallback((hl: DocumentRange | null) => { + // Remove previous highlights + const prevRange = highlightRange.current; + editorRef.current!.deltaDecorations(prevRange, []); - // Add new highlights - if (!hl) return; - const newRange = createHighlightRange(monacoInstance!, hl); - const rangeStr = editorRef.current!.deltaDecorations([], [newRange]); - highlightRange.current = rangeStr; - }, - [monacoInstance] - ); + // Add new highlights + if (!hl) return; + const newRange = createHighlightRange(monacoRef.current!, hl); + const rangeStr = editorRef.current!.deltaDecorations([], [newRange]); + highlightRange.current = rangeStr; + }, []); // Provide handle to parent for accessing editor contents React.useImperativeHandle( @@ -77,7 +78,11 @@ const CodeEditorComponent = (props: Props, ref: React.Ref) => { theme="vs-dark" defaultLanguage="brainfuck" defaultValue={props.defaultValue} - onMount={(editor) => (editorRef.current = editor)} + onMount={(editor, monaco) => { + if (!editor || !monaco) throw new Error("Error in initializing editor"); + editorRef.current = editor; + monacoRef.current = monaco; + }} options={{ minimap: { enabled: false }, glyphMargin: true }} /> ); diff --git a/ui/code-editor/use-editor-breakpoints.ts b/ui/code-editor/use-editor-breakpoints.ts index 4acde0f..95b8c07 100644 --- a/ui/code-editor/use-editor-breakpoints.ts +++ b/ui/code-editor/use-editor-breakpoints.ts @@ -103,7 +103,7 @@ export const useEditorBreakpoints = ({ // Mouse leaves editor -> remove hover breakpoint hint React.useEffect(() => { if (!editor) return; - const disposer = editor.onMouseLeave((e: MonacoMouseLeaveEvent) => { + const disposer = editor.onMouseLeave((_: MonacoMouseLeaveEvent) => { if (!hoverBreakpoint.current) return; editor.deltaDecorations(hoverBreakpoint.current.decorRanges, []); hoverBreakpoint.current = null;