Provides MonacoEditor and MonacoDiffEditor component, make it easier to use Monaco Editor in React.
use npm
npm install dt-react-monaco-editoror use yarn
yarn add dt-react-monaco-editoror use pnpm
pnpm install dt-react-monaco-editorSee Monaco Editor integrate Docs.
import { MonacoEditor } from 'dt-react-monaco-editor';
function App() {
const editorRef = useRef();
return (
<MonacoEditor
value=""
language="javascript"
style={{ height: 400, width: 600 }}
onChange={(value) => {
console.log(value);
}}
editorDidMount={(ins) => (editorRef.current = ins)}
/>
);
}import { MonacoDiffEditor } from 'dt-react-monaco-editor';
function App() {
const editorRef = useRef();
return (
<MonacoDiffEditor
original="const a = 1;"
value="const a = 2;"
language="sql"
style={{ height: 400, width: 1200 }}
onChange={(value) => {
console.log(value);
}}
editorDidMount={(ins) => (editorRef.current = ins)}
/>
);
}common properties can be used on MonacoEditor and MonacoDiffEditor.
themetheme used when the editor renders, defaults tovs.languagelanguage of model in editor, defaults tosql.syncsync value to model when value change, if sync property is true, the editor is controlled, defaults tofalse.onChangean event emitted when the value of the editor model has changed.
valuevalue of model in editor.optionsoptions for monaco editor, refer to monaco interface IStandaloneEditorConstructionOptions.- [deprecated]
editorInstanceRefget editor instance. onCursorSelectionan event emitted when the selection of the editor model has changed.onFocusan event emitted when the editor is in focus.onBluran event emitted when the editor is out of focus.editorWillMountcalled immediately before the editor is mounted (similar to componentWillMount of React).editorDidMountcalled immediately after the editor is mounted (similar to componentDidMount of React).editorWillUnMountcalled immediately before the editor is destroyed (similar to componentWillUnmount of React).
valuevalue of model in modifiedEditor.originalvalue of model in originalEditor.optionsoptions for monaco diff editor, refer to monaco interface IStandaloneDiffEditorConstructionOptions.- [deprecated]
diffEditorInstanceRefget diff editor instance. editorWillMountcalled immediately before the editor is mounted (similar to componentWillMount of React).editorDidMountcalled immediately after the editor is mounted (similar to componentDidMount of React).editorWillUnMountcalled immediately before the editor is destroyed (similar to componentWillUnmount of React).
Please see monaco-sql-languages.
monaco-sql-languages provides highlighting, error prompts and auto-completion functions for many kinds of SQL Languages for BigData domain. It supports on-demand import and is easy to integrate.