import React, { PureComponent, Fragment } from 'react'; import { Table, Button, Input, message, Popconfirm, Divider } from 'antd'; import styles from './style.less'; export default class TableForm extends PureComponent { static getDerivedStateFromProps(nextProps) { if ('value' in nextProps) { return { data: nextProps.value, }; } return null; } constructor(props) { super(props); this.state = { data: props.value, loading: false, }; } getRowByKey(key, newData) { return (newData || this.state.data).filter(item => item.key === key)[0]; } index = 0; cacheOriginData = {}; toggleEditable = (e, key) => { e.preventDefault(); const newData = this.state.data.map(item => ({ ...item })); const target = this.getRowByKey(key, newData); if (target) { // 进入编辑状态时保存原始数据 if (!target.editable) { this.cacheOriginData[key] = { ...target }; } target.editable = !target.editable; this.setState({ data: newData }); } }; remove(key) { const newData = this.state.data.filter(item => item.key !== key); this.setState({ data: newData }); this.props.onChange(newData); } newMember = () => { const newData = this.state.data.map(item => ({ ...item })); newData.push({ key: `NEW_TEMP_ID_${this.index}`, workId: '', name: '', department: '', editable: true, isNew: true, }); this.index += 1; this.setState({ data: newData }); }; handleKeyPress(e, key) { if (e.key === 'Enter') { this.saveRow(e, key); } } handleFieldChange(e, fieldName, key) { const newData = this.state.data.map(item => ({ ...item })); const target = this.getRowByKey(key, newData); if (target) { target[fieldName] = e.target.value; this.setState({ data: newData }); } } saveRow(e, key) { e.persist(); this.setState({ loading: true, }); setTimeout(() => { if (this.clickedCancel) { this.clickedCancel = false; return; } const target = this.getRowByKey(key) || {}; if (!target.workId || !target.name || !target.department) { message.error('请填写完整成员信息。'); e.target.focus(); this.setState({ loading: false, }); return; } delete target.isNew; this.toggleEditable(e, key); this.props.onChange(this.state.data); this.setState({ loading: false, }); }, 500); } cancel(e, key) { this.clickedCancel = true; e.preventDefault(); const newData = this.state.data.map(item => ({ ...item })); const target = this.getRowByKey(key, newData); if (this.cacheOriginData[key]) { Object.assign(target, this.cacheOriginData[key]); target.editable = false; delete this.cacheOriginData[key]; } this.setState({ data: newData }); this.clickedCancel = false; } render() { const columns = [ { title: '成员姓名', dataIndex: 'name', key: 'name', width: '20%', render: (text, record) => { if (record.editable) { return ( this.handleFieldChange(e, 'name', record.key)} onKeyPress={e => this.handleKeyPress(e, record.key)} placeholder="成员姓名" /> ); } return text; }, }, { title: '工号', dataIndex: 'workId', key: 'workId', width: '20%', render: (text, record) => { if (record.editable) { return ( this.handleFieldChange(e, 'workId', record.key)} onKeyPress={e => this.handleKeyPress(e, record.key)} placeholder="工号" /> ); } return text; }, }, { title: '所属部门', dataIndex: 'department', key: 'department', width: '40%', render: (text, record) => { if (record.editable) { return ( this.handleFieldChange(e, 'department', record.key)} onKeyPress={e => this.handleKeyPress(e, record.key)} placeholder="所属部门" /> ); } return text; }, }, { title: '操作', key: 'action', render: (text, record) => { if (!!record.editable && this.state.loading) { return null; } if (record.editable) { if (record.isNew) { return ( this.saveRow(e, record.key)}>添加 this.remove(record.key)}> 删除 ); } return ( this.saveRow(e, record.key)}>保存 this.cancel(e, record.key)}>取消 ); } return ( this.toggleEditable(e, record.key)}>编辑 this.remove(record.key)}> 删除 ); }, }, ]; return ( { return record.editable ? styles.editable : ''; }} /> ); } }