import React, {Component} from 'react'
|
import PropTypes from 'prop-types'
|
import { is, fromJS } from 'immutable'
|
import { DndProvider } from 'react-dnd'
|
import HTML5Backend from 'react-dnd-html5-backend'
|
import { Button, Card, Modal, Collapse, Switch, message, Popover } from 'antd'
|
import { SettingOutlined, CopyOutlined, SwapOutlined, DeleteOutlined } from '@ant-design/icons'
|
|
import { getModalForm } from '@/templates/zshare/formconfig'
|
import SourceElement from '@/templates/modalconfig/dragelement/source'
|
import SettingForm from '@/templates/modalconfig/settingform'
|
import asyncComponent from '@/utils/asyncComponent'
|
import { SearchItems } from '@/templates/modalconfig/source'
|
import MKEmitter from '@/utils/events.js'
|
import './index.scss'
|
|
const { Panel } = Collapse
|
const { confirm } = Modal
|
|
const MkIcon = asyncComponent(() => import('@/components/mk-icon'))
|
const TableComponent = asyncComponent(() => import('./tablecomponent'))
|
const ModalForm = asyncComponent(() => import('@/templates/zshare/modalform'))
|
const PasteForms = asyncComponent(() => import('@/menu/components/share/pasteforms'))
|
const FormFork = asyncComponent(() => import('@/menu/modalconfig/formfork'))
|
const DragElement = asyncComponent(() => import('@/templates/modalconfig/dragelement'))
|
const FieldsComponent = asyncComponent(() => import('@/templates/sharecomponent/fieldscomponent'))
|
|
class ComModalConfig extends Component {
|
static propTpyes = {
|
btn: PropTypes.object,
|
handleSave: PropTypes.func,
|
handleBack: PropTypes.func
|
}
|
|
state = {
|
config: null, // 页面配置,包括模板类型、模态框设置、添加表名、表单列表
|
visible: false, // 表单编辑模态框,显示控制
|
formlist: null, // 表单编辑模态框,可编辑字段
|
card: null, // 编辑元素
|
settingVisible: false, // 全局配置模态框
|
originConfig: null, // 原始菜单
|
sqlVerifing: false, // sql验证
|
showField: false, // 显示表单字段值
|
saving: false
|
}
|
|
/**
|
* @description 数据预处理
|
*/
|
UNSAFE_componentWillMount () {
|
const { btn } = this.props
|
|
let _config = btn.modal
|
_config.version = '1.0'
|
|
this.setState({
|
config: _config,
|
originConfig: fromJS(_config).toJS()
|
})
|
}
|
|
componentDidMount () {
|
MKEmitter.addListener('completeSave', this.completeSave)
|
}
|
|
/**
|
* @description 组件销毁,清除state更新
|
*/
|
componentWillUnmount () {
|
this.setState = () => {
|
return
|
}
|
MKEmitter.removeListener('completeSave', this.completeSave)
|
}
|
|
/**
|
* @description 表单变化
|
* 1、表单拖拽添加时,检查是否存在示例表单,如存在则去除示例
|
* 2、表单移动后,保存移动后的顺序
|
* 3、新增表单时,直接打开编辑框
|
*/
|
handleList = (list, newcard) => {
|
let _config = fromJS(this.state.config).toJS()
|
|
if (list.length > _config.fields.length) {
|
_config.fields = list
|
|
this.setState({
|
config: _config
|
}, () => {
|
this.handleForm(newcard)
|
})
|
} else {
|
_config.fields = list
|
this.setState({config: _config})
|
}
|
}
|
|
/**
|
* @description 表单编辑
|
*/
|
handleForm = (_card) => {
|
const { componentConfig, btn } = this.props
|
const { config } = this.state
|
|
let card = fromJS(_card).toJS()
|
let columns = componentConfig.columns
|
if (btn.$sub) {
|
columns = componentConfig.subColumns || []
|
}
|
|
this.setState({
|
visible: true,
|
card: card,
|
formlist: getModalForm(card, config.fields, columns)
|
})
|
}
|
|
/**
|
* @description 编辑后提交
|
* 1、获取编辑后的表单信息
|
* 2、去除可能存在的示例表单
|
* 3、通过loading刷新
|
*/
|
handleSubmit = () => {
|
let _config = fromJS(this.state.config).toJS()
|
|
this.formRef.handleConfirm(_config.fields).then(res => {
|
_config.fields = _config.fields.map(item => {
|
delete item.focus
|
|
if (item.uuid === res.values.uuid) {
|
return res.values
|
} else {
|
return item
|
}
|
})
|
|
if (res.loading) {
|
this.setState({
|
sqlVerifing: true
|
})
|
|
res.promise().then(() => {
|
this.setState({
|
sqlVerifing: false,
|
config: _config,
|
card: null,
|
visible: false
|
})
|
}, () => {
|
this.setState({sqlVerifing: false})
|
})
|
} else {
|
this.setState({
|
config: _config,
|
card: null,
|
visible: false
|
})
|
}
|
})
|
}
|
|
/**
|
* @description 表单删除并刷新
|
*/
|
closeForm = (card) => {
|
let that = this
|
|
confirm({
|
content: `确定删除${card.label ? `<<${card.label}>>` : ''}吗?`,
|
onOk() {
|
let _config = fromJS(that.state.config).toJS()
|
_config.fields = _config.fields.filter(item => !(item.uuid === card.uuid))
|
|
that.setState({
|
config: _config,
|
})
|
},
|
onCancel() {}
|
})
|
}
|
|
submitConfig = () => {
|
const { config } = this.state
|
|
this.setState({originConfig: fromJS(config).toJS(), saving: true})
|
this.props.handleSave(config)
|
|
setTimeout(() => {
|
MKEmitter.emit('triggerMenuSave')
|
}, 100)
|
}
|
|
clearConfig = () => {
|
const that = this
|
let _config = {...this.state.config, fields: []}
|
|
confirm({
|
content: '确定清空表单吗?',
|
onOk() {
|
that.setState({ config: _config })
|
},
|
onCancel() {}
|
})
|
}
|
|
completeSave = () => {
|
this.setState({saving: false})
|
}
|
|
cancelConfig = () => {
|
const { config, originConfig } = this.state
|
|
if (!is(fromJS(config), fromJS(originConfig))) {
|
let that = this
|
confirm({
|
content: '配置信息未保存,确定返回吗?',
|
onOk() {
|
that.props.handleBack()
|
},
|
onCancel() {}
|
})
|
} else {
|
this.props.handleBack()
|
}
|
}
|
|
/**
|
* @description 全局设置模态框
|
*/
|
changeSetting = () => {
|
this.setState({
|
settingVisible: true
|
})
|
}
|
|
/**
|
* @description 保存全局设置
|
*/
|
settingSave = () => {
|
const {config} = this.state
|
this.settingRef.handleConfirm().then(res => {
|
this.setState({
|
config: {...config, setting: res},
|
settingVisible: false
|
})
|
})
|
}
|
|
editModalCancel = () => {
|
const { config, card } = this.state
|
|
if (card.focus) {
|
let _fields = config.fields.filter(item => item.uuid !== card.uuid)
|
let _config = {...config, fields: _fields}
|
|
this.setState({
|
card: null,
|
config: _config,
|
visible: false
|
})
|
} else {
|
this.setState({
|
card: null,
|
visible: false
|
})
|
}
|
}
|
|
/**
|
* @description 更新
|
*/
|
updateConfig = (config) => {
|
this.setState({
|
config
|
})
|
}
|
|
changecols = (type) => {
|
let config = fromJS(this.state.config).toJS()
|
let that = this
|
|
config.fields = config.fields.map(item => {
|
item.labelwidth = 33.3
|
item.span = 24
|
if (['textarea','split','hint','checkcard','brafteditor'].includes(item.type)) {
|
if (type === 2) {
|
item.labelwidth = 16.3
|
} else if (type === 3) {
|
item.labelwidth = 10.5
|
} else if (type === 4) {
|
item.labelwidth = 8.3
|
}
|
} else if (type === 2) {
|
item.span = 12
|
} else if (type === 3) {
|
item.span = 8
|
} else if (type === 4) {
|
item.span = 6
|
}
|
return item
|
})
|
|
confirm({
|
content: `确定切换为${type}列吗?`,
|
onOk() {
|
that.setState({config})
|
},
|
onCancel() {}
|
})
|
}
|
|
plusFields = (items) => {
|
let _config = fromJS(this.state.config).toJS()
|
|
_config.fields.push(...items)
|
|
this.setState({
|
config: _config
|
}, () => {
|
if (items.length === 1 && items[0].focus) {
|
this.handleForm(items[0])
|
}
|
})
|
}
|
|
pasteFields = (items) => {
|
let _config = fromJS(this.state.config).toJS()
|
_config.fields = items
|
|
this.setState({
|
config: _config
|
})
|
}
|
|
triggerCopy = () => {
|
const { config } = this.state
|
|
let val = {
|
copyType: 'forms',
|
fields: config.fields || []
|
}
|
|
if (val.fields.length === 0) {
|
message.warning('表单元素不可为空!')
|
return
|
}
|
|
try {
|
val = window.btoa(window.encodeURIComponent(JSON.stringify(val)))
|
} catch (e) {
|
console.warn(e)
|
message.warning('复制失败,请重试!')
|
val = ''
|
}
|
|
if (val) {
|
let oInput = document.createElement('input')
|
oInput.value = val
|
document.body.appendChild(oInput)
|
oInput.select()
|
document.execCommand('Copy')
|
document.body.removeChild(oInput)
|
|
message.success('复制成功。')
|
}
|
}
|
|
render () {
|
const { btn } = this.props
|
const { config, saving, card } = this.state
|
|
return (
|
<div className="modal-form-board">
|
<DndProvider backend={HTML5Backend}>
|
<div className="tools">
|
<Collapse accordion defaultActiveKey="1" bordered={false}>
|
<Panel header="基本信息" key="0">
|
<TableComponent />
|
</Panel>
|
<Panel header="表单" key="1">
|
<div className="search-element">
|
{SearchItems.map((item, index) => {
|
return (<SourceElement key={index} content={item}/>)
|
})}
|
</div>
|
<FieldsComponent config={config} type="form" plusFields={this.plusFields}/>
|
</Panel>
|
</Collapse>
|
</div>
|
<div className="setting">
|
<Card title="表单配置" bordered={false} extra={
|
<div>
|
<PasteForms type="toolbar" config={config} update={this.pasteFields}/>
|
<Button type="primary" id="save-modal-config" loading={saving} onClick={this.submitConfig}>保存</Button>
|
<Button disabled={saving} onClick={this.cancelConfig}>返回</Button>
|
</div>
|
} style={{ width: '100%' }}>
|
<SettingOutlined onClick={this.changeSetting} />
|
<div className="ant-modal-content" style={{width: config.setting.width > 100 ? config.setting.width : config.setting.width + '%'}}>
|
<div className="ant-modal-header">
|
<div className="ant-modal-title">{config.setting.icon ? <span className={'mk-modal-icon-' + config.setting.iconType} style={{background: config.setting.iconColor || 'unset', color: config.setting.iconColor || 'inherit'}}><MkIcon type={config.setting.icon}/></span> : null}{btn.label}</div>
|
<div className="mk-form-tool">
|
<DeleteOutlined title="清空" onClick={this.clearConfig} />
|
<Popover title="切换布局" overlayClassName="mk-popover-control-wrap" mouseLeaveDelay={0.2} mouseEnterDelay={0.2} content={
|
<>
|
<Button style={{marginRight: '10px'}} onClick={() => this.changecols(1)}>1列</Button>
|
<Button style={{marginRight: '10px'}} onClick={() => this.changecols(2)}>2列</Button>
|
<Button style={{marginRight: '10px'}} onClick={() => this.changecols(3)}>3列</Button>
|
<Button onClick={() => this.changecols(4)}>4列</Button>
|
</>
|
} trigger="hover">
|
<SwapOutlined />
|
</Popover>
|
<FormFork forms={config.fields}/>
|
<CopyOutlined title="复制" onClick={this.triggerCopy} />
|
<Switch checkedChildren="开" unCheckedChildren="关" defaultChecked={this.state.showField} onChange={(val) => this.setState({showField: val})} />
|
</div>
|
</div>
|
<div className="ant-modal-body">
|
<div className="modal-form">
|
<DragElement
|
list={config.fields}
|
setting={config.setting}
|
showField={this.state.showField}
|
handleList={this.handleList}
|
handleForm={this.handleForm}
|
closeForm={this.closeForm}
|
/>
|
</div>
|
</div>
|
<div className="ant-modal-footer">
|
<div>
|
<button type="button" className="ant-btn">
|
<span>取消</span>
|
</button>
|
<button type="button" className="ant-btn ant-btn-primary">
|
<span>确定</span>
|
</button>
|
</div>
|
<div className="action-mask"></div>
|
</div>
|
</div>
|
</Card>
|
</div>
|
</DndProvider>
|
<Modal
|
title={card && card.$copy ? '复制' : '编辑'}
|
wrapClassName="mk-scroll-modal"
|
visible={this.state.visible}
|
width={950}
|
maskClosable={false}
|
onCancel={this.editModalCancel}
|
onOk={this.handleSubmit}
|
confirmLoading={this.state.sqlVerifing}
|
destroyOnClose
|
>
|
<ModalForm
|
card={card}
|
formlist={this.state.formlist}
|
inputSubmit={this.handleSubmit}
|
fields={config.fields}
|
wrappedComponentRef={(inst) => this.formRef = inst}
|
/>
|
</Modal>
|
<Modal
|
title="编辑"
|
visible={this.state.settingVisible}
|
width={850}
|
maskClosable={false}
|
onOk={this.settingSave}
|
onCancel={() => { this.setState({ settingVisible: false }) }}
|
destroyOnClose
|
>
|
<SettingForm
|
config={config}
|
isSubTab={!!this.props.editTab}
|
inputSubmit={this.settingSave}
|
wrappedComponentRef={(inst) => this.settingRef = inst}
|
/>
|
</Modal>
|
</div>
|
)
|
}
|
}
|
|
export default ComModalConfig
|