TableForm.js 6.25 KB
Newer Older
1
import React, { PureComponent } from 'react';
afc163's avatar
afc163 committed
2
import { Table, Button, Input, message, Popconfirm, Divider } from 'antd';
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import styles from './style.less';

export default class TableForm extends PureComponent {
  constructor(props) {
    super(props);

    this.state = {
      data: props.value,
    };
  }
  componentWillReceiveProps(nextProps) {
    if ('value' in nextProps) {
      this.setState({
        data: nextProps.value,
      });
    }
  }
afc163's avatar
afc163 committed
20 21
  getRowByKey(key, newData) {
    return (newData || this.state.data).filter(item => item.key === key)[0];
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
  }
  index = 0;
  cacheOriginData = {};
  handleSubmit = (e) => {
    e.preventDefault();
    this.props.form.validateFieldsAndScroll((err, values) => {
      if (!err) {
        this.props.dispatch({
          type: 'form/submit',
          payload: values,
        });
      }
    });
  }
  toggleEditable(e, key) {
    e.preventDefault();
afc163's avatar
afc163 committed
38 39
    const newData = this.state.data.map(item => ({ ...item }));
    const target = this.getRowByKey(key, newData);
40 41 42 43 44 45
    if (target) {
      // 进入编辑状态时保存原始数据
      if (!target.editable) {
        this.cacheOriginData[key] = { ...target };
      }
      target.editable = !target.editable;
afc163's avatar
afc163 committed
46
      this.setState({ data: newData });
47 48
    }
  }
afc163's avatar
afc163 committed
49
  remove(key) {
50 51 52 53 54
    const newData = this.state.data.filter(item => item.key !== key);
    this.setState({ data: newData });
    this.props.onChange(newData);
  }
  newMember = () => {
afc163's avatar
afc163 committed
55
    const newData = this.state.data.map(item => ({ ...item }));
56 57 58 59 60 61
    newData.push({
      key: `NEW_TEMP_ID_${this.index}`,
      workId: '',
      name: '',
      department: '',
      editable: true,
afc163's avatar
afc163 committed
62
      isNew: true,
63 64 65 66
    });
    this.index += 1;
    this.setState({ data: newData });
  }
afc163's avatar
afc163 committed
67 68 69 70 71
  handleKeyPress(e, key) {
    if (e.key === 'Enter') {
      this.saveRow(e, key);
    }
  }
72
  handleFieldChange(e, fieldName, key) {
afc163's avatar
afc163 committed
73 74
    const newData = this.state.data.map(item => ({ ...item }));
    const target = this.getRowByKey(key, newData);
75 76 77 78 79 80
    if (target) {
      target[fieldName] = e.target.value;
      this.setState({ data: newData });
    }
  }
  saveRow(e, key) {
afc163's avatar
afc163 committed
81 82 83 84 85 86 87 88 89 90 91
    e.persist();
    // save field when blur input
    setTimeout(() => {
      if (document.activeElement.tagName === 'INPUT' &&
          document.activeElement !== e.target) {
        return;
      }
      if (this.clickedCancel) {
        this.clickedCancel = false;
        return;
      }
afc163's avatar
afc163 committed
92
      const target = this.getRowByKey(key) || {};
afc163's avatar
afc163 committed
93 94
      if (!target.workId || !target.name || !target.department) {
        message.error('请填写完整成员信息。');
afc163's avatar
afc163 committed
95
        e.target.focus();
afc163's avatar
afc163 committed
96 97
        return;
      }
afc163's avatar
afc163 committed
98
      delete target.isNew;
afc163's avatar
afc163 committed
99 100 101
      this.toggleEditable(e, key);
      this.props.onChange(this.state.data);
    }, 10);
102 103
  }
  cancel(e, key) {
afc163's avatar
afc163 committed
104
    this.clickedCancel = true;
105
    e.preventDefault();
afc163's avatar
afc163 committed
106 107
    const newData = this.state.data.map(item => ({ ...item }));
    const target = this.getRowByKey(key, newData);
108 109 110 111 112
    if (this.cacheOriginData[key]) {
      Object.assign(target, this.cacheOriginData[key]);
      target.editable = false;
      delete this.cacheOriginData[key];
    }
afc163's avatar
afc163 committed
113
    this.setState({ data: newData });
114 115 116 117 118 119 120 121 122 123 124 125 126 127
  }
  render() {
    const columns = [{
      title: '成员姓名',
      dataIndex: 'name',
      key: 'name',
      width: '20%',
      render: (text, record) => {
        if (record.editable) {
          return (
            <Input
              value={text}
              autoFocus
              onChange={e => this.handleFieldChange(e, 'name', record.key)}
afc163's avatar
afc163 committed
128 129
              onBlur={e => this.saveRow(e, record.key)}
              onKeyPress={e => this.handleKeyPress(e, record.key)}
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
              placeholder="成员姓名"
            />
          );
        }
        return text;
      },
    }, {
      title: '工号',
      dataIndex: 'workId',
      key: 'workId',
      width: '20%',
      render: (text, record) => {
        if (record.editable) {
          return (
            <Input
              value={text}
              onChange={e => this.handleFieldChange(e, 'workId', record.key)}
afc163's avatar
afc163 committed
147 148
              onBlur={e => this.saveRow(e, record.key)}
              onKeyPress={e => this.handleKeyPress(e, record.key)}
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
              placeholder="工号"
            />
          );
        }
        return text;
      },
    }, {
      title: '所属部门',
      dataIndex: 'department',
      key: 'department',
      width: '40%',
      render: (text, record) => {
        if (record.editable) {
          return (
            <Input
              value={text}
              onChange={e => this.handleFieldChange(e, 'department', record.key)}
afc163's avatar
afc163 committed
166 167
              onBlur={e => this.saveRow(e, record.key)}
              onKeyPress={e => this.handleKeyPress(e, record.key)}
168 169 170 171 172 173 174 175 176 177 178
              placeholder="所属部门"
            />
          );
        }
        return text;
      },
    }, {
      title: '操作',
      key: 'action',
      render: (text, record) => {
        if (record.editable) {
afc163's avatar
afc163 committed
179
          if (record.isNew) {
180 181
            return (
              <span>
afc163's avatar
afc163 committed
182
                <a>保存</a>
afc163's avatar
afc163 committed
183
                <Divider type="vertical" />
afc163's avatar
afc163 committed
184 185 186
                <Popconfirm title="是否要删除此行?" onConfirm={() => this.remove(record.key)}>
                  <a>删除</a>
                </Popconfirm>
187 188 189 190 191
              </span>
            );
          }
          return (
            <span>
afc163's avatar
afc163 committed
192
              <a>保存</a>
afc163's avatar
afc163 committed
193
              <Divider type="vertical" />
194 195 196 197 198 199 200
              <a onClick={e => this.cancel(e, record.key)}>取消</a>
            </span>
          );
        }
        return (
          <span>
            <a onClick={e => this.toggleEditable(e, record.key)}>编辑</a>
afc163's avatar
afc163 committed
201
            <Divider type="vertical" />
afc163's avatar
afc163 committed
202 203 204
            <Popconfirm title="是否要删除此行?" onConfirm={() => this.remove(record.key)}>
              <a>删除</a>
            </Popconfirm>
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
          </span>
        );
      },
    }];

    return (
      <div>
        <Table
          columns={columns}
          dataSource={this.state.data}
          pagination={false}
          rowClassName={(record) => {
            return record.editable ? styles.editable : '';
          }}
        />
        <Button
221
          style={{ width: '100%', marginTop: 16, marginBottom: 8 }}
222 223 224 225 226 227 228 229 230 231
          type="dashed"
          onClick={this.newMember}
          icon="plus"
        >
          新增成员
        </Button>
      </div>
    );
  }
}