2016-03-22 05:01:58 +00:00
|
|
|
import React, {Component, PropTypes} from 'react';
|
2016-04-09 21:41:27 +00:00
|
|
|
import Editor from './base/Editor'
|
2016-03-22 05:01:58 +00:00
|
|
|
|
|
|
|
class RequestBodyEditor extends Component {
|
|
|
|
shouldComponentUpdate (nextProps) {
|
2016-04-17 05:28:51 +00:00
|
|
|
return this.props.request._id !== nextProps.request._id;
|
2016-03-22 05:01:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const {request, onChange, className} = this.props;
|
2016-04-17 04:28:57 +00:00
|
|
|
const mode = request.contentType || 'text/plain';
|
2016-04-04 07:15:30 +00:00
|
|
|
|
2016-03-22 05:01:58 +00:00
|
|
|
return (
|
2016-04-09 21:41:27 +00:00
|
|
|
<Editor
|
2016-03-22 05:01:58 +00:00
|
|
|
value={request.body}
|
|
|
|
className={className}
|
|
|
|
onChange={onChange}
|
2016-03-23 18:34:39 +00:00
|
|
|
options={{
|
2016-04-04 07:15:30 +00:00
|
|
|
mode: mode,
|
2016-03-23 18:34:39 +00:00
|
|
|
placeholder: 'request body here...'
|
|
|
|
}}
|
2016-03-22 05:01:58 +00:00
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RequestBodyEditor.propTypes = {
|
|
|
|
request: PropTypes.shape({
|
2016-04-04 07:15:30 +00:00
|
|
|
body: PropTypes.string.isRequired
|
2016-03-22 05:01:58 +00:00
|
|
|
}).isRequired,
|
|
|
|
onChange: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default RequestBodyEditor;
|