![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/swagger-api/swagger-ui/src/core/components/ |
import React from "react" import PropTypes from "prop-types" import Im from "immutable" export default class Operations extends React.Component { static propTypes = { specSelectors: PropTypes.object.isRequired, specActions: PropTypes.object.isRequired, oas3Actions: PropTypes.object.isRequired, getComponent: PropTypes.func.isRequired, oas3Selectors: PropTypes.func.isRequired, layoutSelectors: PropTypes.object.isRequired, layoutActions: PropTypes.object.isRequired, authActions: PropTypes.object.isRequired, authSelectors: PropTypes.object.isRequired, getConfigs: PropTypes.func.isRequired, fn: PropTypes.func.isRequired } render() { let { specSelectors, } = this.props const taggedOps = specSelectors.taggedOperations() if(taggedOps.size === 0) { return <h3> No operations defined in spec!</h3> } return ( <div> { taggedOps.map(this.renderOperationTag).toArray() } { taggedOps.size < 1 ? <h3> No operations defined in spec! </h3> : null } </div> ) } renderOperationTag = (tagObj, tag) => { const { specSelectors, getComponent, oas3Selectors, layoutSelectors, layoutActions, getConfigs, } = this.props const validOperationMethods = specSelectors.validOperationMethods() const OperationContainer = getComponent("OperationContainer", true) const OperationTag = getComponent("OperationTag") const operations = tagObj.get("operations") return ( <OperationTag key={"operation-" + tag} tagObj={tagObj} tag={tag} oas3Selectors={oas3Selectors} layoutSelectors={layoutSelectors} layoutActions={layoutActions} getConfigs={getConfigs} getComponent={getComponent} specUrl={specSelectors.url()}> <div className="operation-tag-content"> { operations.map(op => { const path = op.get("path") const method = op.get("method") const specPath = Im.List(["paths", path, method]) if (validOperationMethods.indexOf(method) === -1) { return null } return ( <OperationContainer key={`${path}-${method}`} specPath={specPath} op={op} path={path} method={method} tag={tag} /> ) }).toArray() } </div> </OperationTag> ) } } 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 }