insomnia/app/ui/components/editors/EnvironmentEditor.js
Gregory Schier c1e9e718e9 Perf/one line input hybrid (#100)
* Fixed duplication kve bug

* one-line-input now defaults to <input>

* Fixed urlbar width

* Removed all boolean flags

* Fixed some edge cases

* I think it's good

* A bunch more fixes too

* Fixed querystring with hashes
2017-03-01 13:15:56 -08:00

61 lines
1.4 KiB
JavaScript

import React, {PropTypes, PureComponent} from 'react';
import Editor from '../codemirror/Editor';
import {DEBOUNCE_MILLIS} from '../../../common/constants';
class EnvironmentEditor extends PureComponent {
_handleChange = () => this.props.didChange();
_setEditorRef = n => this._editor = n;
getValue () {
return JSON.parse(this._editor.getValue());
}
isValid () {
try {
return this.getValue() !== undefined;
} catch (e) {
// Failed to parse JSON
return false;
}
}
render () {
const {
environment,
editorFontSize,
editorKeyMap,
render,
lineWrapping,
...props
} = this.props;
return (
<Editor
ref={this._setEditorRef}
autoPrettify
fontSize={editorFontSize}
lineWrapping={lineWrapping}
keyMap={editorKeyMap}
onChange={this._handleChange}
debounceMillis={DEBOUNCE_MILLIS * 6}
defaultValue={JSON.stringify(environment)}
render={render}
mode="application/json"
{...props}
/>
)
}
}
EnvironmentEditor.propTypes = {
environment: PropTypes.object.isRequired,
didChange: PropTypes.func.isRequired,
editorFontSize: PropTypes.number.isRequired,
editorKeyMap: PropTypes.string.isRequired,
render: PropTypes.func.isRequired,
lineWrapping: PropTypes.bool.isRequired,
};
export default EnvironmentEditor;