2016-08-15 17:04:36 +00:00
|
|
|
import React, {PropTypes, Component} from 'react';
|
|
|
|
import Editor from '../base/Editor';
|
|
|
|
|
|
|
|
class EnvironmentEditor extends Component {
|
2016-11-29 22:28:55 +00:00
|
|
|
_handleChange = () => {
|
|
|
|
this.props.didChange();
|
|
|
|
};
|
|
|
|
|
|
|
|
_setEditorRef = n => this._editor = n;
|
|
|
|
|
2016-08-15 17:04:36 +00:00
|
|
|
getValue () {
|
|
|
|
return JSON.parse(this._editor.getValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
isValid () {
|
|
|
|
try {
|
|
|
|
return this.getValue() !== undefined;
|
|
|
|
} catch (e) {
|
|
|
|
// Failed to parse JSON
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2017-01-24 22:18:11 +00:00
|
|
|
const {environment, editorFontSize, editorKeyMap, ...props} = this.props;
|
2016-08-15 17:04:36 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Editor
|
2016-11-29 22:28:55 +00:00
|
|
|
ref={this._setEditorRef}
|
2017-01-23 22:41:31 +00:00
|
|
|
fontSize={editorFontSize}
|
2017-01-24 22:18:11 +00:00
|
|
|
keyMap={editorKeyMap}
|
2016-11-29 22:28:55 +00:00
|
|
|
onChange={this._handleChange}
|
2016-08-15 17:04:36 +00:00
|
|
|
value={JSON.stringify(environment)}
|
2016-09-14 23:25:19 +00:00
|
|
|
autoPrettify={true}
|
2016-08-15 17:04:36 +00:00
|
|
|
mode="application/json"
|
|
|
|
{...props}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EnvironmentEditor.propTypes = {
|
|
|
|
environment: PropTypes.object.isRequired,
|
2017-01-23 22:41:31 +00:00
|
|
|
didChange: PropTypes.func.isRequired,
|
|
|
|
editorFontSize: PropTypes.number.isRequired,
|
2017-01-24 22:18:11 +00:00
|
|
|
editorKeyMap: PropTypes.string.isRequired,
|
2016-08-15 17:04:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default EnvironmentEditor;
|