1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-15 00:45:59 +00:00
Files
homebrewery/shared/naturalcrit/codeEditor/codeEditor.jsx
Scott Tolksdorf 22a480871b 'Sheet
2016-05-16 22:42:22 -04:00

75 lines
1.7 KiB
JavaScript

var React = require('react');
var _ = require('lodash');
var cx = require('classnames');
var CodeMirror;
if(typeof navigator !== 'undefined'){
var CodeMirror = require('codemirror');
//Language Modes
require('codemirror/mode/gfm/gfm.js'); //Github flavoured markdown
require('codemirror/mode/javascript/javascript.js');
require('codemirror/mode/jsx/jsx.js');
}
var CodeEditor = React.createClass({
getDefaultProps: function() {
return {
language : '',
value : '',
wrap : false,
onChange : function(){},
onCursorActivity : function(){},
};
},
componentDidMount: function() {
this.codeMirror = CodeMirror(this.refs.editor,{
value : this.props.value,
lineNumbers: true,
lineWrapping : this.props.wrap,
mode : this.props.language
});
this.codeMirror.on('change', this.handleChange);
this.codeMirror.on('cursorActivity', this.handleCursorActivity);
this.updateSize();
},
componentWillReceiveProps: function(nextProps){
if(this.codeMirror && nextProps.value && this.codeMirror.getValue() != nextProps.value) {
this.codeMirror.setValue(nextProps.value);
}
},
shouldComponentUpdate: function(nextProps, nextState) {
return false;
},
setCursorPosition : function(line, char){
setTimeout(()=>{
this.codeMirror.focus();
this.codeMirror.doc.setCursor(line, char);
}, 10);
},
updateSize : function(){
this.codeMirror.refresh();
},
handleChange : function(editor){
this.props.onChange(editor.getValue());
},
handleCursorActivity : function(){
this.props.onCursorActivity(this.codeMirror.doc.getCursor());
},
render : function(){
return <div className='codeEditor' ref='editor' />
}
});
module.exports = CodeEditor;