import React, {Component} from 'react'
|
import PropTypes from 'prop-types'
|
import { fromJS } from 'immutable'
|
import { Form, notification, Modal, Spin, Tabs } from 'antd'
|
import moment from 'moment'
|
|
import Api from '@/api'
|
import Utils from '@/utils/utils.js'
|
import SettingUtils from './utils.jsx'
|
import asyncComponent from '@/utils/asyncComponent'
|
import DataSource from './datasource'
|
import './index.scss'
|
|
const { TabPane } = Tabs
|
const CustomScript = asyncComponent(() => import('@/templates/zshare/customscript'))
|
const SimpleScript = asyncComponent(() => import('./simplescript'))
|
|
class SettingForm extends Component {
|
static propTpyes = {
|
dict: PropTypes.object, // 字典项
|
menu: PropTypes.object, // 菜单信息
|
config: PropTypes.object, // 页面配置信息
|
search: PropTypes.array, // 搜索条件
|
updRecord: PropTypes.func
|
}
|
|
state = {
|
formlist: [],
|
btnloading: false,
|
activeKey: 'setting',
|
search: '',
|
arr_field: '',
|
regoptions: [],
|
setting: null,
|
defaultSql: '',
|
status: {}
|
}
|
|
UNSAFE_componentWillMount() {
|
const { config, search } = this.props
|
|
let _setting = fromJS(config.setting).toJS()
|
let _scripts = _setting.scripts || []
|
let _preScripts = _setting.preScripts || []
|
let _cbScripts = _setting.cbScripts || []
|
|
_setting.default = _setting.default || 'true' // 默认sql
|
_setting.sysInterface = _setting.sysInterface || 'false' // 是否为系统接口
|
_setting.interface = _setting.sysInterface === 'true' ? (window.GLOB.mainSystemApi || '') : (_setting.interface || '')
|
|
// 显示列字段,用于查询
|
let columns = []
|
let arr_field = []
|
config.columns.forEach(col => {
|
if (col.field) {
|
columns.push({
|
value: col.field,
|
text: col.label
|
})
|
arr_field.push(col.field)
|
}
|
if (col.nameField) { // 链接的名称字段
|
arr_field.push(col.nameField)
|
}
|
})
|
|
if (_setting.primaryKey && !arr_field.includes(_setting.primaryKey)) {
|
_setting.primaryKey = ''
|
}
|
if (!_setting.primaryKey && arr_field.length > 0) {
|
arr_field.forEach(field => {
|
if (field.toLowerCase() === 'id') {
|
_setting.primaryKey = field
|
}
|
})
|
}
|
|
// 搜索的where条件
|
let _search = this.formatSearch(search)
|
_search = Utils.joinMainSearchkey(_search)
|
|
_search = _search.replace(/@\$@/ig, '')
|
_search = _search ? 'where ' + _search : ''
|
|
let status = fromJS(_setting).toJS()
|
status.requestMode = status.requestMode || 'system'
|
status.procMode = status.procMode || 'script'
|
status.callbackType = status.callbackType || 'script'
|
let regoptions = this.getRegOptions(search)
|
|
if (config.urlFields && config.urlFields.length > 0) {
|
config.urlFields.forEach(field => {
|
regoptions.push({
|
key: field,
|
value: '0',
|
type: 'url'
|
})
|
})
|
}
|
|
if (window.GLOB.funcs && window.GLOB.funcs.length > 0) {
|
window.GLOB.funcs.forEach(m => {
|
let reg = new RegExp(`\\/\\*\\$ex@${m.func_code}-begin\\*\\/[\\s\\S]+\\/\\*@ex\\$-end\\*\\/`, 'ig')
|
_scripts.forEach(item => {
|
item.sql = item.sql.replace(reg, `$ex@${m.func_code}@ex$`)
|
})
|
_preScripts.forEach(item => {
|
item.sql = item.sql.replace(reg, `$ex@${m.func_code}@ex$`)
|
})
|
_cbScripts.forEach(item => {
|
item.sql = item.sql.replace(reg, `$ex@${m.func_code}@ex$`)
|
})
|
if (_setting.dataresource) {
|
_setting.dataresource = _setting.dataresource.replace(reg, `$ex@${m.func_code}@ex$`)
|
}
|
})
|
}
|
|
this.setState({
|
setting: _setting,
|
search: _search,
|
arr_field: arr_field.join(','),
|
regoptions: regoptions, // 搜索条件,正则替换
|
columns: columns,
|
scripts: _scripts,
|
preScripts: _preScripts,
|
cbScripts: _cbScripts,
|
status
|
})
|
}
|
|
componentDidMount () {
|
this.props.updRecord(this.state.status)
|
}
|
|
getRegOptions = (searches) => {
|
if (!searches || searches.length === 0) return []
|
|
let options = []
|
let fieldmap = new Map()
|
searches.forEach(search => {
|
let item = {
|
key: search.field,
|
value: '0'
|
}
|
|
if (fieldmap.has(item.key)) {
|
item.key = item.key + '1'
|
}
|
|
fieldmap.set(item.key, true)
|
|
if (search.type === 'group') {
|
options.push({
|
key: search.field,
|
value: '0'
|
})
|
options.push({
|
key: search.datefield,
|
value: '0'
|
})
|
options.push({
|
key: search.datefield + '1',
|
value: '0'
|
})
|
options.push(item)
|
} else if (['datemonth', 'dateweek', 'daterange'].includes(search.type)) {
|
options.push(item)
|
options.push({
|
key: item.key + '1',
|
value: '0'
|
})
|
} else if (search.type === 'text' || search.type === 'select') {
|
item.key.split(',').forEach(field => {
|
let cell = JSON.parse(JSON.stringify(item))
|
cell.key = field
|
|
options.push(cell)
|
})
|
} else {
|
options.push(item)
|
}
|
})
|
|
return options
|
}
|
|
/**
|
* @description 获取全部搜索条件
|
* @param {Array} searches 搜索条件数组
|
*/
|
formatSearch (searches) {
|
if (!searches || searches.length === 0) return []
|
|
let newsearches = []
|
searches.forEach(search => {
|
if (!search.field) return
|
|
let item = {
|
key: search.field,
|
match: search.match,
|
type: search.type,
|
label: search.label,
|
value: search.initval,
|
required: search.required === 'true'
|
}
|
|
if (item.type === 'group') {
|
item.key = search.datefield
|
item.type = 'daterange'
|
item.match = 'between'
|
item.value = [moment().format('YYYY-MM-DD'), moment().format('YYYY-MM-DD')].join(',')
|
|
newsearches.push(item)
|
return
|
} else if (item.type === 'date') {
|
item.value = moment().format('YYYY-MM-DD')
|
} else if (item.type === 'datemonth') {
|
item.value = moment().format('YYYY-MM')
|
} else if (item.type === 'dateweek') {
|
item.value = moment().format('YYYY-MM-DD')
|
} else if (item.type === 'daterange') {
|
item.value = [moment().format('YYYY-MM-DD'), moment().format('YYYY-MM-DD')].join(',')
|
} else if (item.type === 'multiselect' || (item.type === 'checkcard' && search.multiple === 'true')) {
|
item.type = 'multi'
|
item.value = '@$@'
|
} else {
|
item.value = '@$@'
|
}
|
newsearches.push(item)
|
})
|
|
return newsearches
|
}
|
|
handleConfirm = (trigger) => {
|
const { activeKey, setting, scripts, preScripts, cbScripts } = this.state
|
|
let _loading = false
|
if (this.scriptsForm && this.scriptsForm.props.form.getFieldValue('sql') && !/^\s+$/.test(this.scriptsForm.props.form.getFieldValue('sql'))) {
|
_loading = true
|
} else if (this.preScriptsForm && this.preScriptsForm.props.form.getFieldValue('sql') && !/^\s+$/.test(this.preScriptsForm.props.form.getFieldValue('sql'))) {
|
_loading = true
|
} else if (this.cbScriptsForm && this.cbScriptsForm.props.form.getFieldValue('sql') && !/^\s+$/.test(this.cbScriptsForm.props.form.getFieldValue('sql'))) {
|
_loading = true
|
}
|
|
if (_loading) {
|
notification.warning({
|
top: 92,
|
message: '存在未保存脚本,请点击确定保存,或点击取消放弃修改!',
|
duration: 5
|
})
|
return Promise.reject()
|
}
|
|
if (trigger) {
|
this.setState({loading: true})
|
}
|
|
// 表单提交时检查输入值是否正确
|
if (activeKey === 'setting') {
|
return new Promise((resolve, reject) => {
|
this.settingForm.handleConfirm().then(res => {
|
this.setState({
|
setting: res
|
}, () => {
|
this.sqlverify(() => {
|
this.setState({loading: false})
|
resolve({...res, scripts, preScripts, cbScripts})
|
}, () => {
|
this.setState({loading: false})
|
reject()
|
}, 'submit')
|
})
|
}, () => {
|
this.setState({loading: false})
|
reject()
|
})
|
})
|
} else if (activeKey === 'scripts') {
|
return new Promise((resolve, reject) => {
|
this.sqlverify(() => {
|
this.setState({loading: false})
|
resolve({...setting, scripts, preScripts, cbScripts})
|
}, () => {
|
this.setState({loading: false})
|
reject()
|
}, 'submit')
|
})
|
} else {
|
this.setState({loading: false})
|
return new Promise((resolve) => {
|
resolve({...setting, scripts, preScripts, cbScripts})
|
})
|
}
|
}
|
|
sqlverify = (_resolve, _reject, type, uscripts) => {
|
const { setting, scripts, arr_field, regoptions, search } = this.state
|
|
if (setting.interType !== 'system' && setting.requestMode !== 'system') { // 不使用系统接口时,不需要sql验证
|
_resolve()
|
return
|
}
|
|
let _scripts = []
|
if (uscripts) { // 过滤禁用的脚本
|
_scripts = uscripts.filter(script => script.status !== 'false')
|
} else {
|
_scripts = scripts.filter(script => script.status !== 'false')
|
}
|
|
if (type === 'setting' && setting.default === 'false') {
|
_resolve()
|
} else if (type === 'scripts' && _scripts.length === 0) {
|
_resolve()
|
} else { // type 为 submit 、 verify ,以及其他需要验证的场景
|
let r = SettingUtils.getDebugSql(setting, _scripts, arr_field, regoptions, search)
|
let param = {
|
func: 's_debug_sql',
|
exec_type: 'y',
|
LText: r.sql
|
}
|
param.LText = Utils.formatOptions(param.LText)
|
param.timestamp = moment().format('YYYY-MM-DD HH:mm:ss')
|
param.secretkey = Utils.encrypt('', param.timestamp)
|
|
let sumParam = null
|
if (r.sumSql) {
|
sumParam = {
|
func: 's_debug_sql',
|
exec_type: 'y',
|
LText: r.sumSql
|
}
|
sumParam.LText = Utils.formatOptions(sumParam.LText)
|
sumParam.timestamp = moment().format('YYYY-MM-DD HH:mm:ss')
|
sumParam.secretkey = Utils.encrypt('', sumParam.timestamp)
|
}
|
|
Api.getLocalConfig(param).then(result => {
|
if (result.status) {
|
if (sumParam) {
|
Api.getLocalConfig(sumParam).then(res => {
|
if (res.status) {
|
_resolve()
|
} else {
|
_reject()
|
Modal.error({
|
title: res.message
|
})
|
}
|
})
|
} else {
|
_resolve()
|
}
|
} else {
|
_reject()
|
Modal.error({
|
title: result.message
|
})
|
}
|
})
|
}
|
}
|
|
// 标签切换
|
changeTab = (val) => {
|
const { activeKey, search, arr_field, setting } = this.state
|
|
let _loading = false
|
if (this.scriptsForm && this.scriptsForm.props.form.getFieldValue('sql') && !/^\s+$/.test(this.scriptsForm.props.form.getFieldValue('sql'))) {
|
_loading = true
|
} else if (this.preScriptsForm && this.preScriptsForm.props.form.getFieldValue('sql') && !/^\s+$/.test(this.preScriptsForm.props.form.getFieldValue('sql'))) {
|
_loading = true
|
} else if (this.cbScriptsForm && this.cbScriptsForm.props.form.getFieldValue('sql') && !/^\s+$/.test(this.cbScriptsForm.props.form.getFieldValue('sql'))) {
|
_loading = true
|
}
|
|
if (_loading) {
|
notification.warning({
|
top: 92,
|
message: '存在未保存脚本,请点击确定保存,或点击取消放弃修改!',
|
duration: 5
|
})
|
return
|
}
|
|
if (activeKey !== 'setting') {
|
if (setting.interType !== 'system' && setting.requestMode !== 'system' && val === 'scripts') {
|
notification.warning({
|
top: 92,
|
message: '使用系统接口时,才可以设置自定义脚本!',
|
duration: 5
|
})
|
return
|
} else if (setting.interType !== 'custom' && (val === 'prescripts' || val === 'cbscripts')) {
|
notification.warning({
|
top: 92,
|
message: '使用自定义接口时,才可以设置前置或回调脚本!',
|
duration: 5
|
})
|
return
|
}
|
}
|
|
if (activeKey === 'setting') {
|
let _defaultSql = ''
|
this.settingForm.handleConfirm().then(res => {
|
if (res.interType !== 'system' && res.requestMode !== 'system' && val === 'scripts') {
|
notification.warning({
|
top: 92,
|
message: '使用系统接口时,才可以设置自定义脚本!',
|
duration: 5
|
})
|
return
|
} else if (res.interType !== 'custom' && (val === 'prescripts' || val === 'cbscripts')) {
|
notification.warning({
|
top: 92,
|
message: '使用自定义接口时,才可以设置前置或回调脚本!',
|
duration: 5
|
})
|
return
|
}
|
|
if (res.dataresource) {
|
let _dataresource = res.dataresource
|
|
if (/\s/.test(_dataresource)) {
|
_dataresource = '(' + _dataresource + ') tb'
|
}
|
|
_defaultSql = `select top @pageSize@ ${arr_field} from (select ${arr_field} ,ROW_NUMBER() over(order by @orderBy@) as rows from ${_dataresource} ${search}) tmptable where rows > (@pageSize@ * (@pageIndex@ - 1)) order by tmptable.rows`
|
}
|
|
this.setState({
|
setting: res,
|
defaultSql: _defaultSql
|
}, () => {
|
this.setState({loading: true})
|
this.sqlverify(() => { // 验证成功
|
this.setState({
|
activeKey: val,
|
loading: false
|
})
|
}, () => { // 验证失败
|
this.setState({
|
activeKey: val,
|
loading: false
|
})
|
}, activeKey)
|
})
|
})
|
} else if (activeKey === 'scripts') {
|
this.setState({loading: true})
|
this.sqlverify(() => { // 验证成功
|
this.setState({
|
activeKey: val,
|
loading: false
|
})
|
}, () => { // 验证失败
|
this.setState({
|
activeKey: val,
|
loading: false
|
})
|
}, activeKey)
|
} else {
|
this.setState({
|
activeKey: val
|
})
|
}
|
}
|
|
// 自定义脚本修改
|
scriptsChange = (scripts) => {
|
return new Promise((resolve, reject) => {
|
this.sqlverify(resolve, reject, 'verify', scripts)
|
})
|
}
|
|
// 自定义脚本更新
|
scriptsUpdate = (scripts) => {
|
this.setState({scripts})
|
}
|
|
// 前置脚本更新
|
preScriptsUpdate = (preScripts) => {
|
this.setState({preScripts})
|
}
|
|
// 后置脚本更新
|
cbScriptsUpdate = (cbScripts) => {
|
this.setState({cbScripts})
|
}
|
|
updateStatus = (status) => {
|
let _status = {...this.state.status, ...status}
|
this.setState({status: _status})
|
this.props.updRecord(_status)
|
}
|
|
render() {
|
const { config, menu, dict } = this.props
|
const { loading, activeKey, setting, defaultSql, columns, scripts, preScripts, cbScripts, status, regoptions } = this.state
|
|
return (
|
<div className="model-table-setting-form-box" id="model-setting-form-body">
|
{loading && <Spin size="large" />}
|
<Tabs activeKey={activeKey} onChange={this.changeTab}>
|
<TabPane tab="数据源" key="setting">
|
<DataSource
|
menu={menu}
|
dict={dict}
|
config={config}
|
columns={columns}
|
setting={setting}
|
scripts={scripts}
|
updateStatus={this.updateStatus}
|
wrappedComponentRef={(inst) => this.settingForm = inst}
|
/>
|
</TabPane>
|
<TabPane tab={
|
<span>
|
自定义脚本
|
{scripts.length ? <span className="count-tip">{scripts.length}</span> : null}
|
</span>
|
} disabled={!(status.interType === 'system' || (status.interType === 'custom' && status.requestMode === 'system'))} key="scripts">
|
<CustomScript
|
dict={dict}
|
setting={setting}
|
scripts={scripts}
|
defaultSql={defaultSql}
|
urlFields={config.urlFields}
|
searches={this.props.search}
|
scriptsChange={this.scriptsChange}
|
scriptsUpdate={this.scriptsUpdate}
|
wrappedComponentRef={(inst) => this.scriptsForm = inst}
|
/>
|
</TabPane>
|
<TabPane tab={
|
<span>
|
前置脚本
|
{preScripts.length ? <span className="count-tip">{preScripts.length}</span> : null}
|
</span>
|
} disabled={status.interType !== 'custom' || status.procMode !== 'script'} key="prescripts">
|
<SimpleScript
|
dict={dict}
|
setting={setting}
|
scripts={preScripts}
|
regoptions={regoptions}
|
urlFields={config.urlFields}
|
searches={this.props.search}
|
scriptsUpdate={this.preScriptsUpdate}
|
wrappedComponentRef={(inst) => this.preScriptsForm = inst}
|
/>
|
</TabPane>
|
<TabPane tab={
|
<span>
|
回调脚本
|
{cbScripts.length ? <span className="count-tip">{cbScripts.length}</span> : null}
|
</span>
|
} disabled={status.interType !== 'custom' || status.callbackType !== 'script'} key="cbscripts">
|
<SimpleScript
|
dict={dict}
|
setting={setting}
|
scripts={cbScripts}
|
scriptsUpdate={this.cbScriptsUpdate}
|
wrappedComponentRef={(inst) => this.cbScriptsForm = inst}
|
/>
|
</TabPane>
|
</Tabs>
|
</div>
|
)
|
}
|
}
|
|
export default Form.create()(SettingForm)
|