ant-design/components/table/index.jsx

635 lines
19 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-07-14 20:04:14 +08:00
import objectAssign from 'object-assign';
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() {
}
2015-11-24 15:58:50 +08:00
const defaultLocale = {
filterTitle: '筛选',
filterConfirm: '确定',
2015-12-16 18:14:22 +08:00
filterReset: '重置',
emptyText: '暂无数据',
2015-11-24 15:58:50 +08:00
};
const defaultPagination = {
pageSize: 10,
current: 1,
onChange: noop,
onShowSizeChange: noop,
};
let Table = React.createClass({
2015-07-31 10:40:23 +08:00
getInitialState() {
2015-07-10 17:47:53 +08:00
return {
2015-07-31 10:40:23 +08:00
// 减少状态
selectedRowKeys: this.props.selectedRowKeys || [],
2015-07-31 10:40:23 +08:00
filters: {},
selectionDirty: false,
2015-07-31 10:40:23 +08:00
sortColumn: '',
sortOrder: '',
sorter: null,
radioIndex: null,
pagination: this.hasPagination() ?
2016-02-25 15:40:35 +08:00
objectAssign({
size: this.props.size,
}, defaultPagination, this.props.pagination) :
{},
2015-07-10 17:47:53 +08:00
};
},
2015-07-31 10:40:23 +08:00
2015-07-09 11:41:36 +08:00
getDefaultProps() {
return {
2015-12-10 15:25:48 +08:00
dataSource: [],
2015-07-09 14:51:48 +08:00
prefixCls: 'ant-table',
2015-07-10 17:47:53 +08:00
useFixedHeader: false,
2015-07-10 17:50:48 +08:00
rowSelection: null,
2015-10-22 17:27:53 +08:00
className: '',
2015-11-26 14:44:28 +08:00
size: 'large',
2015-11-03 18:16:16 +08:00
loading: false,
2015-10-19 11:29:36 +08:00
bordered: false,
2015-12-29 14:36:38 +08:00
indentSize: 20,
2015-11-24 15:58:50 +08:00
onChange: noop,
locale: {}
2015-07-09 11:41:36 +08:00
};
},
2015-07-31 10:40:23 +08:00
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-03-03 17:43:38 +08:00
contextTypes: {
2016-03-05 16:39:27 +08:00
antLocale: React.PropTypes.object,
2016-03-03 17:43:38 +08:00
},
getDefaultSelection() {
if (!this.props.rowSelection || !this.props.rowSelection.getCheckboxProps) {
return [];
}
return this.getFlatCurrentPageData()
.filter(item => this.props.rowSelection.getCheckboxProps(item).defaultChecked)
.map((record, rowIndex) => this.getRecordKey(record, rowIndex));
},
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
}
return objectAssign({}, defaultLocale, locale, this.props.locale);
},
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) {
this.setState({
2016-03-08 20:29:18 +08:00
pagination: objectAssign({}, defaultPagination, this.state.pagination, nextProps.pagination)
});
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
});
}
if (nextProps.rowSelection &&
'selectedRowKeys' in nextProps.rowSelection) {
this.setState({
selectedRowKeys: nextProps.rowSelection.selectedRowKeys || [],
});
}
},
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
}
2015-07-28 15:20:15 +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;
2015-07-28 14:02:18 +08:00
},
2015-07-31 11:28:49 +08:00
2015-07-13 16:22:02 +08:00
toggleSortOrder(order, column) {
let sortColumn = this.state.sortColumn;
let sortOrder = this.state.sortOrder;
2015-07-16 18:26:17 +08:00
let sorter;
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-12-09 21:49:32 +08:00
if (typeof column.sorter === 'function') {
sorter = (a, b) => {
let result = column.sorter(a, b);
if (result !== 0) {
return (sortOrder === 'descend') ? -result : result;
}
return a.index - b.index;
};
2015-07-13 16:22:02 +08:00
}
2015-10-19 11:29:36 +08:00
const newState = {
sortOrder,
sortColumn,
sorter,
2015-10-19 11:29:36 +08:00
};
2015-12-09 21:49:32 +08:00
this.setState(newState);
2016-03-16 16:35:41 +08:00
this.props.onChange(...this.prepareParamsArguments({ ...this.state, ...newState }));
2015-07-13 16:22:02 +08:00
},
2015-07-31 11:28:49 +08:00
handleFilter(column, nextFilters) {
const filters = objectAssign({}, this.state.filters, {
[this.getColumnKey(column)]: nextFilters
2015-07-31 10:40:23 +08:00
});
// Remove filters not in current columns
const currentColumnKeys = this.props.columns.map(c => this.getColumnKey(c));
Object.keys(filters).forEach((columnKey) => {
if (currentColumnKeys.indexOf(columnKey) < 0) {
delete filters[columnKey];
}
});
2015-10-19 11:29:36 +08:00
const newState = {
selectionDirty: false,
2015-10-19 11:29:36 +08:00
filters
};
2015-12-09 21:49:32 +08:00
this.setState(newState);
this.setSelectedRowKeys([]);
2016-03-16 16:35:41 +08:00
this.props.onChange(...this.prepareParamsArguments({ ...this.state, ...newState }));
2015-07-13 18:42:08 +08:00
},
2015-07-31 11:28:49 +08:00
2015-07-31 10:40:23 +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 {
2015-07-31 10:40:23 +08:00
selectedRowKeys = selectedRowKeys.filter((i) => {
return 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);
}
},
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({
radioIndex: key,
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);
}
},
2015-07-31 11:28:49 +08:00
2015-07-16 14:41:28 +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.props.rowSelection.getCheckboxProps ||
!this.props.rowSelection.getCheckboxProps(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
}
2015-07-13 17:40:17 +08:00
},
2015-07-31 11:28:49 +08:00
handlePageChange(current) {
2015-07-31 10:40:23 +08:00
let pagination = objectAssign({}, 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,
2015-10-19 11:29:36 +08:00
pagination
};
2015-12-09 21:49:32 +08:00
this.setState(newState);
2016-03-16 16:35:41 +08:00
this.props.onChange(...this.prepareParamsArguments({ ...this.state, ...newState }));
},
2015-07-31 11:28:49 +08:00
onRadioChange(ev) {
this.setState({
radioIndex: ev.target.value
2015-07-31 10:40:23 +08:00
});
},
2015-07-31 11:28:49 +08:00
renderSelectionRadio(value, record, index) {
let rowIndex = this.getRecordKey(record, index); // 从 1 开始
let props = {};
if (this.props.rowSelection.getCheckboxProps) {
props = this.props.rowSelection.getCheckboxProps.call(this, record);
}
let checked;
if (this.state.selectionDirty) {
checked = this.state.radioIndex === rowIndex;
} else {
checked = (this.state.radioIndex === rowIndex ||
this.getDefaultSelection().indexOf(rowIndex) >= 0);
}
return (
<Radio disabled={props.disabled}
onChange={this.handleRadioSelect.bind(this, record, rowIndex)}
value={rowIndex} checked={checked} />
);
},
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);
}
let props = {};
if (this.props.rowSelection.getCheckboxProps) {
props = this.props.rowSelection.getCheckboxProps.call(this, record);
}
return (
<Checkbox checked={checked} disabled={props.disabled}
onChange={this.handleSelect.bind(this, record, rowIndex)} />
);
2015-07-31 10:40:23 +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;
},
2015-07-31 11:28:49 +08:00
renderRowSelection() {
2015-07-31 10:40:23 +08:00
let columns = this.props.columns.concat();
if (this.props.rowSelection) {
let data = this.getFlatCurrentPageData().filter((item) => {
if (this.props.rowSelection.getCheckboxProps) {
return !this.props.rowSelection.getCheckboxProps(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) =>
2015-11-16 15:57:36 +08:00
this.props.rowSelection.getCheckboxProps &&
2016-01-15 17:43:37 +08:00
this.props.rowSelection.getCheckboxProps(item).defaultChecked)
);
2015-07-31 10:40:23 +08:00
}
let selectionColumn;
if (this.props.rowSelection.type === 'radio') {
selectionColumn = {
key: 'selection-column',
render: this.renderSelectionRadio,
className: 'ant-table-selection-column'
};
} else {
const checkboxAllDisabled = data.every(item =>
this.props.rowSelection.getCheckboxProps &&
this.props.rowSelection.getCheckboxProps(item).disabled);
const checkboxAll = (
<Checkbox checked={checked}
disabled={checkboxAllDisabled}
onChange={this.handleSelectAllRow} />
);
selectionColumn = {
key: 'selection-column',
title: checkboxAll,
render: this.renderSelectionCheckBox,
className: 'ant-table-selection-column'
};
}
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;
},
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;
},
isSortColumn(column) {
if (!column || !this.state.sortColumn) {
return false;
}
let colKey = this.getColumnKey(column);
let isSortColumn = (this.getColumnKey(this.state.sortColumn) === colKey);
return isSortColumn;
2015-07-31 10:40:23 +08:00
},
renderColumnsDropdown(columns) {
2016-03-03 17:43:38 +08:00
const locale = this.getLocale();
return columns.map((originColumn, i) => {
let column = objectAssign({}, 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 || '';
2015-08-12 12:47:04 +08:00
if (this.state.sortOrder) {
column.className += ' ant-table-column-sort';
}
2015-08-12 11:50:07 +08:00
}
2015-11-24 15:58:50 +08:00
const isAscend = isSortColumn && this.state.sortOrder === 'ascend';
const isDescend = isSortColumn && this.state.sortOrder === 'descend';
sortButton = (
<div className="ant-table-column-sorter">
<span className={`ant-table-column-sorter-up ${isAscend ? 'on' : 'off'}`}
title="↑"
onClick={this.toggleSortOrder.bind(this, 'ascend', column)}>
<Icon type="caret-up" />
</span>
<span className={`ant-table-column-sorter-down ${isDescend ? 'on' : 'off'}`}
title="↓"
onClick={this.toggleSortOrder.bind(this, '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
});
},
2015-07-31 11:28:49 +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,
}));
},
renderPagination() {
// 强制不需要分页
2015-07-31 10:40:23 +08:00
if (!this.hasPagination()) {
return null;
2015-07-10 17:47:53 +08:00
}
2015-11-26 14:44:28 +08:00
let classString = classNames({
'ant-table-pagination': true,
mini: this.props.size === 'middle' || this.props.size === 'small',
2015-11-26 14:44:28 +08:00
});
2015-12-09 21:49:32 +08:00
let total = this.state.pagination.total || this.getLocalData().length;
2015-12-28 15:42:16 +08:00
const pageSize = this.state.pagination.pageSize;
2015-12-09 21:49:32 +08:00
return (total > 0) ?
2015-12-24 10:12:31 +08:00
<Pagination {...this.state.pagination}
className={classString}
onChange={this.handlePageChange}
total={total}
pageSize={pageSize}
onShowSizeChange={this.handleShowSizeChange} /> : null;
2015-07-10 17:47:53 +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 = {};
2015-07-31 10:40:23 +08:00
if (state.sortColumn &&
state.sortOrder &&
state.sortColumn.dataIndex) {
sorter.field = state.sortColumn.dataIndex;
sorter.order = state.sortOrder;
2015-07-15 14:10:01 +08:00
}
return [pagination, filters, sorter];
},
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];
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;
},
getFlatCurrentPageData() {
return flatArray(this.getCurrentPageData());
},
getLocalData() {
2015-07-31 10:40:23 +08:00
let state = this.state;
let data = this.props.dataSource || [];
2015-07-31 10:40:23 +08:00
// 排序
if (state.sortOrder && state.sorter) {
data = data.slice(0);
for (let i = 0; i < data.length; i++) {
data[i].index = i;
}
2015-07-31 10:40:23 +08:00
data = data.sort(state.sorter);
}
// 筛选
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;
2015-07-12 17:10:06 +08:00
},
2015-07-31 10:40:23 +08:00
render() {
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,
[this.props.className]: !!this.props.className,
});
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) => {
const newColumn = objectAssign({}, column);
newColumn.key = newColumn.key || newColumn.dataIndex || 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">
<Icon type="frown" />{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 {...this.props}
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>
);
2015-12-09 21:49:32 +08:00
if (this.props.loading) {
// if there is no pagination or no data,
// the height of spin should decrease by half of pagination
2016-03-02 14:47:42 +08:00
const paginationPatchClass = (this.hasPagination() && data && data.length !== 0)
2015-10-27 10:34:05 +08:00
? 'ant-table-with-pagination'
: 'ant-table-without-pagination';
2016-03-02 14:47:42 +08:00
const spinClassName = `${paginationPatchClass} ant-table-spin-holder`;
table = <Spin className={spinClassName}>{table}</Spin>;
2015-10-31 02:12:26 +08:00
}
return (
<div className={`clearfix${emptyClass}`}>
{table}
{this.renderPagination()}
</div>
);
2015-07-09 11:41:36 +08:00
}
});
export default Table;