import React from "react" import PropTypes from "prop-types" import { helpers } from "swagger-client" const { opId } = helpers export default class Operations extends React.Component { static propTypes = { specSelectors: PropTypes.object.isRequired, specActions: PropTypes.object.isRequired, getComponent: PropTypes.func.isRequired, layoutSelectors: PropTypes.object.isRequired, layoutActions: PropTypes.object.isRequired, authActions: PropTypes.object.isRequired, authSelectors: PropTypes.object.isRequired, getConfigs: PropTypes.func.isRequired }; render() { let { specSelectors, specActions, getComponent, layoutSelectors, layoutActions, authActions, authSelectors, getConfigs, fn } = this.props let taggedOps = specSelectors.taggedOperations() const Operation = getComponent("operation") const Collapse = getComponent("Collapse") let showSummary = layoutSelectors.showSummary() let { docExpansion, displayOperationId, displayRequestDuration, maxDisplayedTags, deepLinking } = getConfigs() const isDeepLinkingEnabled = deepLinking && deepLinking !== "false" let filter = layoutSelectors.currentFilter() if (filter) { if (filter !== true) { taggedOps = taggedOps.filter((tagObj, tag) => { return tag.indexOf(filter) !== -1 }) } } if (maxDisplayedTags && !isNaN(maxDisplayedTags) && maxDisplayedTags >= 0) { taggedOps = taggedOps.slice(0, maxDisplayedTags) } return (
{ taggedOps.map( (tagObj, tag) => { let operations = tagObj.get("operations") let tagDescription = tagObj.getIn(["tagDetails", "description"], null) let tagExternalDocsDescription = tagObj.getIn(["tagDetails", "externalDocs", "description"]) let tagExternalDocsUrl = tagObj.getIn(["tagDetails", "externalDocs", "url"]) let isShownKey = ["operations-tag", tag] let showTag = layoutSelectors.isShown(isShownKey, docExpansion === "full" || docExpansion === "list") return (

layoutActions.show(isShownKey, !showTag)} className={!tagDescription ? "opblock-tag no-desc" : "opblock-tag" } id={isShownKey.join("-")}> e.preventDefault()} href={ isDeepLinkingEnabled ? `#/${tag}` : ""}> {tag} { !tagDescription ? null : { tagDescription } }
{ !tagExternalDocsDescription ? null : { tagExternalDocsDescription } { tagExternalDocsUrl ? ": " : null } { tagExternalDocsUrl ? e.stopPropagation()} target={"_blank"} >{tagExternalDocsUrl} : null } }

{ operations.map( op => { const path = op.get("path", "") const method = op.get("method", "") const jumpToKey = `paths.${path}.${method}` const operationId = op.getIn(["operation", "operationId"]) || op.getIn(["operation", "__originalOperationId"]) || opId(op.get("operation"), path, method) || op.get("id") const isShownKey = ["operations", tag, operationId] const allowTryItOut = specSelectors.allowTryItOutFor(op.get("path"), op.get("method")) const response = specSelectors.responseFor(op.get("path"), op.get("method")) const request = specSelectors.requestFor(op.get("path"), op.get("method")) return }).toArray() }
) }).toArray() } { taggedOps.size < 1 ?

No operations defined in spec!

: null }
) } } Operations.propTypes = { layoutActions: PropTypes.object.isRequired, specSelectors: PropTypes.object.isRequired, specActions: PropTypes.object.isRequired, layoutSelectors: PropTypes.object.isRequired, getComponent: PropTypes.func.isRequired, fn: PropTypes.object.isRequired }