import React, { Component } from 'react'
|
import PropTypes from 'prop-types'
|
import { is, fromJS } from 'immutable'
|
import { DndProvider, DragSource, DropTarget } from 'react-dnd'
|
import { Table, Popover, Modal, message, Button } from 'antd'
|
import { PlusOutlined, FileSyncOutlined, EditOutlined, CopyOutlined, DeleteOutlined, FontColorsOutlined, CloseCircleOutlined, AntDesignOutlined } from '@ant-design/icons'
|
|
import asyncComponent from '@/utils/asyncComponent'
|
import asyncIconComponent from '@/utils/asyncIconComponent'
|
import Utils from '@/utils/utils.js'
|
import zhCN from '@/locales/zh-CN/model.js'
|
import enUS from '@/locales/en-US/model.js'
|
import MKEmitter from '@/utils/events.js'
|
import './index.scss'
|
|
const { confirm } = Modal
|
const EditColumn = asyncComponent(() => import('./editColumn'))
|
const TableVerify = asyncComponent(() => import('./tableIn'))
|
const MarkColumn = asyncIconComponent(() => import('@/menu/components/share/markcomponent'))
|
const CardCellComponent = asyncComponent(() => import('@/menu/components/card/cardcellcomponent'))
|
const PasteComponent = asyncIconComponent(() => import('@/components/paste'))
|
|
class HeaderCol extends Component {
|
deleteCol = () => {
|
const _this = this
|
|
confirm({
|
content: '确定删除显示列吗?',
|
onOk() {
|
_this.props.deleteCol(_this.props.column)
|
},
|
onCancel() {}
|
})
|
}
|
|
updateMarks = (vals) => {
|
const { column } = this.props
|
this.props.updateCol({...column, marks: vals})
|
}
|
|
shouldComponentUpdate (nextProps, nextState) {
|
|
if (this.props.rowSpan !== nextProps.rowSpan || this.props.colSpan !== nextProps.colSpan) {
|
return true
|
}
|
|
if (!nextProps.column) return true
|
|
return !is(fromJS(this.props.column), fromJS(nextProps.column)) ||
|
!is(fromJS(this.props.fields), fromJS(nextProps.fields)) ||
|
this.props.index !== nextProps.index
|
}
|
|
render() {
|
const { connectDragSource, connectDropTarget, moveCol, addElement, updateCol, editColumn, pasteCell, changeStyle, deleteCol, index, column, align, fields, children, ...restProps } = this.props
|
|
if (!column) return (
|
<th {...restProps} index={index}>
|
{children}
|
</th>
|
)
|
|
return connectDragSource(
|
connectDropTarget(<th {...restProps} index={index} style={{ cursor: 'move', textAlign: align }} onDoubleClick={() => this.props.editColumn(column)}>
|
<Popover overlayClassName="mk-popover-control-wrap" mouseLeaveDelay={0.2} mouseEnterDelay={0.2} content={
|
<div className="mk-popover-control" onDoubleClick={(e) => e.stopPropagation()}>
|
{['custom', 'action'].includes(column.type) ?
|
<PlusOutlined className="plus" title="添加" onClick={() => this.props.addElement(column)} /> : null
|
}
|
<EditOutlined className="edit" title="编辑" onClick={() => this.props.editColumn(column)} />
|
{column.type === 'custom' ? <PasteComponent options={['customCardElement']} updateConfig={(res, resolve) => this.props.pasteCell(column, res, resolve)} /> : null}
|
{column.type === 'action' ? <PasteComponent options={['action']} updateConfig={(res, resolve) => this.props.pasteCell(column, res, resolve)} /> : null}
|
{column.type === 'custom' ? <FontColorsOutlined className="style" title="调整样式" onClick={() => this.props.changeStyle(column)}/> : null}
|
<DeleteOutlined className="close" title="删除" onClick={this.deleteCol} />
|
{['text', 'number', 'formula'].includes(column.type) ? <MarkColumn field={column.field || ''} columns={fields} marks={column.marks} onSubmit={this.updateMarks} /> : null }
|
</div>
|
} trigger="hover">
|
{children}
|
</Popover>
|
</th>),
|
)
|
}
|
}
|
|
const rowSource = {
|
beginDrag(props) {
|
return {
|
index: props.index,
|
}
|
}
|
}
|
|
const ColTarget = {
|
drop(props, monitor) {
|
const dragIndex = monitor.getItem().index
|
const hoverIndex = props.index
|
|
if (dragIndex === undefined || hoverIndex === undefined || dragIndex === hoverIndex) {
|
return
|
}
|
|
props.moveCol(dragIndex, hoverIndex)
|
monitor.getItem().index = hoverIndex
|
},
|
}
|
|
const DragableHeaderCol = DropTarget('col', ColTarget, connect => ({
|
connectDropTarget: connect.dropTarget()
|
}))(
|
DragSource('col', rowSource, connect => ({
|
connectDragSource: connect.dragSource(),
|
}))(HeaderCol),
|
)
|
|
class EditableColumnCell extends Component {
|
updateCard = (vals, btn) => {
|
const { column } = this.props
|
this.props.upComponent({...column, elements: vals}, btn)
|
}
|
|
shouldComponentUpdate (nextProps, nextState) {
|
const { config, column } = this.props
|
|
if (!nextProps.column) return true
|
|
return !is(fromJS(column), fromJS(nextProps.column)) ||
|
!is(fromJS(config.columns), fromJS(nextProps.config.columns)) ||
|
!is(fromJS(config.action), fromJS(nextProps.config.action)) ||
|
!is(fromJS(config.search), fromJS(nextProps.config.search))
|
}
|
|
render() {
|
const { column, config, children, className, style } = this.props
|
|
if (column && column.type === 'custom') {
|
return (
|
<td style={{padding: 0, minWidth: column.Width || 100, ...(column.style || {})}} className={className}>
|
<CardCellComponent cards={config} cardCell={column} elements={column.elements} updateElement={this.updateCard}/>
|
</td>
|
)
|
} else if (column && column.type === 'action') {
|
return (
|
<td style={{padding: '0 5px', textAlign: column.Align, minWidth: column.Width || 100}} className={'action-column ' + className}>
|
<CardCellComponent cards={config} cardCell={column} elements={column.elements} updateElement={this.updateCard}/>
|
</td>
|
)
|
} else if (column) {
|
let val = column.field || ''
|
if (column.type === 'index') {
|
val = '$Index'
|
} else if (column.type === 'formula') {
|
val = column.formula
|
if (column.eval === 'false') {
|
val = val.replace(/\n/ig, '<br/>').replace(/\s/ig, ' ')
|
val = <span style={{fontWeight: 'inherit'}} dangerouslySetInnerHTML={{__html: val}}></span>
|
}
|
}
|
return (
|
<td style={{...style, minWidth: column.Width || 100}} className={className}>
|
{val}
|
{column.Hide === 'true' ? <CloseCircleOutlined style={{marginLeft: '5px', color: 'orange', fontSize: '12px'}}/> : null}
|
{column.marks && column.marks.length ? <AntDesignOutlined className="profile"/> : null}
|
</td>
|
)
|
} else {
|
return (
|
<td style={style} className={className}>
|
{children}
|
</td>
|
)
|
}
|
}
|
}
|
|
class NormalTableColumns extends Component {
|
static propTpyes = {
|
config: PropTypes.object, // 配置信息
|
updatecolumn: PropTypes.func // 数据变化
|
}
|
|
state = {
|
dict: sessionStorage.getItem('lang') !== 'en-US' ? zhCN : enUS,
|
appType: sessionStorage.getItem('appType'),
|
tableId: '',
|
data: [{uuid: Utils.getuuid()}],
|
refresh: false, // 强制刷新
|
columns: [],
|
fields: [],
|
editStyleCard: null,
|
lineMarks: []
|
}
|
|
UNSAFE_componentWillMount () {
|
const { config } = this.props
|
|
let tableId = (() => {
|
let uuid = []
|
let _options = 'abcdefghigklmnopqrstuv'
|
for (let i = 0; i < 19; i++) {
|
uuid.push(_options.substr(Math.floor(Math.random() * 0x20), 1))
|
}
|
return uuid.join('')
|
}) ()
|
|
this.setState({
|
tableId,
|
columns: fromJS(config.cols).toJS(),
|
fields: fromJS(config.columns).toJS(),
|
lineMarks: config.lineMarks ? fromJS(config.lineMarks).toJS() : []
|
}, () => {
|
const element = document.getElementById(tableId)
|
element && element.style.setProperty('--mk-table-border-color', config.wrap.borderColor || '#e8e8e8')
|
element && element.style.setProperty('--mk-table-color', config.wrap.color || 'rgba(0, 0, 0, 0.65)')
|
element && element.style.setProperty('--mk-table-font-size', config.wrap.fontSize || '14px')
|
element && element.style.setProperty('--mk-table-font-weight', config.wrap.fontWeight || 'normal')
|
})
|
}
|
|
UNSAFE_componentWillReceiveProps (nextProps) {
|
if (!is(fromJS(this.state.columns), fromJS(nextProps.config.cols))) {
|
let _columns = fromJS(nextProps.config.cols).toJS()
|
this.setState({columns: _columns})
|
let lastcol = _columns.slice(-1)[0]
|
if (lastcol && lastcol.focus) {
|
this.editColumn(lastcol)
|
}
|
} else if (!is(fromJS(this.state.fields), fromJS(nextProps.config.columns))) {
|
this.setState({fields: fromJS(nextProps.config.columns).toJS()})
|
} else if (!is(fromJS(this.props.config.wrap), fromJS(nextProps.config.wrap))) {
|
const element = document.getElementById(this.state.tableId)
|
element && element.style.setProperty('--mk-table-border-color', nextProps.config.wrap.borderColor || '#e8e8e8')
|
element && element.style.setProperty('--mk-table-color', nextProps.config.wrap.color || 'rgba(0, 0, 0, 0.65)')
|
element && element.style.setProperty('--mk-table-font-size', nextProps.config.wrap.fontSize || '14px')
|
element && element.style.setProperty('--mk-table-font-weight', nextProps.config.wrap.fontWeight || 'normal')
|
}
|
}
|
|
shouldComponentUpdate (nextProps, nextState) {
|
const { config } = this.props
|
|
return !is(fromJS(this.state), fromJS(nextState)) ||
|
!is(fromJS(config.wrap), fromJS(nextProps.config.wrap)) ||
|
!is(fromJS(config.submit), fromJS(nextProps.config.submit)) ||
|
!is(fromJS(config.search), fromJS(nextProps.config.search)) ||
|
!is(fromJS(config.action), fromJS(nextProps.config.action)) ||
|
config.setting.laypage !== nextProps.config.setting.laypage
|
}
|
|
moveCol = (dragIndex, hoverIndex) => {
|
let _columns = fromJS(this.state.columns).toJS()
|
|
_columns.splice(hoverIndex, 0, ..._columns.splice(dragIndex, 1))
|
|
this.setState({
|
columns: _columns
|
}, () => {
|
this.props.updatecolumn({...this.props.config, cols: _columns})
|
})
|
}
|
|
updateCol = (col, btn) => {
|
let _columns = fromJS(this.state.columns).toJS()
|
_columns = _columns.map(column => {
|
if (column.uuid === col.uuid) {
|
return col
|
}
|
return column
|
})
|
|
this.setState({
|
columns: _columns,
|
}, () => {
|
let config = {...this.props.config, cols: _columns}
|
if (btn) {
|
config.action = config.action.filter(item => item.uuid !== btn.uuid)
|
}
|
|
this.props.updatecolumn(config)
|
})
|
}
|
|
editColumn = (col) => {
|
this.setState({
|
card: fromJS(col).toJS()
|
})
|
}
|
|
pasteCell = (col, cell, resolve) => {
|
resolve({status: true})
|
|
delete cell.copyType
|
cell.uuid = Utils.getuuid()
|
cell.focus = true
|
|
MKEmitter.emit('cardAddElement', [this.props.config.uuid, col.uuid], cell)
|
}
|
|
addElement = (col) => {
|
const { config } = this.props
|
let column = fromJS(col).toJS()
|
|
if (column.type === 'custom') {
|
let newcard = {uuid: Utils.getuuid(), focus: true, width: 24, eleType: 'text', datatype: 'dynamic', style: {paddingLeft: '4px'}}
|
|
// 注册事件-添加元素
|
MKEmitter.emit('cardAddElement', [config.uuid, column.uuid], newcard)
|
} else if (column.type === 'action') {
|
let newcard = {
|
uuid: Utils.getuuid(),
|
focus: true,
|
eleType: 'button',
|
label: 'button',
|
OpenType: 'prompt',
|
class: 'primary',
|
intertype: 'system',
|
execSuccess: 'grid',
|
execError: 'never',
|
show: 'link'
|
}
|
|
// 注册事件-添加元素
|
MKEmitter.emit('cardAddElement', [config.uuid, column.uuid], newcard)
|
}
|
}
|
|
submitCol = (col) => {
|
const { card } = this.state
|
|
if (col.type === 'custom') {
|
col.elements = card.type === 'custom' ? (card.elements || []) : []
|
} else if (col.type === 'action') {
|
col.elements = card.type === 'action' ? (card.elements || []) : []
|
}
|
|
this.setState({card: null})
|
this.updateCol(col)
|
}
|
|
changeStyle = (col) => {
|
this.setState({
|
editStyleCard: fromJS(col).toJS()
|
})
|
|
MKEmitter.emit('changeStyle', ['font', 'padding'], col.style || {}, this.getStyle)
|
}
|
|
changeSubmitStyle = () => {
|
const { config } = this.props
|
|
MKEmitter.emit('changeStyle', ['font', 'background', 'border', 'margin', 'padding'], config.submit.style || {}, this.getSubmitStyle)
|
}
|
|
getSubmitStyle = (style) => {
|
const { config } = this.props
|
|
let submit = {...config.submit, style}
|
|
this.props.updatecolumn({...config, submit: submit})
|
}
|
|
getStyle = (style) => {
|
const { editStyleCard } = this.state
|
|
let _card = {...editStyleCard, style}
|
|
this.updateCol(_card)
|
}
|
|
cancelCol = () => {
|
const { card } = this.state
|
|
if (card.focus) {
|
this.deleteCol(card)
|
}
|
|
this.setState({card: null})
|
}
|
|
deleteCol = (col) => {
|
const { appType } = this.state
|
let _columns = fromJS(this.state.columns).toJS()
|
|
_columns = _columns.filter(column => column.uuid !== col.uuid)
|
|
this.setState({
|
columns: _columns
|
}, () => {
|
this.props.updatecolumn({...this.props.config, cols: _columns})
|
})
|
|
if (col.type !== 'action' || appType === 'mob') return
|
|
let uuids = []
|
col.elements && col.elements.forEach(c => {
|
if (appType === 'pc' && c.OpenType !== 'popview') return
|
|
uuids.push(c.uuid)
|
})
|
|
if (uuids.length === 0) return
|
|
MKEmitter.emit('delButtons', uuids)
|
}
|
|
updateLineMarks = (vals) => {
|
this.setState({
|
lineMarks: vals
|
}, () => {
|
this.props.updatecolumn({...this.props.config, lineMarks: vals})
|
})
|
}
|
|
/**
|
* @description 显示列复制
|
*/
|
copycolumn = () => {
|
const { columns } = this.state
|
|
let oInput = document.createElement('input')
|
let val = {
|
copyType: 'cols',
|
cols: columns.filter(col => !col.origin)
|
}
|
|
let srcid = localStorage.getItem(window.location.href.split('#')[0] + 'srcId')
|
if (srcid) {
|
val.$srcId = srcid
|
}
|
|
oInput.value = window.btoa(window.encodeURIComponent(JSON.stringify(val)))
|
document.body.appendChild(oInput)
|
oInput.select()
|
document.execCommand('Copy')
|
oInput.className = 'oInput'
|
oInput.style.display = 'none'
|
|
message.success('复制成功。')
|
|
document.body.removeChild(oInput)
|
}
|
|
syncfield = () => {
|
const { fields } = this.state
|
let columns = fromJS(this.state.columns).toJS()
|
|
columns = columns.filter(c => !c.origin)
|
|
let keys = columns.map(col => col.field)
|
|
fields.forEach(item => {
|
if (keys.includes(item.field)) return
|
|
let cell = { uuid: Utils.getuuid(), label: item.label, field: item.field, Align: 'left', Hide: 'false', IsSort: 'false', Width: 120, blacklist: [], postfix: '', prefix: '', linkmenu: [], marks: [], perspective: 'linkmenu' }
|
|
if (/Nvarchar|date/ig.test(item.datatype)) {
|
cell.type = 'text'
|
cell.rowspan = 'false'
|
cell.textFormat = 'none'
|
} else {
|
cell.type = 'number'
|
cell.format = 'none'
|
cell.sum = 'false'
|
cell.decimal = item.decimal || 0
|
cell.Width = 80
|
}
|
|
columns.push(cell)
|
})
|
|
const _this = this
|
|
confirm({
|
content: '确定同步字段集吗?',
|
onOk() {
|
_this.setState({columns}, () => {
|
_this.props.updatecolumn({..._this.props.config, cols: columns})
|
})
|
},
|
onCancel() {}
|
})
|
}
|
|
clear = () => {
|
const _this = this
|
|
confirm({
|
content: '确定清空显示列吗?',
|
onOk() {
|
_this.setState({columns: []}, () => {
|
_this.props.updatecolumn({..._this.props.config, cols: []})
|
})
|
},
|
onCancel() {}
|
})
|
}
|
|
verifySubmit = () => {
|
const { config } = this.props
|
|
this.verifyRef.handleConfirm().then(res => {
|
res.style = config.submit.style || {}
|
this.setState({
|
visible: false
|
}, () => {
|
this.props.updatecolumn({...config, submit: res})
|
})
|
})
|
}
|
|
componentDidMount () {
|
MKEmitter.addListener('submitStyle', this.getStyle)
|
}
|
|
/**
|
* @description 组件销毁,清除state更新,清除快捷键设置
|
*/
|
componentWillUnmount () {
|
this.setState = () => {
|
return
|
}
|
MKEmitter.removeListener('submitStyle', this.getStyle)
|
}
|
|
render() {
|
const { config } = this.props
|
const { fields, card, lineMarks, dict, tableId, visible } = this.state
|
const components = {
|
header: {
|
cell: DragableHeaderCol
|
},
|
body: {
|
cell: EditableColumnCell
|
}
|
}
|
|
let rowSelection = null
|
if (config.wrap.tableType) {
|
rowSelection = {
|
type: config.wrap.tableType === 'radio' ? 'radio' : 'checkbox',
|
}
|
}
|
|
const columns = this.state.columns.map((col, index) => {
|
let title = col.label
|
if (col.editable === 'true') {
|
title = <span>{col.label}<EditOutlined style={{position: 'absolute', bottom: 0, right: 0, color: '#1890ff', opacity: '0.7'}}/></span>
|
}
|
return {
|
title: title,
|
dataIndex: col.uuid,
|
align: col.Align,
|
sorter: col.IsSort === 'true',
|
onCell: () => ({
|
column: col,
|
width: col.Width,
|
config: config,
|
upComponent: this.updateCol
|
}),
|
onHeaderCell: () => ({
|
index,
|
column: col,
|
fields: fields,
|
align: col.Align,
|
moveCol: this.moveCol,
|
updateCol: this.updateCol,
|
addElement: this.addElement,
|
editColumn: this.editColumn,
|
pasteCell: this.pasteCell,
|
changeStyle: this.changeStyle,
|
deleteCol: this.deleteCol,
|
}),
|
}
|
})
|
|
return (
|
<div className={`edit-table-columns ${config.setting.laypage} ${config.wrap.mode || ''}`} id={tableId}>
|
<div className="col-control">
|
<Popover overlayClassName="mk-popover-control-wrap" mouseLeaveDelay={0.2} mouseEnterDelay={0.2} content={
|
<div className="mk-popover-control">
|
<EditOutlined className="edit" title="编辑" onClick={() => this.setState({visible: true})} />
|
<FontColorsOutlined className="style" title="调整样式" onClick={this.changeSubmitStyle}/>
|
</div>
|
} trigger="hover">
|
<Button className="submit-btn" style={config.submit.style} onDoubleClick={() => this.setState({visible: true})} type="primary">提交</Button>
|
</Popover>
|
<CopyOutlined title="复制显示列" onClick={this.copycolumn} />
|
<MarkColumn columns={fields} type="line" marks={lineMarks} onSubmit={this.updateLineMarks} />
|
<FileSyncOutlined title="同步字段集" onClick={this.syncfield} />
|
<DeleteOutlined title="清空显示列" onClick={this.clear}/>
|
</div>
|
<DndProvider>
|
<Table
|
rowKey="uuid"
|
size={config.wrap.size || 'middle'}
|
rowClassName="editable-row"
|
bordered={config.wrap.bordered !== 'false'}
|
rowSelection={rowSelection}
|
components={components}
|
dataSource={this.state.data}
|
columns={columns}
|
pagination={{
|
current: 1,
|
pageSize: 10,
|
pageSizeOptions: ['10', '25', '50', '100', '500', '1000'],
|
showSizeChanger: true,
|
total: 58,
|
showTotal: (total, range) => `${range[0]}-${range[1]} 共 ${total} 条`
|
}}
|
/>
|
</DndProvider>
|
<EditColumn column={card} dict={dict} columns={this.state.columns} fields={fields} submitCol={this.submitCol} cancelCol={this.cancelCol}/>
|
<Modal
|
wrapClassName="model-table-action-verify-modal"
|
title={'编辑'}
|
visible={visible}
|
width={'75vw'}
|
maskClosable={false}
|
onOk={this.verifySubmit}
|
onCancel={() => { this.setState({ visible: false }) }}
|
destroyOnClose
|
>
|
<TableVerify
|
card={config.submit}
|
setting={config.setting}
|
dict={dict}
|
cols={config.cols}
|
columns={config.columns}
|
wrappedComponentRef={(inst) => this.verifyRef = inst}
|
/>
|
</Modal>
|
</div>
|
)
|
}
|
}
|
|
export default NormalTableColumns
|