You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

470 lines
13 KiB

10 years ago
import React from 'react';
import jQuery from 'jquery';
10 years ago
import Table from 'rc-table';
import Dropdown from '../dropdown';
import Checkbox from '../checkbox';
import FilterMenu from './filterMenu';
import Pagination from '../pagination';
import objectAssign from 'object-assign';
9 years ago
import equals from 'is-equal-shallow';
10 years ago
9 years ago
function noop() {
}
9 years ago
function defaultResolve(data) {
return data || [];
}
class DataSource {
constructor(config) {
this.url = config.url || '';
this.resolve = config.resolve || defaultResolve;
this.getParams = config.getParams || noop;
this.getPagination = config.getPagination || noop;
this.headers = config.headers || {};
this.fetch = noop;
}
}
var AntTable = React.createClass({
9 years ago
getInitialState() {
10 years ago
return {
9 years ago
// 减少状态
selectedRowKeys: [],
9 years ago
// only for remote
data: [],
filters: {},
loading: !this.isLocalDataSource(),
sortColumn: '',
sortOrder: '',
sorter: null,
pagination: this.hasPagination() ? objectAssign({
pageSize: 10
}, this.props.pagination) : {}
10 years ago
};
},
9 years ago
10 years ago
getDefaultProps() {
return {
prefixCls: 'ant-table',
10 years ago
useFixedHeader: false,
10 years ago
rowSelection: null,
size: 'normal'
10 years ago
};
},
9 years ago
propTypes: {
dataSource: React.PropTypes.instanceOf(DataSource)
},
9 years ago
componentWillReceiveProps(nextProps) {
9 years ago
if (('pagination' in nextProps) && nextProps.pagination !== false) {
this.setState({
9 years ago
pagination: objectAssign({}, this.state.pagination, nextProps.pagination)
});
}
9 years ago
if (!this.isLocalDataSource()) {
if (!equals(nextProps, this.props)) {
this.setState({
selectedRowKeys: [],
loading: true
}, this.fetch);
}
}
if (nextProps.columns !== this.props.columns) {
this.setState({
9 years ago
filters: {}
});
}
},
9 years ago
hasPagination(pagination) {
9 years ago
if (pagination === undefined) {
pagination = this.props.pagination;
}
9 years ago
return pagination !== false;
},
9 years ago
isLocalDataSource() {
9 years ago
return Array.isArray(this.props.dataSource);
},
9 years ago
getRemoteDataSource() {
let dataSource = this.props.dataSource;
dataSource.fetch = this.fetch;
return dataSource;
},
9 years ago
toggleSortOrder(order, column) {
let sortColumn = this.state.sortColumn;
let sortOrder = this.state.sortOrder;
9 years ago
let sorter;
// 同时允许一列进行排序,否则会导致排序顺序的逻辑问题
if (sortColumn) {
sortColumn.className = '';
}
if (sortColumn !== column) { // 当前列未排序
sortOrder = order;
sortColumn = column;
sortColumn.className = 'ant-table-column-sort';
} else { // 当前列已排序
if (sortOrder === order) { // 切换为未排序状态
sortOrder = '';
sortColumn = null;
} else { // 切换为排序状态
sortOrder = order;
sortColumn.className = 'ant-table-column-sort';
}
}
9 years ago
if (this.isLocalDataSource()) {
sorter = function () {
let result = column.sorter.apply(this, arguments);
if (sortOrder === 'ascend') {
return result;
} else if (sortOrder === 'descend') {
return -result;
}
};
}
9 years ago
this.fetch({
10 years ago
sortOrder: sortOrder,
9 years ago
sortColumn: sortColumn,
sorter: sorter
9 years ago
});
},
9 years ago
9 years ago
handleFilter(column, filters) {
filters = objectAssign({}, this.state.filters, {
[this.getColumnKey(column)]: filters
});
this.fetch({
selectedRowKeys: [],
filters: filters
});
10 years ago
},
9 years ago
9 years ago
handleSelect(record, rowIndex, e) {
let checked = e.target.checked;
9 years ago
let selectedRowKeys = this.state.selectedRowKeys.concat();
let key = this.getRecordKey(record, rowIndex);
if (checked) {
9 years ago
selectedRowKeys.push(this.getRecordKey(record, rowIndex));
} else {
9 years ago
selectedRowKeys = selectedRowKeys.filter((i) => {
return key !== i;
});
}
this.setState({
9 years ago
selectedRowKeys: selectedRowKeys
});
if (this.props.rowSelection.onSelect) {
9 years ago
let data = this.getCurrentPageData();
let selectedRows = data.filter((row, i) => {
return selectedRowKeys.indexOf(this.getRecordKey(row, i)) >= 0;
10 years ago
});
9 years ago
this.props.rowSelection.onSelect(record, checked, selectedRows);
}
},
9 years ago
handleSelectAllRow(e) {
let checked = e.target.checked;
9 years ago
let data = this.getCurrentPageData();
let selectedRowKeys = checked ? data.map((item, i) => {
return this.getRecordKey(item, i);
}) : [];
10 years ago
this.setState({
selectedRowKeys: selectedRowKeys
});
if (this.props.rowSelection.onSelectAll) {
9 years ago
let selectedRows = data.filter((row, i) => {
return selectedRowKeys.indexOf(this.getRecordKey(row, i)) >= 0;
10 years ago
});
this.props.rowSelection.onSelectAll(checked, selectedRows);
10 years ago
}
},
9 years ago
handlePageChange(current) {
9 years ago
let pagination = objectAssign({}, this.state.pagination);
if (current) {
pagination.current = current;
} else {
pagination.current = pagination.current || 1;
}
9 years ago
this.fetch({
// 防止内存泄漏,只维持当页
selectedRowKeys: [],
10 years ago
pagination: pagination
9 years ago
});
},
9 years ago
renderSelectionCheckBox(value, record, index) {
9 years ago
let rowIndex = this.getRecordKey(record, index); // 从 1 开始
let checked = this.state.selectedRowKeys.indexOf(rowIndex) >= 0;
9 years ago
return <Checkbox checked={checked} onChange={this.handleSelect.bind(this, record, rowIndex)}/>;
},
9 years ago
getRecordKey(record, index) {
9 years ago
return record.key || index;
},
9 years ago
renderRowSelection() {
9 years ago
let columns = this.props.columns.concat();
if (this.props.rowSelection) {
9 years ago
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}/>;
let selectionColumn = {
key: 'selection-column',
title: checkboxAll,
width: 60,
render: this.renderSelectionCheckBox,
className: 'ant-table-selection-column'
};
if (columns[0] &&
9 years ago
columns[0].key === 'selection-column') {
columns[0] = selectionColumn;
} else {
columns.unshift(selectionColumn);
}
}
return columns;
},
9 years ago
9 years ago
getCurrentPageData() {
9 years ago
return this.isLocalDataSource() ? this.getLocalDataPaging() : this.state.data;
},
9 years ago
getColumnKey(column) {
9 years ago
return column.key || column.dataIndex;
},
renderColumnsDropdown(columns) {
return columns.map((column) => {
let key = this.getColumnKey(column);
let filterDropdown, menus, sortButton;
if (column.filters && column.filters.length > 0) {
9 years ago
let colFilters = this.state.filters[key] || [];
menus = <FilterMenu column={column}
selectedFilters={colFilters}
confirmFilter={this.handleFilter}/>;
10 years ago
let dropdownSelectedClass = '';
9 years ago
if (colFilters.length > 0) {
10 years ago
dropdownSelectedClass = 'ant-table-filter-selected';
}
filterDropdown = <Dropdown trigger="click"
9 years ago
closeOnSelect={false}
overlay={menus}>
10 years ago
<i title="筛选" className={'anticon anticon-bars ' + dropdownSelectedClass}></i>
</Dropdown>;
}
if (column.sorter) {
let isSortColumn = (this.state.sortColumn === column);
sortButton = <div className="ant-table-column-sorter">
<span className={'ant-table-column-sorter-up ' +
((isSortColumn && this.state.sortOrder === 'ascend') ? 'on' : 'off')}
9 years ago
title="升序排序"
onClick={this.toggleSortOrder.bind(this, 'ascend', column)}>
<i className="anticon anticon-caret-up"></i>
</span>
<span className={'ant-table-column-sorter-down ' +
((isSortColumn && this.state.sortOrder === 'descend') ? 'on' : 'off')}
9 years ago
title="降序排序"
onClick={this.toggleSortOrder.bind(this, 'descend', column)}>
<i className="anticon anticon-caret-down"></i>
</span>
</div>;
}
if (!column.originalTitle) {
column.originalTitle = column.title;
}
column.title = [
column.originalTitle,
sortButton,
filterDropdown
];
return column;
});
},
9 years ago
renderPagination() {
// 强制不需要分页
9 years ago
if (!this.hasPagination()) {
return null;
10 years ago
}
let classString = 'ant-table-pagination';
if (this.props.size === 'small') {
classString += ' mini';
}
9 years ago
let total;
if (this.isLocalDataSource()) {
total = this.getLocalData().length;
}
return <Pagination className={classString}
9 years ago
onChange={this.handlePageChange}
total={total}
pageSize={10}
{...this.state.pagination} />;
10 years ago
},
9 years ago
9 years ago
prepareParamsArguments(state) {
// 准备筛选、排序、分页的参数
let pagination;
let filters = {};
10 years ago
let sorter = {};
9 years ago
pagination = state.pagination;
this.props.columns.forEach((column) => {
let colFilters = state.filters[this.getColumnKey(column)] || [];
if (colFilters.length > 0) {
filters[this.getColumnKey(column)] = colFilters;
}
});
9 years ago
if (state.sortColumn &&
state.sortOrder &&
state.sortColumn.dataIndex) {
sorter.field = state.sortColumn.dataIndex;
sorter.order = state.sortOrder;
10 years ago
}
return [pagination, filters, sorter];
},
9 years ago
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));
}
// remote 模式使用 this.dataSource
9 years ago
let dataSource = this.getRemoteDataSource();
return jQuery.ajax({
url: dataSource.url,
9 years ago
data: dataSource.getParams.apply(this, this.prepareParamsArguments(state)) || {},
headers: dataSource.headers,
dataType: 'json',
success: (result) => {
if (this.isMounted()) {
let pagination = objectAssign(
9 years ago
state.pagination,
10 years ago
dataSource.getPagination.call(this, result)
);
this.setState({
9 years ago
loading: false,
data: dataSource.resolve.call(this, result),
9 years ago
pagination: pagination
});
}
},
10 years ago
error: () => {
this.setState({
9 years ago
loading: false,
data: []
});
}
});
9 years ago
}
},
9 years ago
findColumn(myKey) {
9 years ago
return this.props.columns.filter((c) => {
return this.getColumnKey(c) === myKey;
})[0];
},
9 years ago
getLocalDataPaging() {
9 years ago
let data = this.getLocalData();
let current, pageSize;
let state = this.state;
// 如果没有分页的话,默认全部展示
if (!this.hasPagination()) {
pageSize = Number.MAX_VALUE;
current = 1;
} else {
9 years ago
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;
},
9 years ago
getLocalData() {
9 years ago
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] || [];
if (values.length === 0) {
return;
}
9 years ago
data = data.filter((record) => {
return values.some((v)=> {
return col.onFilter(v, record);
});
});
10 years ago
});
}
9 years ago
return data;
},
9 years ago
componentDidMount() {
9 years ago
if (!this.isLocalDataSource()) {
this.fetch();
}
},
9 years ago
render() {
let data = this.getCurrentPageData();
let columns = this.renderRowSelection();
let classString = '';
if (this.state.loading && this.isLocalDataSource()) {
10 years ago
classString += ' ant-table-loading';
}
if (this.props.size === 'small') {
classString += ' ant-table-small';
}
9 years ago
columns = this.renderColumnsDropdown(columns);
return <div className="clearfix">
9 years ago
<Table
{...this.props}
data={data || []}
columns={columns}
className={classString}
/>
{this.renderPagination()}
</div>;
10 years ago
}
});
AntTable.DataSource = DataSource;
export default AntTable;