esolang/ui/code-editor/index.tsx
2021-12-17 22:42:17 +05:30

100 lines
3.1 KiB
TypeScript

import React from "react";
import Editor from "@monaco-editor/react";
import { useEditorLanguageConfig } from "./use-editor-lang-config";
import { DocumentRange, MonacoTokensProvider } from "../../engines/types";
import {
createHighlightRange,
EditorInstance,
MonacoInstance,
} from "./monaco-utils";
import { useEditorBreakpoints } from "./use-editor-breakpoints";
import darkTheme from "./themes/dark.json";
import lightTheme from "./themes/light.json";
import { useDarkMode } from "../providers/dark-mode-provider";
// Interface for interacting with the editor
export interface CodeEditorRef {
/** Get the current text content of the editor */
getValue: () => string;
/** Update code highlights */
updateHighlights: (highlights: DocumentRange | null) => void;
}
type Props = {
/** ID of the active language */
languageId: string;
/** Default code to display in editor */
defaultValue: string;
/** Tokens provider for the language */
tokensProvider?: MonacoTokensProvider;
/** Callback to update debugging breakpoints */
onUpdateBreakpoints: (newBreakpoints: number[]) => void;
};
/**
* Wrapper around the Monaco editor that reveals
* only the required functionality to the parent container.
*/
const CodeEditorComponent = (props: Props, ref: React.Ref<CodeEditorRef>) => {
const editorRef = React.useRef<EditorInstance | null>(null);
const monacoRef = React.useRef<MonacoInstance | null>(null);
const highlightRange = React.useRef<string[]>([]);
const { isDark } = useDarkMode();
// Breakpoints
useEditorBreakpoints({
editor: editorRef.current,
monaco: monacoRef.current,
onUpdateBreakpoints: props.onUpdateBreakpoints,
});
// Language config
useEditorLanguageConfig({
languageId: props.languageId,
tokensProvider: props.tokensProvider,
});
/** Update code highlights */
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(monacoRef.current!, hl);
const rangeStr = editorRef.current!.deltaDecorations([], [newRange]);
highlightRange.current = rangeStr;
}, []);
// Provide handle to parent for accessing editor contents
React.useImperativeHandle(
ref,
() => ({
getValue: () => editorRef.current!.getValue(),
updateHighlights,
}),
[]
);
return (
<Editor
theme={isDark ? "ep-dark" : "ep-light"}
defaultLanguage="brainfuck"
defaultValue={props.defaultValue}
beforeMount={(monaco) => {
monaco.editor.defineTheme("ep-dark", darkTheme as any);
monaco.editor.defineTheme("ep-light", lightTheme as any);
}}
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 }}
/>
);
};
export const CodeEditor = React.forwardRef(CodeEditorComponent);