import React, {Component} from 'react'
|
import PropTypes from 'prop-types'
|
import { Form, Row, Col, Input, Select, Radio, Tooltip, InputNumber, Cascader } from 'antd'
|
import { QuestionCircleOutlined } from '@ant-design/icons'
|
import { formRule } from '@/utils/option.js'
|
|
import asyncComponent from '@/utils/asyncComponent'
|
import './index.scss'
|
|
const MKTable = asyncComponent(() => import('@/components/normalform/modalform/mkTable'))
|
const { TextArea } = Input
|
|
class ActionForm extends Component {
|
static propTpyes = {
|
formlist: PropTypes.any, // 表单信息
|
card: PropTypes.any, // 按钮信息
|
inputSubmit: PropTypes.any // 回车提交事件
|
}
|
|
state = {
|
formlist: null
|
}
|
|
record = {}
|
|
UNSAFE_componentWillMount () {
|
this.props.formlist.forEach(item => {
|
this.record[item.key] = item.initVal
|
})
|
|
let { shows, reRequired, reReadonly } = this.getMutilOptions()
|
|
this.setState({
|
formlist: this.props.formlist.map(item => {
|
item.hidden = !shows.includes(item.key)
|
item.initVal = this.record[item.key]
|
|
if (reRequired[item.key] !== undefined) {
|
item.required = reRequired[item.key]
|
}
|
if (reReadonly[item.key] !== undefined) {
|
item.readonly = reReadonly[item.key]
|
}
|
|
return item
|
})
|
})
|
}
|
|
getMutilOptions = () => {
|
let shows = []
|
let reRequired = {}
|
let reReadonly = {}
|
|
if (this.record.type === 'prev') {
|
shows = ['typeName', 'label', 'actionType']
|
if (this.record.actionType === 'close') {
|
shows.push('refreshTab', 'reload')
|
}
|
} else if (this.record.type === 'next') {
|
shows = ['typeName', 'label', 'actionType']
|
if (this.record.actionType === 'close') {
|
shows.push('refreshTab', 'reload')
|
}
|
} else if (this.record.type === 'close') {
|
shows = ['typeName', 'label', 'refreshTab', 'reload']
|
} else if (this.record.type === 'reset') {
|
shows = ['typeName', 'label']
|
} else {
|
shows = ['typeName', 'label', 'intertype', 'Ot', 'execSuccess', 'syncComponent', 'anchors', 'linkmenu', 'output', 'reload', 'preButton', 'refreshTab'] // 选项列表
|
|
if (this.record.execSuccess === 'never') {
|
shows.push('resetForms')
|
}
|
if (this.record.refreshTab && this.record.refreshTab.length) {
|
shows.push('urlPar')
|
}
|
if (this.record.syncComponent && this.record.syncComponent[0]) {
|
shows.push('syncDelay')
|
}
|
if (this.record.intertype === 'custom') {
|
shows.push('procMode', 'interface', 'callbackType', 'proInterface', 'method', 'cross', 'stringify', 'ContentType', 'outerBlacklist')
|
if (this.record.procMode === 'system') {
|
shows.push('sql', 'sqlType')
|
} else if (this.record.procMode === 'inner') {
|
shows.push('innerFunc')
|
}
|
if (this.record.callbackType === 'func') {
|
shows.push('callbackFunc')
|
} else if (this.record.callbackType !== 'none') {
|
shows.push('cbTable')
|
}
|
} else if (this.record.intertype === 'outer') {
|
shows.push('procMode', 'sysInterface', 'interface', 'outerFunc', 'callbackType')
|
if (this.record.procMode === 'system') {
|
shows.push('sql', 'sqlType')
|
} else if (this.record.procMode === 'inner') {
|
shows.push('innerFunc')
|
}
|
if (this.record.callbackType === 'func') {
|
shows.push('callbackFunc')
|
} else if (this.record.callbackType !== 'none') {
|
shows.push('cbTable')
|
}
|
|
reRequired.outerFunc = false
|
if (this.record.sysInterface === 'false') {
|
reReadonly.interface = false
|
reRequired.interface = true
|
|
shows.push('proInterface')
|
} else if (this.record.sysInterface === 'true') {
|
reReadonly.interface = true
|
reRequired.interface = false
|
reRequired.outerFunc = true
|
}
|
} else if (this.record.intertype === 'inner') {
|
shows.push('innerFunc')
|
} else {
|
shows.push('sql', 'sqlType')
|
// if (this.record.execSuccess === 'never' && this.record.resetForms && this.record.resetForms[0]) {
|
// shows.push('returnValue')
|
// }
|
}
|
|
if (this.record.syncComponent && this.record.syncComponent[0] === 'multiComponent') {
|
shows.push('syncComponents')
|
}
|
|
if (this.record.linkmenu && this.record.linkmenu !== 'goback') {
|
shows.push('open')
|
}
|
}
|
|
return {
|
shows,
|
reRequired,
|
reReadonly
|
}
|
}
|
|
/**
|
* @description 下拉切换
|
* 1、打开方式切换,重置可见表单和表单值
|
* 2、显示位置切换,重置选择行
|
* 3、切换标签类型,重置可选标签
|
*/
|
optionChange = (key, value) => {
|
this.record[key] = value
|
let _fieldval = {}
|
|
if (key === 'sysInterface') {
|
if (value === 'true') {
|
_fieldval.interface = window.GLOB.mainSystemApi || ''
|
this.record.interface = window.GLOB.mainSystemApi || ''
|
}
|
}
|
|
let { shows, reRequired, reReadonly } = this.getMutilOptions()
|
|
this.setState({
|
formlist: this.state.formlist.map(item => {
|
item.hidden = !shows.includes(item.key)
|
item.initVal = this.record[item.key]
|
|
if (reRequired[item.key] !== undefined) {
|
item.required = reRequired[item.key]
|
}
|
if (reReadonly[item.key] !== undefined) {
|
item.readonly = reReadonly[item.key]
|
}
|
|
return item
|
})
|
}, () => {
|
this.props.form.setFieldsValue(_fieldval)
|
})
|
}
|
|
handleSubmit = (e) => {
|
e.preventDefault()
|
|
if (this.props.inputSubmit) {
|
this.props.inputSubmit()
|
}
|
}
|
|
getFields() {
|
const { getFieldDecorator } = this.props.form
|
const fields = []
|
|
this.state.formlist.forEach((item, index) => {
|
if (item.hidden || item.forbid) return
|
|
let label = item.label
|
if (item.tooltip) {
|
if (item.toolWidth) {
|
label = <Tooltip placement="topLeft" overlayStyle={{maxWidth: item.toolWidth}} title={<div onClick={(e) => e.stopPropagation()}>{item.tooltip}</div>}><QuestionCircleOutlined className="mk-form-tip" />{item.label}</Tooltip>
|
} else {
|
label = <Tooltip placement="topLeft" title={<div onClick={(e) => e.stopPropagation()}>{item.tooltip}</div>}><QuestionCircleOutlined className="mk-form-tip" />{item.label}</Tooltip>
|
}
|
}
|
|
if (item.type === 'text') {
|
let _rules = []
|
if (item.key === 'innerFunc') {
|
let str = '^(' + item.fields.join('|') + ')'
|
let _patten = new RegExp(str + formRule.func.innerPattern + '$', 'g')
|
_rules = [{
|
pattern: _patten,
|
message: formRule.func.innerMessage
|
}, {
|
max: formRule.func.max,
|
message: formRule.func.maxMessage
|
}]
|
} else if (item.key === 'outerFunc' || item.key === 'callbackFunc') {
|
_rules = [{
|
pattern: formRule.func.pattern,
|
message: formRule.func.message
|
}, {
|
max: formRule.func.max,
|
message: formRule.func.maxMessage
|
}]
|
} else if (item.key === 'output') {
|
if (this.record.intertype === 'system' || ((this.record.intertype === 'outer' || this.record.intertype === 'custom') && this.record.callbackType === 'script')) {
|
_rules = [{
|
pattern: /^@[0-9a-zA-Z_]+@?$/,
|
message: '变量以@符开头,可使用字母、数字以及_'
|
}, {
|
max: 100,
|
message: '最多100个字符。'
|
}]
|
} else {
|
_rules = [{
|
pattern: /^[0-9a-zA-Z_]*$/,
|
message: '字段可使用字母、数字以及_'
|
}, {
|
max: 100,
|
message: '最多100个字符。'
|
}]
|
}
|
} else {
|
_rules = [{
|
max: formRule.input.max,
|
message: formRule.input.message
|
}]
|
}
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={label}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal || '',
|
rules: [
|
{
|
required: item.readonly ? false : !!item.required,
|
message: '请输入' + item.label + '!'
|
},
|
..._rules
|
]
|
})(<Input placeholder="" autoComplete="off" disabled={item.readonly} onPressEnter={this.handleSubmit} />)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'tip') {
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={label}>
|
{item.initVal}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'number') {
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={label}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal,
|
rules: [
|
{
|
required: item.readonly ? false : !!item.required,
|
message: '请输入' + item.label + '!'
|
}
|
]
|
})(<InputNumber min={0} max={10000} placeholder={item.placeholder || ''} precision={0} onPressEnter={this.handleSubmit}/>)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'select') { // 下拉搜索
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item help={item.help || null} label={label}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal || '',
|
rules: [
|
{
|
required: !!item.required,
|
message: '请选择' + item.label + '!'
|
}
|
]
|
})(
|
<Select
|
showSearch
|
mode={item.mode || ''}
|
filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0}
|
onChange={(value) => {this.optionChange(item.key, value)}}
|
getPopupContainer={() => document.getElementById('winter')}
|
allowClear={item.allowClear}
|
>
|
{item.options.map((option, index) =>
|
<Select.Option title={option.text || option.label} key={index} value={option.value}>
|
{option.text || option.label}
|
</Select.Option>
|
)}
|
</Select>
|
)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'radio') {
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={label}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal,
|
rules: [
|
{
|
required: !!item.required,
|
message: '请选择' + item.label + '!'
|
}
|
]
|
})(
|
<Radio.Group onChange={(e) => {this.optionChange(item.key, e.target.value)}} disabled={item.readonly}>
|
{
|
item.options.map(option => {
|
return (
|
<Radio key={option.value} value={option.value}>{option.text}</Radio>
|
)
|
})
|
}
|
</Radio.Group>
|
)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'textarea') {
|
fields.push(
|
<Col span={24} key={index}>
|
<Form.Item label={label} className="textarea">
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal,
|
rules: [
|
{
|
required: item.readonly ? false : !!item.required,
|
message: '请输入' + item.label + '!'
|
}
|
]
|
})(<TextArea rows={2} readOnly={item.readonly}/>)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'cascader') {
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={label}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal || [],
|
rules: [
|
{
|
required: !!item.required,
|
message: '请选择' + item.label + '!'
|
}
|
]
|
})(
|
<Cascader onChange={(value) => {this.optionChange(item.key, value)}} options={item.options || []} expandTrigger="hover" placeholder=""/>
|
)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'table') {
|
fields.push(
|
<Col span={24} key={index}>
|
<Form.Item label={label} className="textarea">
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal,
|
rules: [
|
{
|
required: item.required,
|
message: '请添加' + item.label + '!'
|
}
|
]
|
})(<MKTable columns={item.columns || []} actions={item.actions}/>)}
|
</Form.Item>
|
</Col>
|
)
|
}
|
})
|
return fields
|
}
|
|
handleConfirm = () => {
|
// 表单提交时检查输入值是否正确
|
return new Promise((resolve, reject) => {
|
this.props.form.validateFieldsAndScroll((err, values) => {
|
if (!err) {
|
if (values.outerBlacklist) {
|
values.outerBlacklist = values.outerBlacklist.replace(/\s/ig, '')
|
}
|
if (values.resetForms) {
|
if (values.resetForms.length === 0) {
|
values.resetForms = null
|
} else {
|
values.returnValue = 'true'
|
}
|
}
|
resolve(values)
|
} else {
|
reject(err)
|
}
|
})
|
})
|
}
|
|
render() {
|
const formItemLayout = {
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 7 }
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 17 }
|
}
|
}
|
return (
|
<Form {...formItemLayout} className="menu-form-action-list" id="winter">
|
<Row gutter={24}>{this.getFields()}</Row>
|
</Form>
|
)
|
}
|
}
|
|
export default Form.create()(ActionForm)
|