2016-05-03 20:13:04 +00:00
|
|
|
import React from 'react';
|
|
|
|
import CodeMirror from 'codemirror';
|
|
|
|
import 'codemirror/mode/javascript/javascript';
|
2016-05-12 22:29:38 +00:00
|
|
|
import 'codemirror/addon/selection/active-line'
|
2016-05-03 20:13:04 +00:00
|
|
|
|
2016-05-05 21:48:26 +00:00
|
|
|
class Editor extends React.Component {
|
2016-06-20 19:23:42 +00:00
|
|
|
_cm: CodeMirror.Editor
|
2016-05-05 21:48:26 +00:00
|
|
|
|
|
|
|
componentDidMount() {
|
2016-05-03 20:13:04 +00:00
|
|
|
this._cm = CodeMirror(this.refs.container, {
|
|
|
|
theme: 'p5-widget',
|
2016-05-05 23:01:31 +00:00
|
|
|
value: this.props.content,
|
2016-05-03 20:13:04 +00:00
|
|
|
lineNumbers: true,
|
2016-05-12 22:29:38 +00:00
|
|
|
styleActiveLine: true,
|
2016-05-03 20:13:04 +00:00
|
|
|
mode: 'javascript'
|
|
|
|
});
|
2016-05-05 21:48:26 +00:00
|
|
|
this._cm.on('change', () => {
|
|
|
|
this.props.updateFile("sketch.js", this._cm.getValue());
|
|
|
|
});
|
2016-06-20 18:58:15 +00:00
|
|
|
this._cm.getWrapperElement().style['font-size'] = this.props.fontSize+'px';
|
2016-05-05 21:48:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
2016-05-05 23:01:31 +00:00
|
|
|
if (this.props.content !== prevProps.content &&
|
|
|
|
this.props.content !== this._cm.getValue()) {
|
|
|
|
this._cm.setValue(this.props.content);
|
2016-05-05 21:48:26 +00:00
|
|
|
}
|
2016-06-20 18:58:15 +00:00
|
|
|
if (this.props.fontSize !== prevProps.fontSize) {
|
|
|
|
this._cm.getWrapperElement().style['font-size'] = this.props.fontSize+'px';
|
|
|
|
}
|
2016-05-05 21:48:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
2016-05-03 20:13:04 +00:00
|
|
|
this._cm = null;
|
2016-05-05 21:48:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2016-05-03 20:13:04 +00:00
|
|
|
return <div ref="container" className="editor-holder"></div>;
|
|
|
|
}
|
2016-05-05 21:48:26 +00:00
|
|
|
}
|
|
|
|
|
2016-06-20 17:00:25 +00:00
|
|
|
export default Editor;
|