vega/react-monaco-editor

Name: react-monaco-editor

Owner: Vega

Description: Monaco Editor for React.

Forked from: superRaytin/react-monaco-editor

Created: 2017-06-18 23:31:18.0

Updated: 2017-08-06 05:03:06.0

Pushed: 2017-08-06 22:48:10.0

Homepage:

Size: 46

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

react-monaco-editor

Monaco Editor for React.

NPM version Downloads

react-monaco-editor

Examples

To build the examples locally, run:

install
xamples && npm install
start

Then open http://localhost:8886 in a browser.

Installation
install react-monaco-editor
Usage
Using with webpack
rt React from 'react';
rt { render } from 'react-dom';
rt MonacoEditor from 'react-monaco-editor';

s App extends React.Component {
nstructor(props) {
super(props);
this.state = {
  code: '// type your code...',
}

itorDidMount(editor, monaco) {
console.log('editorDidMount', editor);
editor.focus();

Change(newValue, e) {
console.log('onChange', newValue, e);

nder() {
const code = this.state.code;
const options = {
  selectOnLineNumbers: true
};
return (
  <MonacoEditor
    width="800"
    height="600"
    language="javascript"
    value={code}
    options={options}
    onChange={::this.onChange}
    editorDidMount={::this.editorDidMount}
  />
);



er(
pp />,
cument.getElementById('root')

Add a Webpack plugin copy-webpack-plugin to your webpack.config.js:

t CopyWebpackPlugin = require('copy-webpack-plugin');
le.exports = {
ugins: [
new CopyWebpackPlugin([
  {
    from: 'node_modules/monaco-editor/min/vs',
    to: 'vs',
  }
])


Fill from field with the actual path of monaco-editor package in node_modules.

Using with require.config (do not need Webpack)
s App extends React.Component {
nder() {
const requireConfig = {
  url: 'https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.1/require.min.js',
  paths: {
    'vs': 'https://www.mycdn.com/monaco-editor/0.6.1/min/vs'
  }
};
return (
  <MonacoEditor
    width="800"
    height="600"
    language="javascript"
    value="// type your code..."
    requireConfig={requireConfig}
  />
);


requireConfig is optional, equal to:

ipt src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.1/require.min.js"></script>
ipt>
require.config({ paths: { 'vs': 'https://www.mycdn.com/monaco-editor/0.6.1/min/vs' }});
ript>

Both them are valid ways to config loader url and relative path of module.

You may need to note the cross domain case.

Properties

If you specify value property, the component behaves in controlled mode. Otherwise, it behaves in uncontrolled mode.

Events & Methods

Refer to Monaco interface IEditor.

Q & A
How to interact with the MonacoEditor instance

Using the first parameter of editorDidMount, or using a ref (e.g. <MonacoEditor ref="monaco">) after editorDidMount event has fired.

Then you can invoke instance methods via this.refs.monaco.editor, e.g. this.refs.monaco.editor.focus() to focuses the MonacoEditor instance.

How to get value of editor

Using this.refs.monaco.editor.getValue() or via method of Model instance:

t model = this.refs.monaco.editor.getModel();
t value = model.getValue();
Do something before editor mounted

For example, you may want to configure some JSON schemas before editor mounted, then you can go with editorWillMount(monaco):

s App extends React.Component {
editorWillMount(monaco) {
    monaco.languages.json.jsonDefaults.setDiagnosticsOptions({
        schemas: [{
            uri: "http://myserver/foo-schema.json",
            schema: {
                type: "object",
                properties: {
                    p1: {
                        enum: [ "v1", "v2"]
                    },
                    p2: {
                        $ref: "http://myserver/bar-schema.json"
                    }
                }
            }
        }]
    });
}
render() {
    return (
      <MonacoEditor language="json" editorWillMount={this.editorWillMount} />
    );
}

License

MIT, see the LICENSE file for detail.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.