From a8507cc8c42d17d4fb854594dbf1e084d61912ac Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 18 十月 2022 12:44:22 +0800 Subject: [PATCH] 2022-10-18 --- src/menu/datasource/verifycard/index.jsx | 128 ++++++++++++++++++++++++++++++++++++++---- 1 files changed, 115 insertions(+), 13 deletions(-) diff --git a/src/menu/datasource/verifycard/index.jsx b/src/menu/datasource/verifycard/index.jsx index 64a38ce..66a6a93 100644 --- a/src/menu/datasource/verifycard/index.jsx +++ b/src/menu/datasource/verifycard/index.jsx @@ -2,7 +2,7 @@ import PropTypes from 'prop-types' import { fromJS } from 'immutable' import { Form, Tabs, Popconfirm, notification, Modal, Typography, Spin, message, Button } from 'antd' -import { StopOutlined, CheckCircleOutlined, EditOutlined, SwapOutlined, DeleteOutlined, CopyOutlined, BorderOutlined } from '@ant-design/icons' +import { StopOutlined, CheckCircleOutlined, EditOutlined, SwapOutlined, DeleteOutlined, CopyOutlined, BorderOutlined, SnippetsOutlined } from '@ant-design/icons' import moment from 'moment' import Api from '@/api' @@ -12,6 +12,7 @@ import ColForm from './columnform' import CustomScriptsForm from './customscript' import SettingForm from './settingform' +import PasteForm from '@/templates/zshare/pasteform' import SettingUtils from './utils' import MinView from '@/assets/img/minview.png' import './index.scss' @@ -25,7 +26,6 @@ class VerifyCard extends Component { static propTpyes = { - dict: PropTypes.object, // 瀛楀吀椤� config: PropTypes.object, // 缁勪欢閰嶇疆淇℃伅 } @@ -39,6 +39,8 @@ defaultSearch: '', systemScripts: [], visible: false, + pvisible: false, + reload: false, script: null, scriptValue: '', colColumns: [ @@ -146,11 +148,11 @@ dataIndex: 'operation', render: (text, record) => (<div style={{textAlign: 'center'}}> - <span className="operation-btn" title={this.props.dict['model.edit']} onClick={() => this.handleEdit(record)} style={{color: '#1890ff'}}><EditOutlined /></span> - <span className="operation-btn" title={this.props.dict['model.status.change']} onClick={() => this.handleStatus(record)} style={{color: '#8E44AD'}}><SwapOutlined /></span> + <span className="operation-btn" title="缂栬緫" onClick={() => this.handleEdit(record)} style={{color: '#1890ff'}}><EditOutlined /></span> + <span className="operation-btn" title="鐘舵�佸垏鎹�" onClick={() => this.handleStatus(record)} style={{color: '#8E44AD'}}><SwapOutlined /></span> <Popconfirm overlayClassName="popover-confirm" - title={this.props.dict['model.query.delete']} + title="纭畾鍒犻櫎鍚�?" onConfirm={() => this.deleteScript(record) }> <span className="operation-btn" style={{color: '#ff4d4f'}}><DeleteOutlined /></span> @@ -694,6 +696,90 @@ }) } + copyDatasource = () => { + const { config } = this.props + const { columns, scripts } = this.state + + if (columns.length === 0) { + notification.warning({ + top: 92, + message: '璇锋坊鍔犲瓧娈甸泦!', + duration: 5 + }) + return + } + + this.settingForm.handleConfirm().then(res => { + delete res.supModule + res.name = config.name + + let source = { + key: 'interface', + type: 'line', + data: {setting: res, columns, scripts, pageable: false, format: 'array', name: res.name, status: 'false', type: 'interface', uuid: '' } + } + + try { + source = window.btoa(window.encodeURIComponent(JSON.stringify(source))) + } catch (e) { + console.warn('Stringify Failure') + source = '' + } + + if (source) { + let oInput = document.createElement('input') + oInput.value = source + document.body.appendChild(oInput) + oInput.select() + document.execCommand('Copy') + document.body.removeChild(oInput) + message.success('澶嶅埗鎴愬姛銆�') + } + }) + } + + pasteSubmit = () => { + const { setting } = this.state + + this.pasteFormRef.handleConfirm().then(res => { + if (res.key !== 'interface') { + notification.warning({ + top: 92, + message: '閰嶇疆绫诲瀷閿欒!', + duration: 5 + }) + return + } else if (res.type !== 'line') { + notification.warning({ + top: 92, + message: '璇风矘璐村崟椤规暟鎹簮!', + duration: 5 + }) + return + } + + if (setting.supModule) { + res.data.setting.supModule = setting.supModule + } + + this.setState({ + scripts: res.data.scripts.map(col => { + col.uuid = Utils.getuuid() + return col + }), + columns: res.data.columns.map(col => { + col.uuid = Utils.getuuid() + return col + }), + setting: res.data.setting, + reload: true, + pvisible: false + }, () => { + this.setState({reload: false}) + }) + }) + } + copyColumns = () => { const { columns } = this.state let m = [] @@ -726,30 +812,36 @@ render() { const { config } = this.props - const { columns, setting, scripts, colColumns, scriptsColumns, activeKey, loading, searches, defaultsql, visible, script, scriptValue } = this.state + const { columns, setting, scripts, colColumns, scriptsColumns, activeKey, loading, searches, defaultsql, visible, pvisible, reload, script, scriptValue } = this.state return ( <div className="model-data-source-wrap"> {config.name ? <div className="mk-com-name">{config.name} - 鏁版嵁婧�</div> : null} {loading && <Spin size="large" />} <Tabs activeKey={activeKey} className="data-source-card-box" onChange={this.changeTab}> - <TabPane tab="鏁版嵁婧�" key="setting"> - <SettingForm - dict={this.props.dict} + <TabPane tab={ + <span> + 鏁版嵁婧� + {config.type !== 'interface' ? <CopyOutlined title="澶嶅埗鏁版嵁婧�" className="mk-copy-datasource" onClick={this.copyDatasource}/> : null} + {config.type !== 'interface' ? <SnippetsOutlined title="瀵煎叆鏁版嵁婧�" className="mk-paste-datasource" onClick={() => this.setState({pvisible: true})}/> : null} + </span> + } key="setting"> + {!reload ? <SettingForm config={config} columns={columns} setting={setting} scripts={scripts} wrappedComponentRef={(inst) => this.settingForm = inst} - /> + /> : null} </TabPane> <TabPane tab={ <span> 瀛楁闆� + {columns.length ? <span className="count-tip">{columns.length}</span> : null} <CopyOutlined title="浠ラ�楀彿鎷兼帴褰㈠紡澶嶅埗瀛楁" className="mk-copy-fields" onClick={this.copyColumns}/> </span> } key="columns"> - <ColForm dict={this.props.dict} columnChange={this.columnChange}/> + <ColForm columnChange={this.columnChange}/> <FieldsComponent config={{...config, columns}} type="fields" @@ -779,7 +871,6 @@ searches={searches} defaultsql={defaultsql} initsql={this.state.initsql} - dict={this.props.dict} customScripts={scripts} systemScripts={this.state.systemScripts} scriptsChange={this.scriptsChange} @@ -826,7 +917,7 @@ <span className="operation-btn" onClick={() => this.handleStatus(item)} style={{color: '#8E44AD'}}><SwapOutlined /></span> <Popconfirm overlayClassName="popover-confirm" - title={this.props.dict['model.query.delete']} + title="纭畾鍒犻櫎鍚�?" onConfirm={() => this.deleteScript(item) }> <span className="operation-btn" style={{color: '#ff4d4f'}}><DeleteOutlined /></span> @@ -846,6 +937,17 @@ </div> <CodeMirror value={scriptValue} onChange={(val) => {this.setState({scriptValue: val})}}></CodeMirror> </Modal> + <Modal + title="绮樿创" + visible={pvisible} + width={600} + maskClosable={false} + onOk={this.pasteSubmit} + onCancel={() => {this.setState({pvisible: false})}} + destroyOnClose + > + <PasteForm wrappedComponentRef={(inst) => this.pasteFormRef = inst} inputSubmit={this.pasteSubmit}/> + </Modal> </div> ) } -- Gitblit v1.8.0