1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-17 07:41:29 +00:00
Files
homebrewery/shared/naturalCrit/codeEditor/codeEditor.jsx
2016-05-04 14:05:37 -04:00

57 lines
1.3 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');
}
var CodeEditor = React.createClass({
getDefaultProps: function() {
return {
language : '',
value : '',
onChange : function(){},
onCursorActivity : function(){},
};
},
componentDidMount: function() {
this.codeMirror = CodeMirror(this.refs.editor,{
value : this.props.value,
lineNumbers: true,
mode : this.props.language
});
this.codeMirror.on('change', this.handleChange);
this.codeMirror.on('cursorActivity', this.handleCursorActivity);
},
componentWillReceiveProps: _.debounce((nextProps)=>{
if(this.codeMirror && nextProps.value !== undefined && this.codeMirror.getValue() != nextProps.value) {
this.codeMirror.setValue(nextProps.value);
}
}, 0),
handleChange : function(editor){
this.props.onChange(editor.getValue());
},
handleCursorActivity : function(){
this.props.onCursorActivity(this.codeMirror.getCursor());
},
render : function(){
return <div className='codeEditor' ref='editor' />
}
});
module.exports = CodeEditor;