import React, { Component } from 'react'
|
import PropTypes from 'prop-types'
|
import { is, fromJS } from 'immutable'
|
import { Table, Input, Popconfirm, Form, Icon, notification } from 'antd'
|
|
import Utils from '@/utils/utils.js'
|
import FileUpload from '@/tabviews/zshare/fileupload'
|
import './index.scss'
|
|
const EditableContext = React.createContext()
|
|
class EditableCell extends Component {
|
getInput = (form) => {
|
const { inputType } = this.props
|
if (inputType === 'file') {
|
return <FileUpload maxFile={1} fileType="picture-card"/>
|
} else {
|
return <Input onPressEnter={() => this.getValue(form)} />
|
}
|
}
|
|
getValue = (form) => {
|
const { record } = this.props
|
form.validateFields((error, row) => {
|
if (error) {
|
return
|
}
|
|
if (row.$url && Array.isArray(row.$url)) {
|
if (!row.$url[0]) {
|
row.$url = ''
|
} else if (row.$url[0].origin) {
|
row.$url = row.$url[0].url || ''
|
} else if (!row.$url[0].origin && row.$url[0].status === 'done' && row.$url[0].response) {
|
row.$url = row.$url[0].response
|
}
|
}
|
this.props.onSave({...record, ...row})
|
})
|
}
|
|
renderCell = (form) => {
|
const { getFieldDecorator } = form
|
const {
|
editing,
|
dataIndex,
|
title,
|
record,
|
inputType,
|
index,
|
children,
|
onSave,
|
...restProps
|
} = this.props;
|
|
let _val = ''
|
|
if (record && dataIndex) {
|
_val = record[dataIndex]
|
}
|
|
if (dataIndex === '$url' && _val) {
|
_val = [{
|
uid: `10086`,
|
name: _val.slice(_val.lastIndexOf('/') + 1),
|
status: 'done',
|
url: _val,
|
origin: true
|
}]
|
} else if (dataIndex === '$url') {
|
_val = []
|
}
|
|
return (
|
<td {...restProps}>
|
{editing ? (
|
<Form.Item style={{ margin: 0 }}>
|
{getFieldDecorator(dataIndex, {
|
rules: [
|
{
|
required: dataIndex === '$value',
|
message: `Please Input ${title}!`,
|
},
|
],
|
initialValue: _val,
|
})(this.getInput(form))}
|
</Form.Item>
|
) : (
|
children
|
)}
|
</td>
|
)
|
}
|
|
render() {
|
return <EditableContext.Consumer>{this.renderCell}</EditableContext.Consumer>
|
}
|
}
|
|
class EdiDataTable extends Component {
|
static propTpyes = {
|
dict: PropTypes.object, // 字典项
|
type: PropTypes.object, // 数据类型,文本、图片
|
fields: PropTypes.array, // 字段集
|
onChange: PropTypes.func // 数据变化
|
}
|
|
UNSAFE_componentWillMount () {
|
let data = this.props['data-__meta'].initialValue
|
|
this.setState({
|
data: data,
|
columns: this.getCloumns()
|
})
|
}
|
|
state = {
|
data: [],
|
editingKey: '',
|
columns: []
|
}
|
|
UNSAFE_componentWillReceiveProps (nextProps) {
|
if (!is(fromJS(this.props.fields), fromJS(nextProps.fields)) || !is(fromJS(this.props.type), fromJS(nextProps.type))) {
|
this.setState({editingKey: ''}, () => {
|
this.setState({
|
columns: this.getCloumns()
|
})
|
})
|
}
|
}
|
|
getCloumns = () => {
|
const { type, fields } = this.props
|
let columns = []
|
|
if (type === 'picture') {
|
columns.push({
|
title: 'url',
|
dataIndex: '$url',
|
inputType: 'file',
|
width: '40%',
|
editable: true,
|
render: (text) => {
|
if (!text) return ''
|
return <span style={{display: 'block', width: '70px', height: '70px'}}><img style={{width: '100%', height: '100%'}} src={text} alt="" /></span>
|
}
|
})
|
} else {
|
columns = fields.map(item => ({
|
title: item.field,
|
dataIndex: item.field,
|
editable: true,
|
}))
|
}
|
|
columns.unshift({
|
title: 'Value',
|
dataIndex: '$value',
|
editable: true,
|
})
|
|
columns.push({
|
title: 'operation',
|
dataIndex: 'operation',
|
width: '18%',
|
render: (text, record) => {
|
const { editingKey } = this.state
|
const editable = this.isEditing(record)
|
return editable ? (
|
<span>
|
<EditableContext.Consumer>
|
{form => (
|
<span onClick={() => this.save(form, record.key)} style={{ marginRight: 8 , color: '#1890ff', cursor: 'pointer'}}>
|
保存
|
</span>
|
)}
|
</EditableContext.Consumer>
|
<span style={{ color: '#1890ff', cursor: 'pointer'}} onClick={() => this.cancel(record.key)}>取消</span>
|
</span>
|
) : (
|
<div className={'operation-btn' + (editingKey !== '' ? ' disabled' : '')}>
|
<span className="primary" onClick={() => {editingKey === '' && this.edit(record.key)}}><Icon type="edit" /></span>
|
<span className="primary" onClick={() => {editingKey === '' && this.handleUpDown(record.key, 'up')}}><Icon type="arrow-up" /></span>
|
<span className="danger" onClick={() => {editingKey === '' && this.handleUpDown(record.key, 'down')}}><Icon type="arrow-down" /></span>
|
{editingKey === '' ? <Popconfirm
|
overlayClassName="popover-confirm"
|
title={this.props.dict['model.query.delete']}
|
onConfirm={() => this.handleDelete(record.key)
|
}>
|
<span className="danger"><Icon type="delete" /></span>
|
</Popconfirm> : null}
|
{editingKey !== '' ? <span className="danger"><Icon type="delete" /></span> : null}
|
</div>
|
)
|
}
|
})
|
|
return columns
|
}
|
|
isEditing = record => record.key === this.state.editingKey
|
|
cancel = () => {
|
this.setState({ editingKey: '' })
|
}
|
|
onSave = (record) => {
|
const newData = [...this.state.data]
|
const index = newData.findIndex(item => record.key === item.key)
|
if (index > -1) {
|
newData.splice(index, 1, record)
|
this.setState({ data: newData, editingKey: '' }, () => {
|
this.props.onChange(newData)
|
})
|
}
|
}
|
|
handleDelete = (key) => {
|
const { data } = this.state
|
let _data = data.filter(item => key !== item.key)
|
|
this.setState({
|
data: _data
|
}, () => {
|
this.props.onChange(_data)
|
})
|
}
|
|
handleUpDown = (key, direction) => {
|
let _data = fromJS(this.state.data).toJS()
|
const index = _data.findIndex(item => key === item.key)
|
|
if ((index === 0 && direction === 'up') || (index === _data.length - 1 && direction === 'down')) {
|
return
|
}
|
|
if (direction === 'up') {
|
_data.splice(index - 1, 0, ..._data.splice(index, 1))
|
} else {
|
_data.splice(index + 1, 0, ..._data.splice(index, 1))
|
}
|
|
this.setState({
|
data: _data
|
}, () => {
|
this.props.onChange(_data)
|
})
|
}
|
|
save(form, key) {
|
form.validateFields((error, row) => {
|
if (error) {
|
return;
|
}
|
|
if (row.$url && Array.isArray(row.$url)) {
|
if (!row.$url[0]) {
|
row.$url = ''
|
} else if (row.$url[0].origin) {
|
row.$url = row.$url[0].url || ''
|
} else if (!row.$url[0].origin && row.$url[0].status === 'done' && row.$url[0].response) {
|
row.$url = row.$url[0].response
|
}
|
}
|
|
const newData = [...this.state.data]
|
const index = newData.findIndex(item => key === item.key)
|
if (index > -1) {
|
const item = newData[index]
|
newData.splice(index, 1, {
|
...item,
|
...row,
|
})
|
this.setState({ data: newData, editingKey: '' }, () => {
|
this.props.onChange(newData)
|
})
|
} else {
|
newData.push(row);
|
this.setState({ data: newData, editingKey: '' }, () => {
|
this.props.onChange(newData)
|
})
|
}
|
})
|
}
|
|
handleAdd = () => {
|
const { fields, type } = this.props
|
if (this.state.editingKey) {
|
notification.warning({
|
top: 92,
|
message: '请保存编辑中的元素!',
|
duration: 5
|
})
|
return
|
} else if (this.state.data.length >= 20) {
|
notification.warning({
|
top: 92,
|
message: '最多可添加20项!',
|
duration: 5
|
})
|
return
|
}
|
|
let item = { key: Utils.getuuid(), $value: `${this.state.data.length + 1}` }
|
|
if (type === 'picture') {
|
item.$url = ''
|
} else {
|
fields.forEach(f => {
|
item[f.field] = `${this.state.data.length + 1}`
|
})
|
}
|
|
let data = [...this.state.data, item]
|
|
this.setState({ data }, () => {
|
this.props.onChange(data)
|
})
|
}
|
|
edit(key) {
|
this.setState({ editingKey: key })
|
}
|
|
render() {
|
const components = {
|
body: {
|
cell: EditableCell,
|
},
|
}
|
|
const columns = this.state.columns.map(col => {
|
if (!col.editable) {
|
return col
|
}
|
return {
|
...col,
|
onCell: record => ({
|
record,
|
dataIndex: col.dataIndex,
|
inputType: col.inputType,
|
title: col.title,
|
editing: this.isEditing(record),
|
onSave: this.onSave,
|
}),
|
}
|
})
|
|
let addable = false
|
if (this.props.type === 'picture') {
|
addable = true
|
} else if (this.props.fields && this.props.fields.length > 0) {
|
addable = true
|
}
|
|
return (
|
<EditableContext.Provider value={this.props.form}>
|
<div className="modal-card-data-table">
|
{addable ? <Icon className="add-row" type="plus" onClick={this.handleAdd} /> : null}
|
<Table
|
components={components}
|
bordered
|
dataSource={this.state.data}
|
columns={columns}
|
rowClassName="editable-row"
|
pagination={false}
|
/>
|
</div>
|
</EditableContext.Provider>
|
)
|
}
|
}
|
|
export default Form.create()(EdiDataTable)
|