index.js 3.09 KB
Newer Older
陈帅's avatar
陈帅 committed
1
import React, { PureComponent, Fragment } from 'react';
ddcat1115's avatar
ddcat1115 committed
2
import { Table, Alert } from 'antd';
3 4
import styles from './index.less';

ddcat1115's avatar
ddcat1115 committed
5 6
function initTotalList(columns) {
  const totalList = [];
jim's avatar
jim committed
7
  columns.forEach(column => {
ddcat1115's avatar
ddcat1115 committed
8 9 10 11 12 13 14
    if (column.needTotal) {
      totalList.push({ ...column, total: 0 });
    }
  });
  return totalList;
}

15
class StandardTable extends PureComponent {
ddcat1115's avatar
ddcat1115 committed
16 17 18 19 20 21 22 23 24 25
  constructor(props) {
    super(props);
    const { columns } = props;
    const needTotalList = initTotalList(columns);

    this.state = {
      selectedRowKeys: [],
      needTotalList,
    };
  }
26 27 28 29

  componentWillReceiveProps(nextProps) {
    // clean state
    if (nextProps.selectedRows.length === 0) {
ddcat1115's avatar
ddcat1115 committed
30
      const needTotalList = initTotalList(nextProps.columns);
31 32
      this.setState({
        selectedRowKeys: [],
ddcat1115's avatar
ddcat1115 committed
33
        needTotalList,
34 35 36 37 38
      });
    }
  }

  handleRowSelectChange = (selectedRowKeys, selectedRows) => {
ddcat1115's avatar
ddcat1115 committed
39
    let needTotalList = [...this.state.needTotalList];
jim's avatar
jim committed
40
    needTotalList = needTotalList.map(item => {
ddcat1115's avatar
ddcat1115 committed
41 42 43 44 45 46 47
      return {
        ...item,
        total: selectedRows.reduce((sum, val) => {
          return sum + parseFloat(val[item.dataIndex], 10);
        }, 0),
      };
    });
48 49 50 51 52

    if (this.props.onSelectRow) {
      this.props.onSelectRow(selectedRows);
    }

ddcat1115's avatar
ddcat1115 committed
53
    this.setState({ selectedRowKeys, needTotalList });
jim's avatar
jim committed
54
  };
55 56 57

  handleTableChange = (pagination, filters, sorter) => {
    this.props.onChange(pagination, filters, sorter);
jim's avatar
jim committed
58
  };
59 60 61

  cleanSelectedKeys = () => {
    this.handleRowSelectChange([], []);
jim's avatar
jim committed
62
  };
63 64

  render() {
ddcat1115's avatar
ddcat1115 committed
65
    const { selectedRowKeys, needTotalList } = this.state;
66
    const { data: { list, pagination }, loading, columns, rowKey } = this.props;
67 68 69 70 71 72 73 74 75 76

    const paginationProps = {
      showSizeChanger: true,
      showQuickJumper: true,
      ...pagination,
    };

    const rowSelection = {
      selectedRowKeys,
      onChange: this.handleRowSelectChange,
nikogu's avatar
nikogu committed
77 78 79
      getCheckboxProps: record => ({
        disabled: record.disabled,
      }),
80 81 82 83 84 85
    };

    return (
      <div className={styles.standardTable}>
        <div className={styles.tableAlert}>
          <Alert
jim's avatar
jim committed
86
            message={
陈帅's avatar
陈帅 committed
87
              <Fragment>
ddcat1115's avatar
ddcat1115 committed
88
                已选择 <a style={{ fontWeight: 600 }}>{selectedRowKeys.length}</a> 项&nbsp;&nbsp;
jim's avatar
jim committed
89 90 91 92 93
                {needTotalList.map(item => (
                  <span style={{ marginLeft: 8 }} key={item.dataIndex}>
                    {item.title}总计&nbsp;
                    <span style={{ fontWeight: 600 }}>
                      {item.render ? item.render(item.total) : item.total}
ddcat1115's avatar
ddcat1115 committed
94
                    </span>
jim's avatar
jim committed
95 96 97 98 99
                  </span>
                ))}
                <a onClick={this.cleanSelectedKeys} style={{ marginLeft: 24 }}>
                  清空
                </a>
陈帅's avatar
陈帅 committed
100
              </Fragment>
jim's avatar
jim committed
101
            }
102 103 104 105 106 107
            type="info"
            showIcon
          />
        </div>
        <Table
          loading={loading}
108
          rowKey={rowKey || 'key'}
109 110 111 112 113 114 115 116 117 118 119 120
          rowSelection={rowSelection}
          dataSource={list}
          columns={columns}
          pagination={paginationProps}
          onChange={this.handleTableChange}
        />
      </div>
    );
  }
}

export default StandardTable;