import React, {PureComponent, PropTypes} from 'react'; import autobind from 'autobind-decorator'; import {shell} from 'electron'; import Editor from '../codemirror/code-editor'; import ResponseWebView from './response-webview'; import ResponseRaw from './response-raw'; import ResponseError from './response-error'; import {LARGE_RESPONSE_MB, PREVIEW_MODE_FRIENDLY, PREVIEW_MODE_SOURCE} from '../../../common/constants'; let alwaysShowLargeResponses = false; @autobind class ResponseViewer extends PureComponent { constructor (props) { super(props); this.state = { blockingBecauseTooLarge: false }; } _handleOpenLink (link) { shell.openExternal(link); } _handleDismissBlocker () { this.setState({blockingBecauseTooLarge: false}); } _handleDisableBlocker () { alwaysShowLargeResponses = true; this._handleDismissBlocker(); } _checkResponseBlocker (props) { if (alwaysShowLargeResponses) { return; } // Block the response if it's too large if (props.bytes > LARGE_RESPONSE_MB * 1024 * 1024) { this.setState({blockingBecauseTooLarge: true}); } } componentWillMount () { this._checkResponseBlocker(this.props); } componentWillReceiveProps (nextProps) { this._checkResponseBlocker(nextProps); } shouldComponentUpdate (nextProps, nextState) { for (let k of Object.keys(nextProps)) { const value = nextProps[k]; if (typeof value !== 'function' && this.props[k] !== value) { return true; } } for (let k of Object.keys(nextState)) { const value = nextState[k]; if (typeof value !== 'function' && this.state[k] !== value) { return true; } } return false; } render () { const { previewMode, filter, contentType, editorLineWrapping, editorFontSize, editorKeyMap, updateFilter, statusCode, body: base64Body, encoding, url, error } = this.props; const bodyBuffer = new Buffer(base64Body, encoding); if (error) { return ( ); } const {blockingBecauseTooLarge} = this.state; if (blockingBecauseTooLarge) { return (

Previewing responses over {LARGE_RESPONSE_MB}MB may cause slowdowns on some computers

{' '}

); } switch (previewMode) { case PREVIEW_MODE_FRIENDLY: if (contentType.toLowerCase().indexOf('image/') === 0) { const justContentType = contentType.split(';')[0]; return (
); } else { return ( ); } case PREVIEW_MODE_SOURCE: let mode = contentType; const body = bodyBuffer.toString('utf8'); try { // FEATURE: Detect JSON even without content-type contentType.indexOf('json') === -1 && JSON.parse(body); mode = 'application/json'; } catch (e) { // Nothing } return ( ); default: // Raw return ( ); } } } ResponseViewer.propTypes = { body: PropTypes.string.isRequired, encoding: PropTypes.string.isRequired, previewMode: PropTypes.string.isRequired, filter: PropTypes.string.isRequired, editorFontSize: PropTypes.number.isRequired, editorKeyMap: PropTypes.string.isRequired, editorLineWrapping: PropTypes.bool.isRequired, url: PropTypes.string.isRequired, bytes: PropTypes.number.isRequired, statusCode: PropTypes.number.isRequired, responseId: PropTypes.string.isRequired, contentType: PropTypes.string.isRequired, // Optional updateFilter: PropTypes.func, error: PropTypes.bool }; export default ResponseViewer;