ant-design/components/table/index.jsx

780 lines
23 KiB
React
Raw Normal View History

2015-07-09 11:41:36 +08:00
import React from 'react';
import RcTable from 'rc-table';
2015-07-15 17:22:58 +08:00
import Checkbox from '../checkbox';
import Radio from '../radio';
2015-08-17 18:14:39 +08:00
import FilterDropdown from './filterDropdown';
import Pagination from '../pagination';
2015-11-20 11:05:34 +08:00
import Icon from '../icon';
2015-10-27 10:34:05 +08:00
import Spin from '../spin';
2015-11-26 14:44:28 +08:00
import classNames from 'classnames';
import { flatArray } from './util';
2015-07-09 11:41:36 +08:00
2015-07-31 10:40:23 +08:00
function noop() {
}
function stopPropagation(e) {
e.stopPropagation();
e.nativeEvent.stopImmediatePropagation();
}
2015-11-24 15:58:50 +08:00
const defaultLocale = {
filterTitle: '筛选',
filterConfirm: '确定',
2015-12-16 18:14:22 +08:00
filterReset: '重置',
2016-05-21 18:53:49 +08:00
emptyText: <span><Icon type="frown" />暂无数据</span>,
2015-11-24 15:58:50 +08:00
};
const defaultPagination = {
pageSize: 10,
onChange: noop,
onShowSizeChange: noop,
};
2016-04-13 17:23:14 +08:00
export default class Table extends React.Component {
static propTypes = {
2015-12-09 21:49:32 +08:00
dataSource: React.PropTypes.array,
2015-12-10 15:25:48 +08:00
prefixCls: React.PropTypes.string,
useFixedHeader: React.PropTypes.bool,
rowSelection: React.PropTypes.object,
className: React.PropTypes.string,
size: React.PropTypes.string,
loading: React.PropTypes.bool,
bordered: React.PropTypes.bool,
onChange: React.PropTypes.func,
locale: React.PropTypes.object,
2016-04-13 17:23:14 +08:00
}
static defaultProps = {
dataSource: [],
prefixCls: 'ant-table',
useFixedHeader: false,
rowSelection: null,
className: '',
size: 'large',
loading: false,
bordered: false,
indentSize: 20,
onChange: noop,
2016-05-11 09:32:33 +08:00
locale: {},
2016-04-13 17:23:14 +08:00
}
2016-04-13 17:23:14 +08:00
static contextTypes = {
2016-03-05 16:39:27 +08:00
antLocale: React.PropTypes.object,
2016-04-13 17:23:14 +08:00
}
constructor(props) {
super(props);
2016-04-14 14:47:39 +08:00
const pagination = props.pagination || {};
2016-04-13 17:23:14 +08:00
this.state = {
// 减少状态
2016-04-25 13:51:18 +08:00
selectedRowKeys: (props.rowSelection || {}).selectedRowKeys || [],
2016-04-13 17:23:14 +08:00
filters: this.getFiltersFromColumns(),
selectionDirty: false,
...this.getSortStateFromColumns(),
pagination: this.hasPagination() ?
{
...defaultPagination,
2016-04-14 14:47:39 +08:00
...pagination,
current: pagination.defaultCurrent || pagination.current || 1,
2016-04-13 17:23:14 +08:00
} : {},
};
this.CheckboxPropsCache = {};
}
getCheckboxPropsByItem(item) {
const { rowSelection = {} } = this.props;
if (!rowSelection.getCheckboxProps) {
return {};
}
const key = this.getRecordKey(item);
// Cache checkboxProps
if (!this.CheckboxPropsCache[key]) {
this.CheckboxPropsCache[key] = rowSelection.getCheckboxProps(item);
}
return this.CheckboxPropsCache[key];
2016-04-13 17:23:14 +08:00
}
2016-03-03 17:43:38 +08:00
getDefaultSelection() {
const { rowSelection = {} } = this.props;
if (!rowSelection.getCheckboxProps) {
return [];
}
return this.getFlatCurrentPageData()
.filter(item => this.getCheckboxPropsByItem(item).defaultChecked)
.map((record, rowIndex) => this.getRecordKey(record, rowIndex));
2016-04-13 17:23:14 +08:00
}
2016-03-03 17:43:38 +08:00
getLocale() {
let locale = {};
2016-03-05 16:39:27 +08:00
if (this.context.antLocale && this.context.antLocale.Table) {
locale = this.context.antLocale.Table;
2016-03-03 17:43:38 +08:00
}
2016-03-25 18:16:48 +08:00
return { ...defaultLocale, ...locale, ...this.props.locale };
2016-04-13 17:23:14 +08:00
}
2016-03-03 17:43:38 +08:00
2015-07-31 11:28:49 +08:00
componentWillReceiveProps(nextProps) {
2015-07-31 10:40:23 +08:00
if (('pagination' in nextProps) && nextProps.pagination !== false) {
2016-06-12 18:12:23 +08:00
this.setState(previousState => {
const newPagination = {
...defaultPagination,
...previousState.pagination,
...nextProps.pagination,
};
newPagination.current = newPagination.current || 1;
return { pagination: newPagination };
});
2015-07-28 14:02:18 +08:00
}
// dataSource 的变化会清空选中项
if ('dataSource' in nextProps &&
nextProps.dataSource !== this.props.dataSource) {
this.setState({
selectionDirty: false,
2015-11-03 18:16:16 +08:00
});
this.CheckboxPropsCache = {};
}
if (nextProps.rowSelection &&
'selectedRowKeys' in nextProps.rowSelection) {
this.setState({
selectedRowKeys: nextProps.rowSelection.selectedRowKeys || [],
});
if (nextProps.rowSelection.getCheckboxProps !== this.props.rowSelection.getCheckboxProps) {
this.CheckboxPropsCache = {};
}
}
2016-03-30 17:49:36 +08:00
if (this.getSortOrderColumns(nextProps.columns).length > 0) {
const sortState = this.getSortStateFromColumns(nextProps.columns);
2016-03-29 16:35:06 +08:00
if (sortState.sortColumn !== this.state.sortColumn ||
sortState.sortOrder !== this.state.sortOrder) {
2016-03-29 12:13:25 +08:00
this.setState(sortState);
}
}
2016-03-30 17:49:36 +08:00
const filteredValueColumns = this.getFilteredValueColumns(nextProps.columns);
if (filteredValueColumns.length > 0) {
const filtersFromColumns = this.getFiltersFromColumns(nextProps.columns);
const newFilters = { ...this.state.filters };
Object.keys(filtersFromColumns).forEach(key => {
newFilters[key] = filtersFromColumns[key];
});
2016-03-30 17:56:37 +08:00
if (this.isFiltersChanged(newFilters)) {
this.setState({ filters: newFilters });
}
2016-03-29 16:35:06 +08:00
}
2016-04-13 17:23:14 +08:00
}
setSelectedRowKeys(selectedRowKeys) {
if (this.props.rowSelection &&
!('selectedRowKeys' in this.props.rowSelection)) {
this.setState({ selectedRowKeys });
}
if (this.props.rowSelection && this.props.rowSelection.onChange) {
const data = this.getFlatCurrentPageData();
const selectedRows = data.filter(
(row, i) => selectedRowKeys.indexOf(this.getRecordKey(row, i)) >= 0
);
2016-03-02 21:56:48 +08:00
this.props.rowSelection.onChange(selectedRowKeys, selectedRows);
2015-11-03 18:16:16 +08:00
}
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
2015-12-27 16:20:59 +08:00
hasPagination() {
2015-12-09 21:49:32 +08:00
return this.props.pagination !== false;
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
2016-03-29 16:35:06 +08:00
isFiltersChanged(filters) {
let filtersChanged = false;
if (Object.keys(filters).length !== Object.keys(this.state.filters).length) {
filtersChanged = true;
} else {
Object.keys(filters).forEach(columnKey => {
if (filters[columnKey] !== this.state.filters[columnKey]) {
filtersChanged = true;
}
});
}
return filtersChanged;
2016-04-13 17:23:14 +08:00
}
2016-03-29 16:35:06 +08:00
2016-03-30 17:49:36 +08:00
getSortOrderColumns(columns) {
return (columns || this.props.columns || []).filter(column => 'sortOrder' in column);
2016-04-13 17:23:14 +08:00
}
2016-03-29 16:35:06 +08:00
2016-03-30 17:49:36 +08:00
getFilteredValueColumns(columns) {
return (columns || this.props.columns || []).filter(column => 'filteredValue' in column);
2016-04-13 17:23:14 +08:00
}
2016-03-29 16:35:06 +08:00
getFiltersFromColumns(columns) {
let filters = {};
2016-03-30 17:49:36 +08:00
this.getFilteredValueColumns(columns).forEach(col => {
filters[this.getColumnKey(col)] = col.filteredValue;
2016-03-29 16:35:06 +08:00
});
return filters;
2016-04-13 17:23:14 +08:00
}
2016-03-29 16:35:06 +08:00
getSortStateFromColumns(columns) {
2016-03-30 17:49:36 +08:00
// return fisrt column which sortOrder is not falsy
const sortedColumn =
this.getSortOrderColumns(columns).filter(col => col.sortOrder)[0];
2016-03-29 12:13:25 +08:00
if (sortedColumn) {
return {
sortColumn: sortedColumn,
2016-03-29 15:50:44 +08:00
sortOrder: sortedColumn.sortOrder,
2016-03-29 12:13:25 +08:00
};
}
2016-03-29 15:45:17 +08:00
return {
sortColumn: null,
sortOrder: null,
};
2016-04-13 17:23:14 +08:00
}
2016-03-29 12:13:25 +08:00
2016-03-28 20:52:54 +08:00
getSorterFn() {
const { sortOrder, sortColumn } = this.state;
if (!sortOrder || !sortColumn ||
typeof sortColumn.sorter !== 'function') {
2016-04-09 16:30:53 +08:00
return;
2016-03-28 20:52:54 +08:00
}
return (a, b) => {
let result = sortColumn.sorter(a, b);
if (result !== 0) {
return (sortOrder === 'descend') ? -result : result;
}
return a.indexForSort - b.indexForSort;
2016-03-28 20:52:54 +08:00
};
2016-04-13 17:23:14 +08:00
}
2016-03-28 20:52:54 +08:00
2015-07-13 16:22:02 +08:00
toggleSortOrder(order, column) {
2016-03-28 20:52:54 +08:00
let { sortColumn, sortOrder } = this.state;
2015-08-12 12:47:04 +08:00
// 只同时允许一列进行排序,否则会导致排序顺序的逻辑问题
let isSortColumn = this.isSortColumn(column);
if (!isSortColumn) { // 当前列未排序
sortOrder = order;
sortColumn = column;
} else { // 当前列已排序
if (sortOrder === order) { // 切换为未排序状态
sortOrder = '';
sortColumn = null;
} else { // 切换为排序状态
sortOrder = order;
}
}
2015-10-19 11:29:36 +08:00
const newState = {
sortOrder,
sortColumn,
};
2016-03-30 17:49:36 +08:00
// Controlled
2016-03-30 17:56:37 +08:00
if (this.getSortOrderColumns().length === 0) {
this.setState(newState);
}
2016-03-30 17:49:36 +08:00
2016-03-16 16:35:41 +08:00
this.props.onChange(...this.prepareParamsArguments({ ...this.state, ...newState }));
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
2016-04-13 17:23:14 +08:00
handleFilter = (column, nextFilters) => {
const props = this.props;
let pagination = { ...this.state.pagination };
2016-03-25 18:16:48 +08:00
const filters = {
...this.state.filters,
2016-03-29 16:35:06 +08:00
[this.getColumnKey(column)]: nextFilters,
2016-03-25 18:16:48 +08:00
};
// Remove filters not in current columns
const currentColumnKeys = props.columns.map(c => this.getColumnKey(c));
Object.keys(filters).forEach((columnKey) => {
if (currentColumnKeys.indexOf(columnKey) < 0) {
delete filters[columnKey];
}
});
2016-03-30 17:49:36 +08:00
if (props.pagination) {
// Reset current prop
pagination.current = 1;
pagination.onChange(pagination.current);
}
2015-10-19 11:29:36 +08:00
const newState = {
selectionDirty: false,
pagination,
2015-10-19 11:29:36 +08:00
};
2016-03-30 17:49:36 +08:00
const filtersToSetState = { ...filters };
// Remove filters which is controlled
this.getFilteredValueColumns().forEach(col => {
const columnKey = this.getColumnKey(col);
if (columnKey) {
delete filtersToSetState[columnKey];
}
});
if (Object.keys(filtersToSetState).length > 0) {
newState.filters = filtersToSetState;
2016-03-29 16:35:06 +08:00
}
// Controlled current prop will not respond user interaction
if (props.pagination && 'current' in props.pagination) {
newState.pagination = {
...pagination,
current: this.state.pagination.current,
};
}
2016-03-30 17:49:36 +08:00
this.setState(newState, () => {
props.onChange(...this.prepareParamsArguments({
...this.state,
selectionDirty: false,
filters,
pagination,
2016-03-30 17:49:36 +08:00
}));
});
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
2016-04-13 17:23:14 +08:00
handleSelect = (record, rowIndex, e) => {
const checked = e.target.checked;
const defaultSelection = this.state.selectionDirty ? [] : this.getDefaultSelection();
let selectedRowKeys = this.state.selectedRowKeys.concat(defaultSelection);
2015-07-31 10:40:23 +08:00
let key = this.getRecordKey(record, rowIndex);
if (checked) {
2015-07-31 10:40:23 +08:00
selectedRowKeys.push(this.getRecordKey(record, rowIndex));
} else {
selectedRowKeys = selectedRowKeys.filter((i) => key !== i);
}
this.setState({
selectionDirty: true,
});
this.setSelectedRowKeys(selectedRowKeys);
if (this.props.rowSelection.onSelect) {
let data = this.getFlatCurrentPageData();
let selectedRows = data.filter((row, i) => {
return selectedRowKeys.indexOf(this.getRecordKey(row, i)) >= 0;
});
this.props.rowSelection.onSelect(record, checked, selectedRows);
}
2016-04-13 17:23:14 +08:00
}
2016-04-13 17:23:14 +08:00
handleRadioSelect = (record, rowIndex, e) => {
const checked = e.target.checked;
const defaultSelection = this.state.selectionDirty ? [] : this.getDefaultSelection();
let selectedRowKeys = this.state.selectedRowKeys.concat(defaultSelection);
let key = this.getRecordKey(record, rowIndex);
selectedRowKeys = [key];
this.setState({
selectionDirty: true,
});
this.setSelectedRowKeys(selectedRowKeys);
if (this.props.rowSelection.onSelect) {
let data = this.getFlatCurrentPageData();
2015-07-31 10:40:23 +08:00
let selectedRows = data.filter((row, i) => {
return selectedRowKeys.indexOf(this.getRecordKey(row, i)) >= 0;
2015-07-15 20:22:56 +08:00
});
2015-07-31 10:40:23 +08:00
this.props.rowSelection.onSelect(record, checked, selectedRows);
}
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
2016-04-13 17:23:14 +08:00
handleSelectAllRow = (e) => {
const checked = e.target.checked;
const data = this.getFlatCurrentPageData();
const defaultSelection = this.state.selectionDirty ? [] : this.getDefaultSelection();
const selectedRowKeys = this.state.selectedRowKeys.concat(defaultSelection);
const changableRowKeys = data
.filter(item => !this.getCheckboxPropsByItem(item).disabled)
.map((item, i) => this.getRecordKey(item, i));
// 记录变化的列
const changeRowKeys = [];
if (checked) {
changableRowKeys.forEach(key => {
if (selectedRowKeys.indexOf(key) < 0) {
selectedRowKeys.push(key);
changeRowKeys.push(key);
}
});
} else {
changableRowKeys.forEach(key => {
if (selectedRowKeys.indexOf(key) >= 0) {
selectedRowKeys.splice(selectedRowKeys.indexOf(key), 1);
changeRowKeys.push(key);
}
});
}
2015-07-15 20:22:56 +08:00
this.setState({
selectionDirty: true,
});
this.setSelectedRowKeys(selectedRowKeys);
if (this.props.rowSelection.onSelectAll) {
const selectedRows = data.filter((row, i) =>
selectedRowKeys.indexOf(this.getRecordKey(row, i)) >= 0);
const changeRows = data.filter((row, i) =>
changeRowKeys.indexOf(this.getRecordKey(row, i)) >= 0);
this.props.rowSelection.onSelectAll(checked, selectedRows, changeRows);
2015-07-13 18:42:08 +08:00
}
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
2016-04-13 17:23:14 +08:00
handlePageChange = (current) => {
const props = this.props;
2016-03-25 18:16:48 +08:00
let pagination = { ...this.state.pagination };
if (current) {
pagination.current = current;
} else {
pagination.current = pagination.current || 1;
}
pagination.onChange(pagination.current);
2015-10-19 11:29:36 +08:00
const newState = {
selectionDirty: false,
pagination,
2015-10-19 11:29:36 +08:00
};
// Controlled current prop will not respond user interaction
if (props.pagination && 'current' in props.pagination) {
newState.pagination = {
...pagination,
current: this.state.pagination.current,
};
}
2015-12-09 21:49:32 +08:00
this.setState(newState);
this.props.onChange(...this.prepareParamsArguments({
...this.state,
selectionDirty: false,
pagination,
}));
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
renderSelectionRadio = (value, record, index) => {
let rowIndex = this.getRecordKey(record, index); // 从 1 开始
const props = this.getCheckboxPropsByItem(record);
let checked;
if (this.state.selectionDirty) {
checked = this.state.selectedRowKeys.indexOf(rowIndex) >= 0;
} else {
checked = (this.state.selectedRowKeys.indexOf(rowIndex) >= 0 ||
this.getDefaultSelection().indexOf(rowIndex) >= 0);
}
return (
<span onClick={stopPropagation}>
<Radio disabled={props.disabled}
onChange={(e) => this.handleRadioSelect(record, rowIndex, e)}
value={rowIndex} checked={checked}
/>
</span>
);
2016-04-13 17:23:14 +08:00
}
2016-04-14 11:22:53 +08:00
renderSelectionCheckBox = (value, record, index) => {
2015-07-31 10:40:23 +08:00
let rowIndex = this.getRecordKey(record, index); // 从 1 开始
let checked;
if (this.state.selectionDirty) {
checked = this.state.selectedRowKeys.indexOf(rowIndex) >= 0;
} else {
checked = (this.state.selectedRowKeys.indexOf(rowIndex) >= 0 ||
this.getDefaultSelection().indexOf(rowIndex) >= 0);
}
const props = this.getCheckboxPropsByItem(record);
return (
<span onClick={stopPropagation}>
<Checkbox
checked={checked}
disabled={props.disabled}
onChange={(e) => this.handleSelect(record, rowIndex, e)}
/>
</span>
);
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
getRecordKey(record, index) {
if (this.props.rowKey) {
return this.props.rowKey(record, index);
}
2015-07-31 10:40:23 +08:00
return record.key || index;
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
renderRowSelection() {
const columns = this.props.columns.concat();
if (this.props.rowSelection) {
const data = this.getFlatCurrentPageData().filter((item) => {
if (this.props.rowSelection.getCheckboxProps) {
return !this.getCheckboxPropsByItem(item).disabled;
}
return true;
});
2015-07-31 10:40:23 +08:00
let checked;
if (!data.length) {
checked = false;
} else {
2015-11-16 15:57:36 +08:00
checked = this.state.selectionDirty
? data.every((item, i) =>
this.state.selectedRowKeys.indexOf(this.getRecordKey(item, i)) >= 0)
2016-01-15 17:43:37 +08:00
: (
data.every((item, i) =>
this.state.selectedRowKeys.indexOf(this.getRecordKey(item, i)) >= 0) ||
data.every(item => this.getCheckboxPropsByItem(item).defaultChecked)
2016-01-15 17:43:37 +08:00
);
2015-07-31 10:40:23 +08:00
}
let selectionColumn;
if (this.props.rowSelection.type === 'radio') {
selectionColumn = {
key: 'selection-column',
render: this.renderSelectionRadio,
2016-05-11 09:32:33 +08:00
className: 'ant-table-selection-column',
};
} else {
const checkboxAllDisabled = data.every(item => this.getCheckboxPropsByItem(item).disabled);
const checkboxAll = (
<Checkbox checked={checked}
disabled={checkboxAllDisabled}
onChange={this.handleSelectAllRow}
/>
);
selectionColumn = {
key: 'selection-column',
title: checkboxAll,
render: this.renderSelectionCheckBox,
2016-05-11 09:32:33 +08:00
className: 'ant-table-selection-column',
};
}
if (columns.some(column => column.fixed === 'left' || column.fixed === true)) {
selectionColumn.fixed = 'left';
}
2016-03-02 16:01:36 +08:00
if (columns[0] && columns[0].key === 'selection-column') {
columns[0] = selectionColumn;
} else {
columns.unshift(selectionColumn);
}
}
return columns;
2016-04-13 17:23:14 +08:00
}
2015-07-31 10:40:23 +08:00
2015-08-12 12:47:04 +08:00
getColumnKey(column, index) {
return column.key || column.dataIndex || index;
2016-04-13 17:23:14 +08:00
}
2015-08-12 12:47:04 +08:00
isSortColumn(column) {
2016-03-28 20:52:54 +08:00
const { sortColumn } = this.state;
if (!column || !sortColumn) {
2015-08-12 12:47:04 +08:00
return false;
}
2016-03-28 20:52:54 +08:00
return this.getColumnKey(sortColumn) === this.getColumnKey(column);
2016-04-13 17:23:14 +08:00
}
2015-07-31 10:40:23 +08:00
renderColumnsDropdown(columns) {
2016-03-28 20:52:54 +08:00
const { sortOrder } = this.state;
2016-03-03 17:43:38 +08:00
const locale = this.getLocale();
return columns.map((originColumn, i) => {
2016-03-25 18:16:48 +08:00
let column = { ...originColumn };
2015-08-12 12:47:04 +08:00
let key = this.getColumnKey(column, i);
let filterDropdown;
let sortButton;
if (column.filters && column.filters.length > 0) {
2015-07-31 10:40:23 +08:00
let colFilters = this.state.filters[key] || [];
filterDropdown = (
2015-11-24 15:58:50 +08:00
<FilterDropdown locale={locale} column={column}
selectedKeys={colFilters}
confirmFilter={this.handleFilter}
/>
);
2015-07-13 16:22:02 +08:00
}
if (column.sorter) {
2015-08-12 12:47:04 +08:00
let isSortColumn = this.isSortColumn(column);
2015-08-12 11:50:07 +08:00
if (isSortColumn) {
column.className = column.className || '';
2016-03-28 20:52:54 +08:00
if (sortOrder) {
2015-08-12 12:47:04 +08:00
column.className += ' ant-table-column-sort';
}
2015-08-12 11:50:07 +08:00
}
2016-03-28 20:52:54 +08:00
const isAscend = isSortColumn && sortOrder === 'ascend';
const isDescend = isSortColumn && sortOrder === 'descend';
sortButton = (
<div className="ant-table-column-sorter">
<span className={`ant-table-column-sorter-up ${isAscend ? 'on' : 'off'}`}
title="↑"
onClick={() => this.toggleSortOrder('ascend', column)}
>
<Icon type="caret-up" />
</span>
<span className={`ant-table-column-sorter-down ${isDescend ? 'on' : 'off'}`}
title="↓"
onClick={() => this.toggleSortOrder('descend', column)}
>
<Icon type="caret-down" />
</span>
</div>
);
2015-07-13 16:22:02 +08:00
}
column.title = (
<span>
{column.title}
{sortButton}
{filterDropdown}
</span>
);
2015-07-13 17:40:17 +08:00
return column;
2015-07-13 16:22:02 +08:00
});
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
2016-04-13 17:23:14 +08:00
handleShowSizeChange = (current, pageSize) => {
2015-12-24 10:12:31 +08:00
const pagination = this.state.pagination;
pagination.onShowSizeChange(current, pageSize);
const nextPagination = { ...pagination, pageSize, current };
2015-12-24 10:12:31 +08:00
this.setState({ pagination: nextPagination });
2016-03-16 16:35:41 +08:00
this.props.onChange(...this.prepareParamsArguments({
...this.state,
pagination: nextPagination,
}));
2016-04-13 17:23:14 +08:00
}
renderPagination() {
// 强制不需要分页
2015-07-31 10:40:23 +08:00
if (!this.hasPagination()) {
return null;
2015-07-10 17:47:53 +08:00
}
2016-04-12 18:19:27 +08:00
let size = 'default';
if (this.state.pagination.size) {
size = this.state.pagination.size;
} else if (this.props.size === 'middle' || this.props.size === 'small') {
size = 'small';
}
let total = this.state.pagination.total || this.getLocalData().length;
2015-12-09 21:49:32 +08:00
return (total > 0) ?
2015-12-24 10:12:31 +08:00
<Pagination {...this.state.pagination}
2016-04-12 18:19:27 +08:00
className={`${this.props.prefixCls}-pagination`}
onChange={this.handlePageChange}
total={total}
2016-04-12 18:19:27 +08:00
size={size}
onShowSizeChange={this.handleShowSizeChange}
/> : null;
2016-04-13 17:23:14 +08:00
}
2015-07-31 11:28:49 +08:00
2015-07-31 10:40:23 +08:00
prepareParamsArguments(state) {
// 准备筛选、排序、分页的参数
const pagination = state.pagination;
const filters = state.filters;
const sorter = {};
2016-03-29 12:13:25 +08:00
if (state.sortColumn && state.sortOrder) {
sorter.column = state.sortColumn;
2015-07-31 10:40:23 +08:00
sorter.order = state.sortOrder;
2016-03-29 12:13:25 +08:00
sorter.field = state.sortColumn.dataIndex;
sorter.columnKey = this.getColumnKey(state.sortColumn);
2015-07-15 14:10:01 +08:00
}
return [pagination, filters, sorter];
2016-04-13 17:23:14 +08:00
}
2015-07-31 10:40:23 +08:00
2015-07-31 11:28:49 +08:00
findColumn(myKey) {
return this.props.columns.filter(c => this.getColumnKey(c) === myKey)[0];
2016-04-13 17:23:14 +08:00
}
2015-07-31 10:40:23 +08:00
getCurrentPageData() {
let data = this.getLocalData();
let current;
let pageSize;
2015-07-31 10:40:23 +08:00
let state = this.state;
// 如果没有分页的话,默认全部展示
if (!this.hasPagination()) {
pageSize = Number.MAX_VALUE;
current = 1;
} else {
2015-07-31 10:40:23 +08:00
pageSize = state.pagination.pageSize;
current = state.pagination.current;
}
// 分页
// ---
2016-03-02 21:56:48 +08:00
// 当数据量少于等于每页数量时,直接设置数据
2015-07-31 10:40:23 +08:00
// 否则进行读取分页数据
if (data.length > pageSize || pageSize === Number.MAX_VALUE) {
data = data.filter((item, i) => {
return i >= (current - 1) * pageSize && i < current * pageSize;
2015-07-31 10:40:23 +08:00
});
}
return data;
2016-04-13 17:23:14 +08:00
}
2015-07-31 10:40:23 +08:00
getFlatCurrentPageData() {
return flatArray(this.getCurrentPageData());
2016-04-13 17:23:14 +08:00
}
getLocalData() {
2016-03-28 20:52:54 +08:00
const state = this.state;
let data = this.props.dataSource || [];
2016-04-09 16:30:53 +08:00
// 优化本地排序
2016-03-28 20:52:54 +08:00
data = data.slice(0);
for (let i = 0; i < data.length; i++) {
data[i].indexForSort = i;
2016-04-09 16:30:53 +08:00
}
const sorterFn = this.getSorterFn();
if (sorterFn) {
data = data.sort(sorterFn);
2015-07-31 10:40:23 +08:00
}
// 筛选
if (state.filters) {
Object.keys(state.filters).forEach((columnKey) => {
let col = this.findColumn(columnKey);
if (!col) {
return;
}
2015-07-31 10:40:23 +08:00
let values = state.filters[columnKey] || [];
if (values.length === 0) {
return;
}
2015-12-09 21:49:32 +08:00
data = col.onFilter ? data.filter(record => {
return values.some(v => col.onFilter(v, record));
}) : data;
2015-07-14 17:58:00 +08:00
});
2015-07-12 17:10:06 +08:00
}
2015-07-31 10:40:23 +08:00
return data;
2016-04-13 17:23:14 +08:00
}
2015-07-31 10:40:23 +08:00
render() {
const { style, className, ...restProps } = this.props;
2016-03-02 14:47:42 +08:00
const data = this.getCurrentPageData();
2015-07-31 10:40:23 +08:00
let columns = this.renderRowSelection();
2016-03-02 14:47:42 +08:00
const expandIconAsCell = this.props.expandedRowRender && this.props.expandIconAsCell !== false;
2016-03-03 17:43:38 +08:00
const locale = this.getLocale();
2015-11-26 14:44:28 +08:00
2016-03-02 14:47:42 +08:00
const classString = classNames({
2015-11-26 14:44:28 +08:00
[`ant-table-${this.props.size}`]: true,
'ant-table-bordered': this.props.bordered,
});
2015-07-31 10:40:23 +08:00
columns = this.renderColumnsDropdown(columns);
2015-08-28 15:22:09 +08:00
columns = columns.map((column, i) => {
2016-03-25 18:16:48 +08:00
const newColumn = { ...column };
2016-04-09 15:30:24 +08:00
newColumn.key = this.getColumnKey(newColumn, i);
return newColumn;
2015-08-28 15:22:09 +08:00
});
2015-08-28 17:20:02 +08:00
let emptyText;
let emptyClass = '';
2015-08-28 17:20:02 +08:00
if (!data || data.length === 0) {
emptyText = (
<div className="ant-table-placeholder">
2016-05-21 18:53:49 +08:00
{locale.emptyText}
</div>
);
emptyClass = 'ant-table-empty';
2015-08-28 17:20:02 +08:00
}
2015-10-31 02:12:26 +08:00
let table = (
<div>
<RcTable {...restProps}
data={data}
columns={columns}
className={classString}
2016-03-02 16:01:36 +08:00
expandIconColumnIndex={(columns[0] && columns[0].key === 'selection-column') ? 1 : 0}
expandIconAsCell={expandIconAsCell}
/>
{emptyText}
</div>
);
2016-05-09 16:11:54 +08:00
// if there is no pagination or no data,
// the height of spin should decrease by half of pagination
const paginationPatchClass = (this.hasPagination() && data && data.length !== 0)
? 'ant-table-with-pagination'
: 'ant-table-without-pagination';
const spinClassName = this.props.loading ? `${paginationPatchClass} ant-table-spin-holder` : '';
table = <Spin className={spinClassName} spinning={this.props.loading}>{table}</Spin>;
return (
<div className={`${emptyClass} ${className} clearfix`} style={style}>
2016-05-27 21:06:45 +08:00
{table}
{this.renderPagination()}
</div>
);
2015-07-09 11:41:36 +08:00
}
2016-04-13 17:23:14 +08:00
}