index.jsx 13.3 KB
Newer Older
A
afc163 已提交
1
import React from 'react';
2
import reqwest from 'reqwest';
A
afc163 已提交
3
import Table from 'rc-table';
A
afc163 已提交
4
import Checkbox from '../checkbox';
A
afc163 已提交
5
import FilterDropdown from './filterDropdown';
6
import Pagination from '../pagination';
A
afc163 已提交
7
import objectAssign from 'object-assign';
A
afc163 已提交
8

Y
yiminghe 已提交
9 10
function noop() {
}
11

Y
yiminghe 已提交
12 13 14
function defaultResolve(data) {
  return data || [];
}
15

16
class DataSource {
Y
yiminghe 已提交
17 18
  init(config) {
    this.config = config;
dqaria's avatar
dqaria 已提交
19
    this.url = config.url || '';
20 21 22
    this.resolve = config.resolve || defaultResolve;
    this.getParams = config.getParams || noop;
    this.getPagination = config.getPagination || noop;
A
afc163 已提交
23
    this.headers = config.headers || {};
A
afc163 已提交
24
    this.data = config.data || {};
Y
yiminghe 已提交
25 26 27 28 29 30 31 32
  }

  constructor(config) {
    if (config) {
      this.init(config);
    }
  }

33
  clone(config = {}) {
34
    return new DataSource(objectAssign({}, this.config, config));
35 36 37 38
  }
}

var AntTable = React.createClass({
Y
yiminghe 已提交
39
  getInitialState() {
A
afc163 已提交
40
    return {
Y
yiminghe 已提交
41
      // 减少状态
A
afc163 已提交
42
      selectedRowKeys: [],
Y
yiminghe 已提交
43 44 45 46 47 48 49 50
      // only for remote
      data: [],
      filters: {},
      loading: !this.isLocalDataSource(),
      sortColumn: '',
      sortOrder: '',
      sorter: null,
      pagination: this.hasPagination() ? objectAssign({
A
afc163 已提交
51 52
        pageSize: 10,
        current: 1
Y
yiminghe 已提交
53
      }, this.props.pagination) : {}
A
afc163 已提交
54 55
    };
  },
Y
yiminghe 已提交
56

A
afc163 已提交
57 58
  getDefaultProps() {
    return {
A
afc163 已提交
59
      prefixCls: 'ant-table',
A
afc163 已提交
60
      useFixedHeader: false,
A
afc163 已提交
61
      rowSelection: null,
A
afc163 已提交
62 63
      size: 'normal',
      bordered: false
A
afc163 已提交
64 65
    };
  },
Y
yiminghe 已提交
66

A
afc163 已提交
67
  propTypes: {
A
afc163 已提交
68
    dataSource: React.PropTypes.oneOfType([React.PropTypes.array, React.PropTypes.instanceOf(DataSource)])
A
afc163 已提交
69 70
  },

A
afc163 已提交
71
  componentWillReceiveProps(nextProps) {
Y
yiminghe 已提交
72
    if (('pagination' in nextProps) && nextProps.pagination !== false) {
A
afc163 已提交
73
      this.setState({
Y
yiminghe 已提交
74
        pagination: objectAssign({}, this.state.pagination, nextProps.pagination)
A
afc163 已提交
75 76
      });
    }
Y
yiminghe 已提交
77
    if (!this.isLocalDataSource()) {
78 79
      // 外界只有 dataSource 的变化会触发请请求
      if (nextProps.dataSource !== this.props.dataSource) {
Y
yiminghe 已提交
80 81 82 83 84 85 86
        this.setState({
          selectedRowKeys: [],
          loading: true
        }, this.fetch);
      }
    }
    if (nextProps.columns !== this.props.columns) {
A
afc163 已提交
87
      this.setState({
Y
yiminghe 已提交
88
        filters: {}
A
afc163 已提交
89 90 91
      });
    }
  },
A
afc163 已提交
92 93

  hasPagination(pagination) {
Y
yiminghe 已提交
94 95
    if (pagination === undefined) {
      pagination = this.props.pagination;
A
afc163 已提交
96
    }
Y
yiminghe 已提交
97 98
    return pagination !== false;
  },
A
afc163 已提交
99 100

  isLocalDataSource() {
Y
yiminghe 已提交
101
    return Array.isArray(this.props.dataSource);
A
afc163 已提交
102
  },
A
afc163 已提交
103 104

  getRemoteDataSource() {
Y
yiminghe 已提交
105
    return this.props.dataSource;
A
afc163 已提交
106
  },
A
afc163 已提交
107

A
afc163 已提交
108
  toggleSortOrder(order, column) {
109 110
    let sortColumn = this.state.sortColumn;
    let sortOrder = this.state.sortOrder;
J
jljsj 已提交
111
    let sorter;
A
afc163 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124
    // 只同时允许一列进行排序,否则会导致排序顺序的逻辑问题
    let isSortColumn = this.isSortColumn(column);
    if (!isSortColumn) {  // 当前列未排序
      sortOrder = order;
      sortColumn = column;
    } else {                      // 当前列已排序
      if (sortOrder === order) {  // 切换为未排序状态
        sortOrder = '';
        sortColumn = null;
      } else {                    // 切换为排序状态
        sortOrder = order;
      }
    }
Y
yiminghe 已提交
125 126
    if (this.isLocalDataSource()) {
      sorter = function () {
127
        let result = column.sorter.apply(this, arguments);
128
        if (sortOrder === 'ascend') {
129
          return result;
130
        } else if (sortOrder === 'descend') {
131 132 133
          return -result;
        }
      };
A
afc163 已提交
134
    }
Y
yiminghe 已提交
135
    this.fetch({
A
afc163 已提交
136
      sortOrder: sortOrder,
J
jljsj 已提交
137 138
      sortColumn: sortColumn,
      sorter: sorter
Y
yiminghe 已提交
139
    });
A
afc163 已提交
140
  },
A
afc163 已提交
141

Y
yiminghe 已提交
142 143 144 145 146 147 148 149
  handleFilter(column, filters) {
    filters = objectAssign({}, this.state.filters, {
      [this.getColumnKey(column)]: filters
    });
    this.fetch({
      selectedRowKeys: [],
      filters: filters
    });
A
afc163 已提交
150
  },
A
afc163 已提交
151

Y
yiminghe 已提交
152
  handleSelect(record, rowIndex, e) {
A
afc163 已提交
153
    let checked = e.target.checked;
Y
yiminghe 已提交
154 155
    let selectedRowKeys = this.state.selectedRowKeys.concat();
    let key = this.getRecordKey(record, rowIndex);
156
    if (checked) {
Y
yiminghe 已提交
157
      selectedRowKeys.push(this.getRecordKey(record, rowIndex));
158
    } else {
Y
yiminghe 已提交
159 160
      selectedRowKeys = selectedRowKeys.filter((i) => {
        return key !== i;
161 162 163
      });
    }
    this.setState({
Y
yiminghe 已提交
164
      selectedRowKeys: selectedRowKeys
165 166
    });
    if (this.props.rowSelection.onSelect) {
Y
yiminghe 已提交
167 168 169
      let data = this.getCurrentPageData();
      let selectedRows = data.filter((row, i) => {
        return selectedRowKeys.indexOf(this.getRecordKey(row, i)) >= 0;
A
afc163 已提交
170
      });
Y
yiminghe 已提交
171
      this.props.rowSelection.onSelect(record, checked, selectedRows);
172 173
    }
  },
A
afc163 已提交
174

A
afc163 已提交
175 176
  handleSelectAllRow(e) {
    let checked = e.target.checked;
Y
yiminghe 已提交
177 178 179 180
    let data = this.getCurrentPageData();
    let selectedRowKeys = checked ? data.map((item, i) => {
      return this.getRecordKey(item, i);
    }) : [];
A
afc163 已提交
181 182
    this.setState({
      selectedRowKeys: selectedRowKeys
183 184
    });
    if (this.props.rowSelection.onSelectAll) {
Y
yiminghe 已提交
185 186
      let selectedRows = data.filter((row, i) => {
        return selectedRowKeys.indexOf(this.getRecordKey(row, i)) >= 0;
A
afc163 已提交
187 188
      });
      this.props.rowSelection.onSelectAll(checked, selectedRows);
A
afc163 已提交
189
    }
A
afc163 已提交
190
  },
A
afc163 已提交
191

192
  handlePageChange(current) {
Y
yiminghe 已提交
193
    let pagination = objectAssign({}, this.state.pagination);
194 195 196 197 198
    if (current) {
      pagination.current = current;
    } else {
      pagination.current = pagination.current || 1;
    }
Y
yiminghe 已提交
199 200 201
    this.fetch({
      // 防止内存泄漏,只维持当页
      selectedRowKeys: [],
A
afc163 已提交
202
      pagination: pagination
Y
yiminghe 已提交
203
    });
204
  },
A
afc163 已提交
205

206
  renderSelectionCheckBox(value, record, index) {
Y
yiminghe 已提交
207
    let rowIndex = this.getRecordKey(record, index); // 从 1 开始
A
afc163 已提交
208
    let checked = this.state.selectedRowKeys.indexOf(rowIndex) >= 0;
Y
yiminghe 已提交
209 210
    return <Checkbox checked={checked} onChange={this.handleSelect.bind(this, record, rowIndex)}/>;
  },
A
afc163 已提交
211 212

  getRecordKey(record, index) {
Y
yiminghe 已提交
213
    return record.key || index;
214
  },
A
afc163 已提交
215

216
  renderRowSelection() {
Y
yiminghe 已提交
217
    let columns = this.props.columns.concat();
218
    if (this.props.rowSelection) {
Y
yiminghe 已提交
219 220 221 222 223 224 225 226 227 228 229
      let data = this.getCurrentPageData();
      let checked;
      if (!data.length) {
        checked = false;
      } else {
        checked = data.every((item, i) => {
          let key = this.getRecordKey(item, i);
          return this.state.selectedRowKeys.indexOf(key) >= 0;
        });
      }
      let checkboxAll = <Checkbox checked={checked} onChange={this.handleSelectAllRow}/>;
230 231 232 233
      let selectionColumn = {
        key: 'selection-column',
        title: checkboxAll,
        width: 60,
A
afc163 已提交
234 235
        render: this.renderSelectionCheckBox,
        className: 'ant-table-selection-column'
236 237
      };
      if (columns[0] &&
Y
yiminghe 已提交
238
        columns[0].key === 'selection-column') {
239 240 241 242 243 244 245
        columns[0] = selectionColumn;
      } else {
        columns.unshift(selectionColumn);
      }
    }
    return columns;
  },
Y
yiminghe 已提交
246

A
afc163 已提交
247
  getCurrentPageData() {
Y
yiminghe 已提交
248 249 250
    return this.isLocalDataSource() ? this.getLocalDataPaging() : this.state.data;
  },

A
afc163 已提交
251 252 253 254 255 256 257 258 259 260 261
  getColumnKey(column, index) {
    return column.key || column.dataIndex || index;
  },

  isSortColumn(column) {
    if (!column || !this.state.sortColumn) {
      return false;
    }
    let colKey = this.getColumnKey(column);
    let isSortColumn = (this.getColumnKey(this.state.sortColumn) === colKey);
    return isSortColumn;
Y
yiminghe 已提交
262 263 264
  },

  renderColumnsDropdown(columns) {
Y
yiminghe 已提交
265
    return columns.map((column, i) => {
Y
yiminghe 已提交
266
      column = objectAssign({}, column);
A
afc163 已提交
267
      let key = this.getColumnKey(column, i);
A
afc163 已提交
268
      let filterDropdown, sortButton;
269
      if (column.filters && column.filters.length > 0) {
Y
yiminghe 已提交
270
        let colFilters = this.state.filters[key] || [];
A
afc163 已提交
271 272 273 274
        filterDropdown =
          <FilterDropdown column={column}
                          selectedKeys={colFilters}
                          confirmFilter={this.handleFilter} />;
A
afc163 已提交
275 276
      }
      if (column.sorter) {
A
afc163 已提交
277
        let isSortColumn = this.isSortColumn(column);
Y
yiminghe 已提交
278 279
        if (isSortColumn) {
          column.className = column.className || '';
A
afc163 已提交
280 281 282
          if (this.state.sortOrder) {
            column.className += ' ant-table-column-sort';
          }
Y
yiminghe 已提交
283
        }
A
afc163 已提交
284 285
        sortButton = <div className="ant-table-column-sorter">
          <span className={'ant-table-column-sorter-up ' +
286
                           ((isSortColumn && this.state.sortOrder === 'ascend') ? 'on' : 'off')}
Y
yiminghe 已提交
287 288
                title="升序排序"
                onClick={this.toggleSortOrder.bind(this, 'ascend', column)}>
A
afc163 已提交
289 290 291
            <i className="anticon anticon-caret-up"></i>
          </span>
          <span className={'ant-table-column-sorter-down ' +
292
                           ((isSortColumn && this.state.sortOrder === 'descend') ? 'on' : 'off')}
Y
yiminghe 已提交
293 294
                title="降序排序"
                onClick={this.toggleSortOrder.bind(this, 'descend', column)}>
A
afc163 已提交
295 296 297 298 299
            <i className="anticon anticon-caret-down"></i>
          </span>
        </div>;
      }
      column.title = [
Y
yiminghe 已提交
300
        column.title,
A
afc163 已提交
301 302 303
        sortButton,
        filterDropdown
      ];
A
afc163 已提交
304
      return column;
A
afc163 已提交
305 306
    });
  },
A
afc163 已提交
307

308 309
  renderPagination() {
    // 强制不需要分页
Y
yiminghe 已提交
310 311
    if (!this.hasPagination()) {
      return null;
A
afc163 已提交
312
    }
A
afc163 已提交
313 314 315 316
    let classString = 'ant-table-pagination';
    if (this.props.size === 'small') {
      classString += ' mini';
    }
Y
yiminghe 已提交
317 318 319 320
    let total;
    if (this.isLocalDataSource()) {
      total = this.getLocalData().length;
    }
A
afc163 已提交
321
    return <Pagination className={classString}
Y
yiminghe 已提交
322 323 324
                       onChange={this.handlePageChange}
                       total={total}
                       pageSize={10}
325
      {...this.state.pagination} />;
A
afc163 已提交
326
  },
A
afc163 已提交
327

Y
yiminghe 已提交
328
  prepareParamsArguments(state) {
329 330 331
    // 准备筛选、排序、分页的参数
    let pagination;
    let filters = {};
A
afc163 已提交
332
    let sorter = {};
Y
yiminghe 已提交
333 334 335 336 337
    pagination = state.pagination;
    this.props.columns.forEach((column) => {
      let colFilters = state.filters[this.getColumnKey(column)] || [];
      if (colFilters.length > 0) {
        filters[this.getColumnKey(column)] = colFilters;
338 339
      }
    });
Y
yiminghe 已提交
340 341 342 343 344
    if (state.sortColumn &&
      state.sortOrder &&
      state.sortColumn.dataIndex) {
      sorter.field = state.sortColumn.dataIndex;
      sorter.order = state.sortOrder;
A
afc163 已提交
345 346
    }
    return [pagination, filters, sorter];
347
  },
Y
yiminghe 已提交
348 349 350 351 352 353 354 355 356 357 358 359 360

  fetch(newState) {
    if (this.isLocalDataSource()) {
      if (newState) {
        this.setState(newState);
      }
    } else {
      let state = objectAssign({}, this.state, newState);
      if (newState || !this.state.loading) {
        this.setState(objectAssign({
          loading: true
        }, newState));
      }
A
afc163 已提交
361
      // remote 模式使用 this.dataSource
Y
yiminghe 已提交
362
      let dataSource = this.getRemoteDataSource();
A
afc163 已提交
363
      let buildInParams = dataSource.getParams.apply(this, this.prepareParamsArguments(state)) || {};
364
      return reqwest({
365
        url: dataSource.url,
366
        method: 'get',
A
afc163 已提交
367
        data: objectAssign(buildInParams, dataSource.data),
A
afc163 已提交
368
        headers: dataSource.headers,
369
        type: 'json',
A
afc163 已提交
370 371
        success: (result) => {
          if (this.isMounted()) {
A
afc163 已提交
372
            let pagination = objectAssign(
Y
yiminghe 已提交
373
              state.pagination,
A
afc163 已提交
374 375
              dataSource.getPagination.call(this, result)
            );
A
afc163 已提交
376
            this.setState({
Y
yiminghe 已提交
377
              loading: false,
378
              data: dataSource.resolve.call(this, result),
Y
yiminghe 已提交
379
              pagination: pagination
A
afc163 已提交
380 381 382
            });
          }
        },
A
afc163 已提交
383
        error: () => {
A
afc163 已提交
384
          this.setState({
Y
yiminghe 已提交
385 386
            loading: false,
            data: []
A
afc163 已提交
387 388 389
          });
        }
      });
Y
yiminghe 已提交
390 391 392
    }
  },

A
afc163 已提交
393
  findColumn(myKey) {
Y
yiminghe 已提交
394 395 396 397 398
    return this.props.columns.filter((c) => {
      return this.getColumnKey(c) === myKey;
    })[0];
  },

A
afc163 已提交
399
  getLocalDataPaging() {
Y
yiminghe 已提交
400 401 402 403 404 405 406
    let data = this.getLocalData();
    let current, pageSize;
    let state = this.state;
    // 如果没有分页的话,默认全部展示
    if (!this.hasPagination()) {
      pageSize = Number.MAX_VALUE;
      current = 1;
407
    } else {
Y
yiminghe 已提交
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
      pageSize = state.pagination.pageSize;
      current = state.pagination.current;
    }
    // 分页
    // ---
    // 当数据量少于每页数量时,直接设置数据
    // 否则进行读取分页数据
    if (data.length > pageSize || pageSize === Number.MAX_VALUE) {
      data = data.filter((item, i) => {
        if (i >= (current - 1) * pageSize &&
          i < current * pageSize) {
          return item;
        }
      });
    }
    return data;
  },

A
afc163 已提交
426
  getLocalData() {
Y
yiminghe 已提交
427 428 429 430 431 432 433 434 435 436 437
    let state = this.state;
    let data = this.props.dataSource;
    // 排序
    if (state.sortOrder && state.sorter) {
      data = data.sort(state.sorter);
    }
    // 筛选
    if (state.filters) {
      Object.keys(state.filters).forEach((columnKey) => {
        let col = this.findColumn(columnKey);
        let values = state.filters[columnKey] || [];
A
afc163 已提交
438 439 440
        if (values.length === 0) {
          return;
        }
Y
yiminghe 已提交
441 442 443 444
        data = data.filter((record) => {
          return values.some((v)=> {
            return col.onFilter(v, record);
          });
445
        });
A
afc163 已提交
446
      });
A
afc163 已提交
447
    }
Y
yiminghe 已提交
448
    return data;
A
afc163 已提交
449
  },
Y
yiminghe 已提交
450

A
afc163 已提交
451
  componentDidMount() {
Y
yiminghe 已提交
452 453 454
    if (!this.isLocalDataSource()) {
      this.fetch();
    }
A
afc163 已提交
455
  },
456

Y
yiminghe 已提交
457 458 459 460
  render() {
    let data = this.getCurrentPageData();
    let columns = this.renderRowSelection();
    let classString = '';
A
afc163 已提交
461
    if (this.state.loading && !this.isLocalDataSource()) {
A
afc163 已提交
462 463 464 465 466
      classString += ' ant-table-loading';
    }
    if (this.props.size === 'small') {
      classString += ' ant-table-small';
    }
A
afc163 已提交
467 468 469
    if (this.props.bordered) {
      classString += ' ant-table-bordered';
    }
Y
yiminghe 已提交
470
    columns = this.renderColumnsDropdown(columns);
471
    return <div className="clearfix">
Y
yiminghe 已提交
472 473 474 475 476 477
      <Table
        {...this.props}
        data={data || []}
        columns={columns}
        className={classString}
        />
478 479
      {this.renderPagination()}
    </div>;
A
afc163 已提交
480 481
  }
});
482 483 484

AntTable.DataSource = DataSource;

dqaria's avatar
dqaria 已提交
485
export default AntTable;