insomnia/app/ui/components/editors/body/body-editor.js
Gregory Schier 3f5e7e2e14 First-Party OAuth 2.0 Support (#120)
* Proof of concept authorize call

* Authorize and Refresh endpoints done

* OAuth2 editor started

* Some small fixes

* Set OAuth headers on request

* Started on some OAuth tests

* Updated network logic with new OAuth API

* OAuth forms and refactor flows

* Fix grant type handling

* Moved auth handling out of render pipeline

* Fixed legacy auth header

* Fix vertical center

* Prompt user on auth type change

* Refresh tokens working (I think) and better UI

* Catch same type auth change

* POC refresh token and small refactor

* Better token handling

* LOading state to token refresh

* Show o-auth-2 errors

* Some minor updates
2017-03-23 15:10:42 -07:00

125 lines
3.6 KiB
JavaScript

import React, {PropTypes, PureComponent} from 'react';
import autobind from 'autobind-decorator';
import RawEditor from './raw-editor';
import UrlEncodedEditor from './url-encoded-editor';
import FormEditor from './form-editor';
import FileEditor from './file-editor';
import {getContentTypeFromHeaders, CONTENT_TYPE_FORM_URLENCODED, CONTENT_TYPE_FORM_DATA, CONTENT_TYPE_FILE} from '../../../../common/constants';
import {newBodyRaw, newBodyFormUrlEncoded, newBodyForm, newBodyFile} from '../../../../models/request';
@autobind
class BodyEditor extends PureComponent {
_handleRawChange (rawValue) {
const {onChange, request} = this.props;
const contentType = getContentTypeFromHeaders(request.headers);
const newBody = newBodyRaw(rawValue, contentType || '');
onChange(newBody);
}
_handleFormUrlEncodedChange (parameters) {
const {onChange} = this.props;
const newBody = newBodyFormUrlEncoded(parameters);
onChange(newBody);
}
_handleFormChange (parameters) {
const {onChange} = this.props;
const newBody = newBodyForm(parameters);
onChange(newBody);
}
_handleFileChange (path) {
const {onChange} = this.props;
const newBody = newBodyFile(path);
onChange(newBody);
}
render () {
const {
keyMap,
fontSize,
lineWrapping,
request,
handleRender,
handleGetRenderContext
} = this.props;
const fileName = request.body.fileName;
const mimeType = request.body.mimeType;
const isBodyEmpty = typeof mimeType !== 'string' && !request.body.text;
if (mimeType === CONTENT_TYPE_FORM_URLENCODED) {
return (
<UrlEncodedEditor
key={request._id}
onChange={this._handleFormUrlEncodedChange}
handleRender={handleRender}
handleGetRenderContext={handleGetRenderContext}
parameters={request.body.params || []}
/>
);
} else if (mimeType === CONTENT_TYPE_FORM_DATA) {
return (
<FormEditor
key={request._id}
onChange={this._handleFormChange}
handleRender={handleRender}
handleGetRenderContext={handleGetRenderContext}
parameters={request.body.params || []}
/>
);
} else if (mimeType === CONTENT_TYPE_FILE) {
return (
<FileEditor
key={request._id}
onChange={this._handleFileChange}
path={fileName || ''}
/>
);
} else if (!isBodyEmpty) {
const contentType = getContentTypeFromHeaders(request.headers) || mimeType;
return (
<RawEditor
key={request._id}
fontSize={fontSize}
keyMap={keyMap}
lineWrapping={lineWrapping}
contentType={contentType || 'text/plain'}
content={request.body.text || ''}
render={handleRender}
getRenderContext={handleGetRenderContext}
onChange={this._handleRawChange}
/>
);
} else {
return (
<div className="editor vertically-center text-center">
<p className="pad super-faint text-sm text-center">
<i className="fa fa-hand-peace-o" style={{fontSize: '8rem', opacity: 0.3}}/>
<br/><br/>
Select a body type from above
</p>
</div>
);
}
}
}
BodyEditor.propTypes = {
// Required
onChange: PropTypes.func.isRequired,
handleUpdateRequestMimeType: PropTypes.func.isRequired,
handleRender: PropTypes.func.isRequired,
handleGetRenderContext: PropTypes.func.isRequired,
request: PropTypes.object.isRequired,
// Optional
fontSize: PropTypes.number,
keyMap: PropTypes.string,
lineWrapping: PropTypes.bool
};
export default BodyEditor;