240 lines
6.8 KiB
JavaScript
240 lines
6.8 KiB
JavaScript
import React, { Component } from 'react';
|
||
import { connect } from 'react-redux';
|
||
import PropTypes from 'prop-types';
|
||
import { formatTime } from 'client/common.js';
|
||
import { Form, Switch, Button, Icon, Tooltip, message, Input, Select } from 'antd';
|
||
import {handleSwaggerUrlData} from 'client/reducer/modules/project';
|
||
const FormItem = Form.Item;
|
||
const Option = Select.Option;
|
||
import axios from 'axios';
|
||
|
||
// layout
|
||
const formItemLayout = {
|
||
labelCol: {
|
||
lg: { span: 5 },
|
||
xs: { span: 24 },
|
||
sm: { span: 10 }
|
||
},
|
||
wrapperCol: {
|
||
lg: { span: 16 },
|
||
xs: { span: 24 },
|
||
sm: { span: 12 }
|
||
},
|
||
className: 'form-item'
|
||
};
|
||
const tailFormItemLayout = {
|
||
wrapperCol: {
|
||
sm: {
|
||
span: 16,
|
||
offset: 11
|
||
}
|
||
}
|
||
};
|
||
|
||
@connect(
|
||
state => {
|
||
return {
|
||
projectMsg: state.project.currProject
|
||
};
|
||
},
|
||
{
|
||
handleSwaggerUrlData
|
||
}
|
||
)
|
||
@Form.create()
|
||
export default class ProjectInterfaceSync extends Component {
|
||
static propTypes = {
|
||
form: PropTypes.object,
|
||
match: PropTypes.object,
|
||
projectId: PropTypes.number,
|
||
projectMsg: PropTypes.object,
|
||
handleSwaggerUrlData: PropTypes.func
|
||
};
|
||
|
||
constructor(props) {
|
||
super(props);
|
||
this.state = {
|
||
sync_data: { is_sync_open: false }
|
||
};
|
||
}
|
||
|
||
handleSubmit = async () => {
|
||
const { form, projectId } = this.props;
|
||
let params = {
|
||
project_id: projectId,
|
||
is_sync_open: this.state.sync_data.is_sync_open,
|
||
uid: this.props.projectMsg.uid
|
||
};
|
||
if (this.state.sync_data._id) {
|
||
params.id = this.state.sync_data._id;
|
||
}
|
||
form.validateFields(async (err, values) => {
|
||
if (!err) {
|
||
let assignValue = Object.assign(params, values);
|
||
await axios.post('/api/plugin/autoSync/save', assignValue).then(res => {
|
||
if (res.data.errcode === 0) {
|
||
message.success('保存成功');
|
||
} else {
|
||
message.error(res.data.errmsg);
|
||
}
|
||
});
|
||
}
|
||
});
|
||
|
||
};
|
||
|
||
validSwaggerUrl = async (rule, value, callback) => {
|
||
if(!value)return;
|
||
try{
|
||
await this.props.handleSwaggerUrlData(value);
|
||
} catch(e) {
|
||
callback('swagger地址不正确');
|
||
}
|
||
callback()
|
||
}
|
||
|
||
UNSAFE_componentWillMount() {
|
||
//查询同步任务
|
||
this.setState({
|
||
sync_data: {}
|
||
});
|
||
//默认每份钟同步一次,取一个随机数
|
||
this.setState({
|
||
random_corn: '*/2 * * * *'
|
||
});
|
||
this.getSyncData();
|
||
}
|
||
|
||
async getSyncData() {
|
||
let projectId = this.props.projectMsg._id;
|
||
let result = await axios.get('/api/plugin/autoSync/get?project_id=' + projectId);
|
||
if (result.data.errcode === 0) {
|
||
if (result.data.data) {
|
||
this.setState({
|
||
sync_data: result.data.data
|
||
});
|
||
}
|
||
}
|
||
}
|
||
|
||
// 是否开启
|
||
onChange = v => {
|
||
let sync_data = this.state.sync_data;
|
||
sync_data.is_sync_open = v;
|
||
this.setState({
|
||
sync_data: sync_data
|
||
});
|
||
};
|
||
|
||
sync_cronCheck(rule, value, callback){
|
||
if(!value)return;
|
||
value = value.trim();
|
||
if(value.split(/ +/).length > 5){
|
||
callback('不支持秒级别的设置,建议使用 "*/10 * * * *" ,每隔10分钟更新')
|
||
}
|
||
callback()
|
||
}
|
||
|
||
render() {
|
||
const { getFieldDecorator } = this.props.form;
|
||
return (
|
||
<div className="m-panel">
|
||
<Form>
|
||
<FormItem
|
||
label="是否开启自动同步"
|
||
{...formItemLayout}
|
||
>
|
||
<Switch
|
||
checked={this.state.sync_data.is_sync_open}
|
||
onChange={this.onChange}
|
||
checkedChildren="开"
|
||
unCheckedChildren="关"
|
||
/>
|
||
{this.state.sync_data.last_sync_time != null ? (<div>上次更新时间:<span className="logtime">{formatTime(this.state.sync_data.last_sync_time)}</span></div>) : null}
|
||
</FormItem>
|
||
|
||
<div>
|
||
<FormItem {...formItemLayout} label={
|
||
<span className="label">
|
||
数据同步
|
||
<Tooltip
|
||
title={
|
||
<div>
|
||
<h3 style={{ color: 'white' }}>普通模式</h3>
|
||
<p>不导入已存在的接口</p>
|
||
<br />
|
||
<h3 style={{ color: 'white' }}>智能合并</h3>
|
||
<p>
|
||
已存在的接口,将合并返回数据的 response,适用于导入了 swagger
|
||
数据,保留对数据结构的改动
|
||
</p>
|
||
<br />
|
||
<h3 style={{ color: 'white' }}>完全覆盖</h3>
|
||
<p>不保留旧数据,完全使用新数据,适用于接口定义完全交给后端定义</p>
|
||
</div>
|
||
}
|
||
>
|
||
<Icon type="question-circle-o" />
|
||
</Tooltip>{' '}
|
||
</span>
|
||
}>
|
||
{getFieldDecorator('sync_mode', {
|
||
initialValue: this.state.sync_data.sync_mode,
|
||
rules: [
|
||
{
|
||
required: true,
|
||
message: '请选择同步方式!'
|
||
}
|
||
]
|
||
})(
|
||
|
||
<Select>
|
||
<Option value="normal">普通模式</Option>
|
||
<Option value="good">智能合并</Option>
|
||
<Option value="merge">完全覆盖</Option>
|
||
</Select>
|
||
)}
|
||
</FormItem>
|
||
|
||
<FormItem {...formItemLayout} label="项目的swagger json地址">
|
||
{getFieldDecorator('sync_json_url', {
|
||
rules: [
|
||
{
|
||
required: true,
|
||
message: '输入swagger地址'
|
||
},
|
||
{
|
||
validator: this.validSwaggerUrl
|
||
}
|
||
],
|
||
validateTrigger: 'onBlur',
|
||
initialValue: this.state.sync_data.sync_json_url
|
||
})(<Input />)}
|
||
</FormItem>
|
||
|
||
<FormItem {...formItemLayout} label={<span>类cron风格表达式(默认10分钟更新一次) <a href="https://blog.csdn.net/shouldnotappearcalm/article/details/89469047">参考</a></span>}>
|
||
{getFieldDecorator('sync_cron', {
|
||
rules: [
|
||
{
|
||
required: true,
|
||
message: '输入node-schedule的类cron表达式!'
|
||
},
|
||
{
|
||
validator: this.sync_cronCheck
|
||
}
|
||
],
|
||
initialValue: this.state.sync_data.sync_cron ? this.state.sync_data.sync_cron : this.state.random_corn
|
||
})(<Input />)}
|
||
</FormItem>
|
||
</div>
|
||
<FormItem {...tailFormItemLayout}>
|
||
<Button type="primary" htmlType="submit" icon="save" size="large" onClick={this.handleSubmit}>
|
||
保存
|
||
</Button>
|
||
</FormItem>
|
||
</Form>
|
||
</div>
|
||
);
|
||
}
|
||
}
|