fork from bc4552c5a8
This commit is contained in:
@@ -0,0 +1,382 @@
|
||||
import React, { Component } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import './index.scss';
|
||||
import { Icon, Row, Col, Form, Input, Select, Button, AutoComplete, Tooltip } from 'antd';
|
||||
const FormItem = Form.Item;
|
||||
const Option = Select.Option;
|
||||
import constants from 'client/constants/variable.js';
|
||||
|
||||
const initMap = {
|
||||
header: [
|
||||
{
|
||||
name: '',
|
||||
value: ''
|
||||
}
|
||||
],
|
||||
cookie: [
|
||||
{
|
||||
name: '',
|
||||
value: ''
|
||||
}
|
||||
],
|
||||
global: [
|
||||
{
|
||||
name: '',
|
||||
value: ''
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
class ProjectEnvContent extends Component {
|
||||
static propTypes = {
|
||||
projectMsg: PropTypes.object,
|
||||
form: PropTypes.object,
|
||||
onSubmit: PropTypes.func,
|
||||
handleEnvInput: PropTypes.func
|
||||
};
|
||||
|
||||
initState(curdata) {
|
||||
let header = [
|
||||
{
|
||||
name: '',
|
||||
value: ''
|
||||
}
|
||||
];
|
||||
let cookie = [
|
||||
{
|
||||
name: '',
|
||||
value: ''
|
||||
}
|
||||
];
|
||||
|
||||
let global = [
|
||||
{
|
||||
name: '',
|
||||
value: ''
|
||||
}
|
||||
];
|
||||
|
||||
const curheader = curdata.header;
|
||||
const curGlobal = curdata.global;
|
||||
|
||||
if (curheader && curheader.length !== 0) {
|
||||
curheader.forEach(item => {
|
||||
if (item.name === 'Cookie') {
|
||||
let cookieStr = item.value;
|
||||
if (cookieStr) {
|
||||
cookieStr = cookieStr.split(';').forEach(c => {
|
||||
if (c) {
|
||||
c = c.split('=');
|
||||
cookie.unshift({
|
||||
name: c[0] ? c[0].trim() : '',
|
||||
value: c[1] ? c[1].trim() : ''
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
} else {
|
||||
header.unshift(item);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (curGlobal && curGlobal.length !== 0) {
|
||||
curGlobal.forEach(item => {
|
||||
global.unshift(item);
|
||||
});
|
||||
}
|
||||
return { header, cookie, global };
|
||||
}
|
||||
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = Object.assign({}, initMap);
|
||||
}
|
||||
addHeader = (value, index, name) => {
|
||||
let nextHeader = this.state[name][index + 1];
|
||||
if (nextHeader && typeof nextHeader === 'object') {
|
||||
return;
|
||||
}
|
||||
let newValue = {};
|
||||
let data = { name: '', value: '' };
|
||||
newValue[name] = [].concat(this.state[name], data);
|
||||
this.setState(newValue);
|
||||
};
|
||||
|
||||
delHeader = (key, name) => {
|
||||
let curValue = this.props.form.getFieldValue(name);
|
||||
let newValue = {};
|
||||
newValue[name] = curValue.filter((val, index) => {
|
||||
return index !== key;
|
||||
});
|
||||
this.props.form.setFieldsValue(newValue);
|
||||
this.setState(newValue);
|
||||
};
|
||||
|
||||
handleInit(data) {
|
||||
this.props.form.resetFields();
|
||||
let newValue = this.initState(data);
|
||||
this.setState({ ...newValue });
|
||||
}
|
||||
|
||||
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||
let curEnvName = this.props.projectMsg.name;
|
||||
let nextEnvName = nextProps.projectMsg.name;
|
||||
if (curEnvName !== nextEnvName) {
|
||||
this.handleInit(nextProps.projectMsg);
|
||||
}
|
||||
}
|
||||
|
||||
handleOk = e => {
|
||||
e.preventDefault();
|
||||
const { form, onSubmit, projectMsg } = this.props;
|
||||
form.validateFields((err, values) => {
|
||||
if (!err) {
|
||||
let header = values.header.filter(val => {
|
||||
return val.name !== '';
|
||||
});
|
||||
let cookie = values.cookie.filter(val => {
|
||||
return val.name !== '';
|
||||
});
|
||||
let global = values.global.filter(val => {
|
||||
return val.name !== '';
|
||||
});
|
||||
if (cookie.length > 0) {
|
||||
header.push({
|
||||
name: 'Cookie',
|
||||
value: cookie.map(item => item.name + '=' + item.value).join(';')
|
||||
});
|
||||
}
|
||||
let assignValue = {};
|
||||
assignValue.env = Object.assign(
|
||||
{ _id: projectMsg._id },
|
||||
{
|
||||
name: values.env.name,
|
||||
domain: values.env.protocol + values.env.domain,
|
||||
header: header,
|
||||
global
|
||||
}
|
||||
);
|
||||
onSubmit(assignValue);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
render() {
|
||||
const { projectMsg } = this.props;
|
||||
const { getFieldDecorator } = this.props.form;
|
||||
const headerTpl = (item, index) => {
|
||||
const headerLength = this.state.header.length - 1;
|
||||
return (
|
||||
<Row gutter={2} key={index}>
|
||||
<Col span={10}>
|
||||
<FormItem>
|
||||
{getFieldDecorator('header[' + index + '].name', {
|
||||
validateTrigger: ['onChange', 'onBlur'],
|
||||
initialValue: item.name || ''
|
||||
})(
|
||||
<AutoComplete
|
||||
style={{ width: '200px' }}
|
||||
allowClear={true}
|
||||
dataSource={constants.HTTP_REQUEST_HEADER}
|
||||
placeholder="请输入header名称"
|
||||
onChange={() => this.addHeader(item, index, 'header')}
|
||||
filterOption={(inputValue, option) =>
|
||||
option.props.children.toUpperCase().indexOf(inputValue.toUpperCase()) !== -1
|
||||
}
|
||||
/>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<FormItem>
|
||||
{getFieldDecorator('header[' + index + '].value', {
|
||||
validateTrigger: ['onChange', 'onBlur'],
|
||||
initialValue: item.value || ''
|
||||
})(<Input placeholder="请输入参数内容" style={{ width: '90%', marginRight: 8 }} />)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col span={2} className={index === headerLength ? ' env-last-row' : null}>
|
||||
{/* 新增的项中,只有最后一项没有有删除按钮 */}
|
||||
<Icon
|
||||
className="dynamic-delete-button delete"
|
||||
type="delete"
|
||||
onClick={e => {
|
||||
e.stopPropagation();
|
||||
this.delHeader(index, 'header');
|
||||
}}
|
||||
/>
|
||||
</Col>
|
||||
</Row>
|
||||
);
|
||||
};
|
||||
|
||||
const commonTpl = (item, index, name) => {
|
||||
const length = this.state[name].length - 1;
|
||||
return (
|
||||
<Row gutter={2} key={index}>
|
||||
<Col span={10}>
|
||||
<FormItem>
|
||||
{getFieldDecorator(`${name}[${index}].name`, {
|
||||
validateTrigger: ['onChange', 'onBlur'],
|
||||
initialValue: item.name || ''
|
||||
})(
|
||||
<Input
|
||||
placeholder={`请输入 ${name} Name`}
|
||||
style={{ width: '200px' }}
|
||||
onChange={() => this.addHeader(item, index, name)}
|
||||
/>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<FormItem>
|
||||
{getFieldDecorator(`${name}[${index}].value`, {
|
||||
validateTrigger: ['onChange', 'onBlur'],
|
||||
initialValue: item.value || ''
|
||||
})(<Input placeholder="请输入参数内容" style={{ width: '90%', marginRight: 8 }} />)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col span={2} className={index === length ? ' env-last-row' : null}>
|
||||
{/* 新增的项中,只有最后一项没有有删除按钮 */}
|
||||
<Icon
|
||||
className="dynamic-delete-button delete"
|
||||
type="delete"
|
||||
onClick={e => {
|
||||
e.stopPropagation();
|
||||
this.delHeader(index, name);
|
||||
}}
|
||||
/>
|
||||
</Col>
|
||||
</Row>
|
||||
);
|
||||
};
|
||||
|
||||
const envTpl = data => {
|
||||
return (
|
||||
<div>
|
||||
<h3 className="env-label">环境名称</h3>
|
||||
<FormItem required={false}>
|
||||
{getFieldDecorator('env.name', {
|
||||
validateTrigger: ['onChange', 'onBlur'],
|
||||
initialValue: data.name === '新环境' ? '' : data.name || '',
|
||||
rules: [
|
||||
{
|
||||
required: false,
|
||||
whitespace: true,
|
||||
validator(rule, value, callback) {
|
||||
if (value) {
|
||||
if (value.length === 0) {
|
||||
callback('请输入环境名称');
|
||||
} else if (!/\S/.test(value)) {
|
||||
callback('请输入环境名称');
|
||||
} else {
|
||||
return callback();
|
||||
}
|
||||
} else {
|
||||
callback('请输入环境名称');
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
})(
|
||||
<Input
|
||||
onChange={e => this.props.handleEnvInput(e.target.value)}
|
||||
placeholder="请输入环境名称"
|
||||
style={{ width: '90%', marginRight: 8 }}
|
||||
/>
|
||||
)}
|
||||
</FormItem>
|
||||
<h3 className="env-label">环境域名</h3>
|
||||
<FormItem required={false}>
|
||||
{getFieldDecorator('env.domain', {
|
||||
validateTrigger: ['onChange', 'onBlur'],
|
||||
initialValue: data.domain ? data.domain.split('//')[1] : '',
|
||||
rules: [
|
||||
{
|
||||
required: false,
|
||||
whitespace: true,
|
||||
validator(rule, value, callback) {
|
||||
if (value) {
|
||||
if (value.length === 0) {
|
||||
callback('请输入环境域名!');
|
||||
} else if (/\s/.test(value)) {
|
||||
callback('环境域名不允许出现空格!');
|
||||
} else {
|
||||
return callback();
|
||||
}
|
||||
} else {
|
||||
callback('请输入环境域名!');
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
})(
|
||||
<Input
|
||||
placeholder="请输入环境域名"
|
||||
style={{ width: '90%', marginRight: 8 }}
|
||||
addonBefore={getFieldDecorator('env.protocol', {
|
||||
initialValue: data.domain ? data.domain.split('//')[0] + '//' : 'http://',
|
||||
rules: [
|
||||
{
|
||||
required: true
|
||||
}
|
||||
]
|
||||
})(
|
||||
<Select>
|
||||
<Option value="http://">{'http://'}</Option>
|
||||
<Option value="https://">{'https://'}</Option>
|
||||
</Select>
|
||||
)}
|
||||
/>
|
||||
)}
|
||||
</FormItem>
|
||||
<h3 className="env-label">Header</h3>
|
||||
{this.state.header.map((item, index) => {
|
||||
return headerTpl(item, index);
|
||||
})}
|
||||
|
||||
<h3 className="env-label">Cookie</h3>
|
||||
{this.state.cookie.map((item, index) => {
|
||||
return commonTpl(item, index, 'cookie');
|
||||
})}
|
||||
|
||||
<h3 className="env-label">
|
||||
global
|
||||
<a
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
href="https://hellosean1025.github.io/yapi/documents/project.html#%E9%85%8D%E7%BD%AE%E7%8E%AF%E5%A2%83"
|
||||
style={{ marginLeft: 8 }}
|
||||
>
|
||||
<Tooltip title="点击查看文档">
|
||||
<Icon type="question-circle-o" style={{fontSize: '13px'}}/>
|
||||
</Tooltip>
|
||||
</a>
|
||||
</h3>
|
||||
{this.state.global.map((item, index) => {
|
||||
return commonTpl(item, index, 'global');
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
return (
|
||||
<div>
|
||||
{envTpl(projectMsg)}
|
||||
<div className="btnwrap-changeproject">
|
||||
<Button
|
||||
className="m-btn btn-save"
|
||||
icon="save"
|
||||
type="primary"
|
||||
size="large"
|
||||
onClick={this.handleOk}
|
||||
>
|
||||
保 存
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
export default Form.create()(ProjectEnvContent);
|
||||
Reference in New Issue
Block a user