ant-design/components/table/index.jsx

563 lines
17 KiB
React
Raw Normal View History

2015-07-09 11:41:36 +08:00
import React from 'react';
import Table 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';
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
};
2015-09-01 16:18:46 +08:00
let AntTable = 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
// 减少状态
2015-07-12 17:10:06 +08:00
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,
2015-07-31 10:40:23 +08:00
pagination: this.hasPagination() ? objectAssign({
2015-08-27 23:53:42 +08:00
pageSize: 10,
current: 1
2015-07-31 10:40:23 +08:00
}, 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-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,
},
getDefaultSelection() {
let selectedRowKeys = [];
if (this.props.rowSelection && this.props.rowSelection.getCheckboxProps) {
let data = this.getCurrentPageData();
data.filter((item) => {
if (this.props.rowSelection.getCheckboxProps) {
return this.props.rowSelection.getCheckboxProps(item).defaultChecked;
}
return true;
}).map((record, rowIndex) => {
selectedRowKeys.push(this.getRecordKey(record, rowIndex));
});
}
return selectedRowKeys;
},
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({
pagination: objectAssign({}, this.state.pagination, nextProps.pagination)
});
2015-07-28 14:02:18 +08:00
}
// 外界只有 dataSource 的变化会触发新请求
if ('dataSource' in nextProps &&
nextProps.dataSource !== this.props.dataSource) {
let selectedRowKeys = this.state.selectedRowKeys;
// 把不在当前页的选中项去掉
2015-12-09 21:49:32 +08:00
let currentPageRowKeys =
this.getCurrentPageData(nextProps.dataSource).map(
(record, i) => this.getRecordKey(record, i)
);
selectedRowKeys = selectedRowKeys.filter((key) => {
return currentPageRowKeys.indexOf(key) >= 0;
});
this.setState({
selectionDirty: false,
selectedRowKeys,
2015-11-03 18:16:16 +08:00
});
}
2015-07-28 15:20:15 +08:00
},
2015-07-31 11:28:49 +08:00
hasPagination(pagination) {
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') {
2015-07-31 10:40:23 +08:00
sorter = function () {
let result = column.sorter.apply(this, arguments);
if (sortOrder === 'ascend') {
return result;
} else if (sortOrder === 'descend') {
return -result;
}
};
2015-07-13 16:22:02 +08:00
}
2015-10-19 11:29:36 +08:00
const newState = {
sortOrder,
sortColumn,
sorter
};
2015-12-09 21:49:32 +08:00
this.setState(newState);
2015-10-19 11:29:36 +08:00
this.props.onChange.apply(this, this.prepareParamsArguments(objectAssign({}, this.state, newState)));
2015-07-13 16:22:02 +08:00
},
2015-07-31 11:28:49 +08:00
2015-07-31 10:40:23 +08:00
handleFilter(column, filters) {
filters = objectAssign({}, this.state.filters, {
[this.getColumnKey(column)]: filters
});
// 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 = {
2015-07-31 10:40:23 +08:00
selectedRowKeys: [],
selectionDirty: false,
2015-10-19 11:29:36 +08:00
filters
};
2015-12-09 21:49:32 +08:00
this.setState(newState);
2015-10-19 11:29:36 +08:00
this.props.onChange.apply(this, this.prepareParamsArguments(objectAssign({}, 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) {
2015-07-16 14:41:28 +08:00
let checked = e.target.checked;
let defaultSelection = [];
if (!this.state.selectionDirty) {
defaultSelection = 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({
selectedRowKeys: selectedRowKeys,
selectionDirty: true
});
if (this.props.rowSelection.onSelect) {
let data = this.getCurrentPageData();
let selectedRows = data.filter((row, i) => {
return selectedRowKeys.indexOf(this.getRecordKey(row, i)) >= 0;
});
this.props.rowSelection.onSelect(record, checked, selectedRows);
}
},
handleRadioSelect: function (record, rowIndex, e) {
let checked = e.target.checked;
let defaultSelection = [];
if (!this.state.selectionDirty) {
defaultSelection = this.getDefaultSelection();
}
let selectedRowKeys = this.state.selectedRowKeys.concat(defaultSelection);
let key = this.getRecordKey(record, rowIndex);
selectedRowKeys = [key];
this.setState({
selectedRowKeys: selectedRowKeys,
radioIndex: record.key,
selectionDirty: true
});
if (this.props.rowSelection.onSelect) {
2015-07-31 10:40:23 +08:00
let data = this.getCurrentPageData();
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) {
let checked = e.target.checked;
2015-07-31 10:40:23 +08:00
let data = this.getCurrentPageData();
let selectedRowKeys = checked ? data.filter((item) => {
if (this.props.rowSelection.getCheckboxProps) {
return !this.props.rowSelection.getCheckboxProps(item).disabled;
}
return true;
}).map((item, i) => {
2015-07-31 10:40:23 +08:00
return this.getRecordKey(item, i);
}) : [];
2015-07-15 20:22:56 +08:00
this.setState({
selectedRowKeys: selectedRowKeys,
selectionDirty: true
});
if (this.props.rowSelection.onSelectAll) {
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
});
this.props.rowSelection.onSelectAll(checked, selectedRows);
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;
}
2015-10-19 11:29:36 +08:00
const newState = {
2015-07-31 10:40:23 +08:00
// 防止内存泄漏,只维持当页
selectedRowKeys: [],
selectionDirty: false,
2015-10-19 11:29:36 +08:00
pagination
};
2015-12-09 21:49:32 +08:00
this.setState(newState);
2015-10-19 11:29:36 +08:00
this.props.onChange.apply(this, this.prepareParamsArguments(objectAssign({}, this.state, newState)));
},
2015-07-31 11:28:49 +08:00
onRadioChange: function (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 === record.key;
} else {
checked = (this.state.radioIndex === record.key ||
this.getDefaultSelection().indexOf(rowIndex) >= 0);
}
2015-10-22 17:27:53 +08:00
return <Radio disabled={props.disabled} onChange={this.handleRadioSelect.bind(this, record, rowIndex)}
value={record.key} 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);
}
2015-10-22 17:27:53 +08:00
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.getCurrentPageData().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)
: data.every((item, i) =>
this.props.rowSelection.getCheckboxProps &&
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 {
let checkboxAll = <Checkbox checked={checked} onChange={this.handleSelectAllRow}/>;
selectionColumn = {
key: 'selection-column',
title: checkboxAll,
render: this.renderSelectionCheckBox,
className: 'ant-table-selection-column'
};
}
if (columns[0] &&
2015-07-31 10:40:23 +08:00
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) {
2015-11-24 15:58:50 +08:00
let locale = objectAssign({}, defaultLocale, this.props.locale);
2015-08-12 11:50:07 +08:00
return columns.map((column, i) => {
2015-08-12 11:26:36 +08:00
column = objectAssign({}, column);
2015-08-12 12:47:04 +08:00
let key = this.getColumnKey(column, i);
2015-08-19 11:41:44 +08:00
let filterDropdown, sortButton;
if (column.filters && column.filters.length > 0) {
2015-07-31 10:40:23 +08:00
let colFilters = this.state.filters[key] || [];
2015-08-17 18:14:39 +08:00
filterDropdown =
2015-11-24 15:58:50 +08:00
<FilterDropdown locale={locale} column={column}
2015-08-17 18:14:39 +08:00
selectedKeys={colFilters}
2015-10-22 17:27:53 +08:00
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
2015-07-13 16:22:02 +08:00
sortButton = <div className="ant-table-column-sorter">
<span className={'ant-table-column-sorter-up ' +
((isSortColumn && this.state.sortOrder === 'ascend') ? 'on' : 'off')}
2015-11-26 14:15:09 +08:00
title="↑"
2015-07-31 10:40:23 +08:00
onClick={this.toggleSortOrder.bind(this, 'ascend', column)}>
2015-10-22 17:27:53 +08:00
<Icon type="caret-up"/>
2015-07-13 16:22:02 +08:00
</span>
<span className={'ant-table-column-sorter-down ' +
((isSortColumn && this.state.sortOrder === 'descend') ? 'on' : 'off')}
2015-11-26 14:15:09 +08:00
title="↓"
2015-07-31 10:40:23 +08:00
onClick={this.toggleSortOrder.bind(this, 'descend', column)}>
2015-10-22 17:27:53 +08:00
<Icon type="caret-down"/>
2015-07-13 16:22:02 +08:00
</span>
</div>;
}
2015-08-28 15:22:09 +08:00
column.title = <div>
{column.title}
{sortButton}
{filterDropdown}
</div>;
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) {
let pagination = objectAssign(this.state.pagination, {
pageSize: pageSize
});
2015-12-09 21:49:32 +08:00
this.setState({ pagination });
},
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-12-09 21:49:32 +08:00
let total = this.state.pagination.total || this.getLocalData().length;
return (total > 0) ?
<Pagination className={classString}
onChange={this.handlePageChange}
total={total}
pageSize={10}
onShowSizeChange={this.handleShowSizeChange}
{...this.state.pagination} /> : 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) {
2015-07-31 10:40:23 +08:00
return this.props.columns.filter((c) => {
return this.getColumnKey(c) === myKey;
})[0];
},
2015-12-09 21:49:32 +08:00
getCurrentPageData(dataSource) {
let data = this.getLocalData(dataSource);
2015-07-31 10:40:23 +08:00
let current, pageSize;
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;
}
// 分页
// ---
// 当数据量少于每页数量时,直接设置数据
// 否则进行读取分页数据
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;
},
getLocalData(dataSource) {
2015-07-31 10:40:23 +08:00
let state = this.state;
2015-12-10 15:16:33 +08:00
let data = dataSource || this.props.dataSource;
2015-07-31 10:40:23 +08:00
// 排序
if (state.sortOrder && state.sorter) {
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() {
let data = this.getCurrentPageData();
let columns = this.renderRowSelection();
2015-09-10 11:04:31 +08:00
let expandIconAsCell = this.props.expandedRowRender && this.props.expandIconAsCell !== false;
2015-12-16 18:14:22 +08:00
let locale = objectAssign({}, defaultLocale, this.props.locale);
2015-11-26 14:44:28 +08:00
let classString = classNames({
[`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) => {
2015-12-07 16:20:52 +08:00
column.key = column.key || column.dataIndex || i;
2015-08-28 15:22:09 +08:00
return column;
});
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">
2015-12-16 18:14:22 +08:00
<Icon type="frown"/>{locale.emptyText}
2015-08-28 17:20:02 +08:00
</div>;
emptyClass = ' ant-table-empty';
2015-08-28 17:20:02 +08:00
}
2015-10-31 02:12:26 +08:00
2015-11-05 20:02:49 +08:00
let table = <div>
<Table {...this.props}
data={data}
columns={columns}
className={classString}
expandIconAsCell={expandIconAsCell} />
2015-11-05 20:02:49 +08:00
{emptyText}
</div>;
2015-12-09 21:49:32 +08:00
if (this.props.loading) {
2015-10-27 10:34:05 +08:00
// if there is no pagination or no data, the height of spin should decrease by half of pagination
let paginationPatchClass = (this.hasPagination() && data && data.length !== 0)
? 'ant-table-with-pagination'
: 'ant-table-without-pagination';
2015-10-31 02:12:26 +08:00
let 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
}
});
2015-08-05 01:44:21 +08:00
export default AntTable;