import React, {Component} from 'react'
|
import PropTypes from 'prop-types'
|
import { fromJS } from 'immutable'
|
import { Form, Row, Col, Input, Select, Icon, Radio, Tooltip, InputNumber, notification } from 'antd'
|
|
import { formRule } from '@/utils/option.js'
|
import FileUpload from '@/tabviews/zshare/fileupload'
|
import ColorSketch from '@/mob/colorsketch'
|
import './index.scss'
|
|
const cardTypeOptions = {
|
text: ['eleType', 'datatype', 'value', 'format', 'fontSize', 'fontWeight', 'width', 'height', 'align', 'padding', 'prefix', 'postfix'],
|
number: ['eleType', 'datatype', 'value', 'format', 'fontSize', 'fontWeight', 'width', 'height', 'align', 'padding', 'prefix', 'postfix'],
|
picture: ['eleType', 'datatype', 'width', 'lenWidRadio', 'radius', 'padding', 'url'],
|
icon: ['eleType', 'icon', 'fontSize', 'width', 'height', 'align', 'padding', 'tooltip'],
|
link: ['eleType', 'datatype', 'value', 'labelfield', 'fontSize', 'width', 'height', 'align', 'padding', 'prefix'],
|
slider: ['eleType', 'field', 'width', 'color', 'padding', 'maxValue'],
|
splitline: ['eleType', 'color', 'width', 'padding'],
|
}
|
|
class MainSearch extends Component {
|
static propTpyes = {
|
dict: PropTypes.object, // 字典项
|
config: PropTypes.object, // 组件信息
|
formlist: PropTypes.any, // 表单信息
|
card: PropTypes.any, // 按钮信息
|
inputSubmit: PropTypes.any // 回车提交事件
|
}
|
|
state = {
|
formlist: null, // 表单信息
|
eleType: '',
|
datatype: ''
|
}
|
|
|
UNSAFE_componentWillMount () {
|
const { card, config } = this.props
|
|
let _options = this.getOptions(card.eleType, card.datatype)
|
|
this.setState({
|
eleType: card.eleType,
|
datatype: card.datatype,
|
formlist: this.props.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
if (item.key === 'field') {
|
item.options = []
|
config.columns.forEach(col => {
|
if (!/^Nvarchar/ig.test(col.datatype) && (card.eleType === 'number' || card.eleType === 'slider')) {
|
item.options.push({
|
value: col.field,
|
text: col.label
|
})
|
} else if (/^Nvarchar/ig.test(col.datatype) && card.eleType !== 'number' && card.eleType !== 'slider') {
|
item.options.push({
|
value: col.field,
|
text: col.label
|
})
|
}
|
})
|
} else if (item.key === 'labelfield') {
|
item.options = []
|
config.columns.forEach(col => {
|
if (/^Nvarchar/ig.test(col.datatype)) {
|
item.options.push({
|
value: col.field,
|
text: col.label
|
})
|
}
|
})
|
}
|
|
return item
|
})
|
})
|
}
|
|
getOptions = (eleType, datatype) => {
|
let _options = fromJS(cardTypeOptions[eleType]).toJS() // 选项列表
|
|
if (['text', 'number', 'picture', 'link'].includes(eleType)) {
|
if (datatype === 'dynamic') {
|
_options.push('field')
|
}
|
}
|
|
return _options
|
}
|
|
/**
|
* @description 下拉切换
|
* 1、打开方式切换,重置可见表单和表单值
|
* 2、显示位置切换,重置选择行
|
* 3、切换标签类型,重置可选标签
|
*/
|
selectChange = (key, value, option) => {
|
const { config } = this.props
|
const { datatype } = this.state
|
|
if (key === 'eleType') {
|
let _options = this.getOptions(value, datatype)
|
|
let _formlist = this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
if (item.key === 'field') {
|
item.options = []
|
config.columns.forEach(col => {
|
if (!/^Nvarchar/ig.test(col.datatype) && (value === 'number' || value === 'slider')) {
|
item.options.push({
|
value: col.field,
|
text: col.label
|
})
|
} else if (/^Nvarchar/ig.test(col.datatype) && value !== 'number' && value !== 'slider') {
|
item.options.push({
|
value: col.field,
|
text: col.label
|
})
|
}
|
})
|
}
|
|
return item
|
})
|
|
this.setState({
|
eleType: value,
|
formlist: _formlist
|
}, () => {
|
if (value === 'slider') {
|
this.props.form.setFieldsValue({width: 24, color: '#1890ff'})
|
} else if (value === 'splitline') {
|
this.props.form.setFieldsValue({width: 24, color: '#e8e8e8'})
|
}
|
})
|
} else if (key === 'field') {
|
if (this.props.form.getFieldValue('value') !== undefined) {
|
this.props.form.setFieldsValue({value: option.props.title})
|
}
|
}
|
}
|
|
onChange = (e, key) => {
|
const { eleType } = this.state
|
let value = e.target.value
|
|
if (key === 'datatype') {
|
let _options = this.getOptions(eleType, value)
|
|
this.setState({
|
datatype: value,
|
formlist: this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
return item
|
})
|
})
|
}
|
}
|
|
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) return
|
|
if (item.type === 'text') { // 文本搜索
|
let rules = []
|
|
if (item.key === 'padding') {
|
rules = [{
|
pattern: /^\d+px$|^\d+px\s\d+px$|^\d+px\s\d+px\s\d+px$|^\d+px\s\d+px\s\d+px\s\d+px$/ig,
|
message: '请正确输入内边距!'
|
}]
|
}
|
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={item.tooltip ?
|
<Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
|
<Icon type="question-circle" />
|
{item.label}
|
</Tooltip> : item.label
|
}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal || '',
|
rules: [
|
{
|
required: item.readonly ? false : !!item.required,
|
message: this.props.dict['form.required.input'] + item.label + '!'
|
},
|
{
|
max: formRule.input.max,
|
message: formRule.input.message
|
},
|
...rules
|
]
|
})(<Input placeholder="" autoComplete="off" disabled={item.readonly} onPressEnter={this.handleSubmit} />)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'number') {
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={item.tooltip ?
|
<Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
|
<Icon type="question-circle" />
|
{item.label}
|
</Tooltip> : item.label
|
}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal,
|
rules: [
|
{
|
required: item.readonly ? false : !!item.required,
|
message: this.props.dict['form.required.input'] + item.label + '!'
|
}
|
]
|
})(<InputNumber min={item.min || 0} max={item.max || 10000} precision={item.precision || 0} />)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'select') { // 下拉搜索
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={item.tooltip ?
|
<Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
|
<Icon type="question-circle" />
|
{item.label}
|
</Tooltip> : item.label
|
}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal || '',
|
rules: [
|
{
|
required: !!item.required,
|
message: this.props.dict['form.required.select'] + item.label + '!'
|
}
|
]
|
})(
|
<Select
|
showSearch
|
filterOption={(input, option) => option.props.children[2].toLowerCase().indexOf(input.toLowerCase()) >= 0}
|
onChange={(value, option) => {this.selectChange(item.key, value, option)}}
|
getPopupContainer={() => document.getElementById('card-winter')}
|
>
|
{item.options.map((option, index) =>
|
<Select.Option id={`${index}`} title={option.text} key={`${index}`} value={option.value}>
|
{item.key === 'icon' && option.value && <Icon type={option.value} />} {option.text}
|
</Select.Option>
|
)}
|
</Select>
|
)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'radio') {
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={item.label}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal,
|
rules: [
|
{
|
required: !!item.required,
|
message: this.props.dict['form.required.select'] + item.label + '!'
|
}
|
]
|
})(
|
<Radio.Group onChange={(e) => {this.onChange(e, item.key)}} 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 === 'color') {
|
fields.push(
|
<Col span={12} key={index} className="color-form">
|
<Form.Item label={item.label}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal,
|
rules: [
|
{
|
required: !!item.required,
|
message: this.props.dict['form.required.select'] + item.label + '!'
|
}
|
]
|
})(
|
<ColorSketch />
|
)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'file') {
|
let filelist = []
|
if (item.initVal) {
|
filelist = [{
|
uid: `1`,
|
name: item.initVal.slice(item.initVal.lastIndexOf('/') + 1),
|
status: 'done',
|
url: item.initVal,
|
origin: true
|
}]
|
}
|
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={item.label}>
|
{getFieldDecorator(item.key, {
|
initialValue: filelist,
|
rules: [
|
{
|
required: !!item.required,
|
message: this.props.dict['form.required.select'] + item.label + '!'
|
}
|
]
|
})(
|
<FileUpload maxFile={item.maxfile} fileType={'text'} />
|
)}
|
</Form.Item>
|
</Col>
|
)
|
}
|
})
|
return fields
|
}
|
|
handleConfirm = () => {
|
// 表单提交时检查输入值是否正确
|
return new Promise((resolve, reject) => {
|
this.props.form.validateFieldsAndScroll((err, values) => {
|
if (!err) {
|
values.uuid = this.props.card.uuid
|
values.marks = this.props.card.marks || null
|
|
if (values.url) {
|
if (values.url.length > 0) {
|
if (values.url[0].origin && values.url[0].url) {
|
values.url = values.url[0].url
|
} else if (!values.url[0].origin && values.url[0].status === 'done' && values.url[0].response) {
|
values.url = values.url[0].response
|
} else {
|
values.url = ''
|
}
|
} else {
|
values.url = ''
|
}
|
}
|
|
if (values.eleType === 'picture' && values.datatype === 'static' && !values.url) {
|
notification.warning({
|
top: 92,
|
message: '尚未添加图片或图片上传失败,请重新添加!',
|
duration: 5
|
})
|
return
|
}
|
|
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-card-detail-form" id="card-winter">
|
<Row gutter={24}>{this.getFields()}</Row>
|
</Form>
|
)
|
}
|
}
|
|
export default Form.create()(MainSearch)
|