import React, { Component } from 'react' import PropTypes from 'prop-types' import { connect } from 'react-redux' import { Button, Input, Select, Card, Alert, Spin, Icon } from 'antd' import { autobind } from 'core-decorators'; import crossRequest from 'cross-request'; import { withRouter } from 'react-router'; import axios from 'axios'; import URL from 'url'; import { } from '../../../actions/group.js' import './InterfaceTest.scss' const { TextArea } = Input; const InputGroup = Input.Group; const Option = Select.Option; @connect( state => ({ reqParams: state.addInterface.reqParams, method: state.addInterface.method, url: state.addInterface.url, seqGroup: state.addInterface.seqGroup, interfaceName: state.addInterface.interfaceName, interfaceProject: state.addInterface.project }), { } ) @withRouter export default class InterfaceTest extends Component { static propTypes = { reqParams: PropTypes.string, method: PropTypes.string, url: PropTypes.string, interfaceName: PropTypes.string, seqGroup: PropTypes.array, match: PropTypes.object, interfaceProject: PropTypes.object } state = { res: '', method: 'GET', domains: [], pathname: '', query: {}, params: {}, paramsNotJson: false, headers: {}, currDomain: '' } constructor(props) { super(props) } componentWillMount() { this.getInterfaceState() } componentWillReceiveProps(nextProps) { this.getInterfaceState(nextProps) } @autobind getInterfaceState(nextProps) { const props = nextProps || this.props; const { method, url, seqGroup, interfaceProject } = props; const { prd_host, basepath, protocol, env } = interfaceProject; const pathname = (basepath + url).replace(/\/+/g, '/'); const domains = {prd: protocol + '://' + prd_host}; env.forEach(item => { domains[item.name] = item.domain; }) const query = []; let params = {}; let reqParams = this.props.reqParams ? this.props.reqParams : '{}'; let paramsNotJson = false; try { reqParams = JSON.parse(reqParams) paramsNotJson = false; } catch (e) { paramsNotJson = true; } if (method === 'GET') { Object.keys(reqParams).forEach(key => { const value = typeof reqParams[key] === 'object' ? JSON.stringify(reqParams[key]) : reqParams[key].toString(); query.push({key, value}) }) } else if (method === 'POST') { params = reqParams; } const headers = {} seqGroup.forEach((headerItem) => { if (headerItem.name) { headers[headerItem.name] = headerItem.value; } }) this.setState({ method, domains, pathname, query, params, paramsNotJson, headers, currDomain: domains.prd, loading: false }); } @autobind requestInterface() { const { headers, params, currDomain, method, pathname, query } = this.state; const urlObj = URL.parse(currDomain); const href = URL.format({ protocol: urlObj.protocol || 'http', host: urlObj.host, pathname, query: this.getQueryObj(query) }); this.setState({ loading: true }) crossRequest({ url: href, method, headers, data: params, success: (res, header) => { console.log(header) try { res = JSON.parse(res); } catch (e) { null; } this.setState({res}) this.setState({ loading: false }) }, error: (err, header) => { console.log(header) this.setState({res: err || '请求失败'}) this.setState({ loading: false }) } }) } @autobind changeDomain(value) { this.setState({ currDomain: value }); } @autobind selectDomain(value) { this.setState({ currDomain: value }); } @autobind changeHeader(e, key) { const headers = JSON.parse(JSON.stringify(this.state.headers)); headers[key] = e.target.value; this.setState({ headers }); } @autobind changeQuery(e, index, isKey) { const query = JSON.parse(JSON.stringify(this.state.query)); const v = e.target.value; if (isKey) { query[index].key = v; } else { query[index].value = v; } this.setState({ query }); } @autobind addQuery() { const { query } = this.state; this.setState({query: query.concat([{key: '', value: ''}])}) } @autobind deleteQuery(index) { const { query } = this.state; this.setState({query: query.filter((item, i) => +index !== +i)}); } @autobind changeParams(e, key) { const params = JSON.parse(JSON.stringify(this.state.params)); params[key] = e.target.value; this.setState({ params }); } @autobind changeMethod(value) { this.setState({ method: value }); } @autobind changePath(e) { const path = e.target.value; const urlObj = URL.parse(path, true); this.setState({ query: urlObj.query, pathname: urlObj.pathname }) } hasCrossRequestPlugin() { const dom = document.getElementById('y-request'); return dom.getAttribute('key') === 'yapi'; } getQueryObj(query) { const queryObj = {}; query.forEach(item => { if (item.key) { queryObj[item.key] = item.value || ''; } }) return queryObj; } render () { const { interfaceName } = this.props; const { method, domains, pathname, query, headers, params, paramsNotJson, currDomain } = this.state; const hasPlugin = this.hasCrossRequestPlugin(); const search = decodeURIComponent(URL.format({query: this.getQueryObj(query)})); console.log(axios) window.axios = axios return (