import React from "react" import { fromJS, Iterable } from "immutable" import PropTypes from "prop-types" import ImPropTypes from "react-immutable-proptypes" import { defaultStatusCode, getAcceptControllingResponse } from "core/utils" import createHtmlReadyId from "../../helpers/create-html-ready-id" export default class Responses extends React.Component { static propTypes = { tryItOutResponse: PropTypes.instanceOf(Iterable), responses: PropTypes.instanceOf(Iterable).isRequired, produces: PropTypes.instanceOf(Iterable), producesValue: PropTypes.any, displayRequestDuration: PropTypes.bool.isRequired, path: PropTypes.string.isRequired, method: PropTypes.string.isRequired, getComponent: PropTypes.func.isRequired, getConfigs: PropTypes.func.isRequired, specSelectors: PropTypes.object.isRequired, specActions: PropTypes.object.isRequired, oas3Actions: PropTypes.object.isRequired, oas3Selectors: PropTypes.object.isRequired, specPath: ImPropTypes.list.isRequired, fn: PropTypes.object.isRequired } static defaultProps = { tryItOutResponse: null, produces: fromJS(["application/json"]), displayRequestDuration: false } // These performance-enhancing checks were disabled as part of Multiple Examples // because they were causing data-consistency issues // // shouldComponentUpdate(nextProps) { // // BUG: props.tryItOutResponse is always coming back as a new Immutable instance // let render = this.props.tryItOutResponse !== nextProps.tryItOutResponse // || this.props.responses !== nextProps.responses // || this.props.produces !== nextProps.produces // || this.props.producesValue !== nextProps.producesValue // || this.props.displayRequestDuration !== nextProps.displayRequestDuration // || this.props.path !== nextProps.path // || this.props.method !== nextProps.method // return render // } onChangeProducesWrapper = ( val ) => this.props.specActions.changeProducesValue([this.props.path, this.props.method], val) onResponseContentTypeChange = ({ controlsAcceptHeader, value }) => { const { oas3Actions, path, method } = this.props if(controlsAcceptHeader) { oas3Actions.setResponseContentType({ value, path, method }) } } render() { let { responses, tryItOutResponse, getComponent, getConfigs, specSelectors, fn, producesValue, displayRequestDuration, specPath, path, method, oas3Selectors, oas3Actions, } = this.props let defaultCode = defaultStatusCode( responses ) const ContentType = getComponent( "contentType" ) const LiveResponse = getComponent( "liveResponse" ) const Response = getComponent( "response" ) let produces = this.props.produces && this.props.produces.size ? this.props.produces : Responses.defaultProps.produces const isSpecOAS3 = specSelectors.isOAS3() const acceptControllingResponse = isSpecOAS3 ? getAcceptControllingResponse(responses) : null const regionId = createHtmlReadyId(`${method}${path}_responses`) const controlId = `${regionId}_select` return (
| Code | Description | { specSelectors.isOAS3() ?Links | : null }