Skip to content

Instantly share code, notes, and snippets.

@MathuraMG
Created May 26, 2016 13:53
Show Gist options
  • Save MathuraMG/cfc710f479a7579606fdcb7459b48d13 to your computer and use it in GitHub Desktop.
Save MathuraMG/cfc710f479a7579606fdcb7459b48d13 to your computer and use it in GitHub Desktop.
import React from 'react';
import CodeMirror from 'codemirror';
import 'codemirror/mode/javascript/javascript';
import 'codemirror/addon/selection/active-line'
import 'codemirror/keymap/vim'
class Editor extends React.Component {
_cm: CodeMirror.Editor
componentDidMount() {
this._cm = CodeMirror(this.refs.container, {
theme: 'p5-widget',
value: this.props.content,
lineNumbers: true,
styleActiveLine: true,
mode: 'javascript',
keyMap: 'vim'
});
this._cm.on('change', () => {
this.props.updateFile("sketch.js", this._cm.getValue());
});
}
componentDidUpdate(prevProps) {
if (this.props.content !== prevProps.content &&
this.props.content !== this._cm.getValue()) {
this._cm.setValue(this.props.content);
}
}
componentWillUnmount() {
this._cm = null;
}
render() {
return <div ref="container" className="editor-holder"></div>;
}
}
export default Editor;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment