ant-design/components/table/index.jsx

340 lines
10 KiB
React
Raw Normal View History

2015-07-10 17:47:53 +08:00
'use strict';
2015-07-09 11:41:36 +08:00
import React from 'react';
2015-07-12 17:10:06 +08:00
import jQuery from 'jquery';
2015-07-09 11:41:36 +08:00
import Table from 'rc-table';
2015-07-13 16:22:02 +08:00
import Dropdown from '../dropdown';
2015-07-15 17:22:58 +08:00
import Checkbox from '../checkbox';
2015-07-15 12:16:28 +08:00
import FilterMenu from './filterMenu';
import Pagination from '../pagination';
2015-07-14 20:04:14 +08:00
import objectAssign from 'object-assign';
2015-07-09 11:41:36 +08:00
let AntTable = React.createClass({
2015-07-10 17:47:53 +08:00
getInitialState() {
// 支持两种模式
if (Array.isArray(this.props.dataSource)) {
this.mode = 'local';
// 保留原来的数据
this.originDataSource = this.props.dataSource.slice(0);
} else {
this.mode = 'remote';
2015-07-16 23:16:20 +08:00
this.dataSource = objectAssign({
2015-07-14 20:04:14 +08:00
resolve: function(data) {
return data || [];
2015-07-14 20:04:14 +08:00
},
getParams: function() {},
getPagination: function() {}
}, this.props.dataSource);
}
2015-07-16 23:16:20 +08:00
let pagination;
if (this.props.pagination === false) {
pagination = false;
} else {
2015-07-14 20:04:14 +08:00
pagination = objectAssign({
pageSize: 10,
total: this.props.dataSource.length
}, this.props.pagination);
}
2015-07-10 17:47:53 +08:00
return {
2015-07-12 17:10:06 +08:00
selectedRowKeys: [],
loading: false,
pagination: pagination,
2015-07-15 14:10:01 +08:00
data: []
2015-07-10 17:47:53 +08:00
};
},
2015-07-09 11:41:36 +08:00
getDefaultProps() {
return {
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,
size: 'normal'
2015-07-09 11:41:36 +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;
// 同时允许一列进行排序,否则会导致排序顺序的逻辑问题
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';
}
2015-07-13 16:22:02 +08:00
}
if (this.mode === 'local') {
2015-07-16 18:26:17 +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-07-15 14:10:01 +08:00
this.setState({
sortOrder: sortOrder,
2015-07-16 18:26:17 +08:00
sortColumn: sortColumn,
sorter: sorter
2015-07-15 14:10:01 +08:00
}, this.fetch);
2015-07-13 16:22:02 +08:00
},
2015-07-13 18:42:08 +08:00
handleFilter(column) {
2015-07-16 18:26:17 +08:00
let columnIndex = this.props.columns.indexOf(column);
let filterFns = [];
if (this.mode === 'local') {
2015-07-16 18:26:17 +08:00
filterFns[columnIndex] = function(record) {
if (column.selectedFilters.length === 0) {
return true;
}
return column.selectedFilters.some(function(value) {
return column.onFilter.call(this, value, record);
});
2015-07-16 18:26:17 +08:00
};
}
2015-07-16 18:26:17 +08:00
this.setState({
filterFns: filterFns
}, this.fetch);
2015-07-13 18:42:08 +08:00
},
2015-07-16 14:41:28 +08:00
handleSelect(rowIndex, e) {
let checked = e.target.checked;
if (checked) {
2015-07-15 17:22:58 +08:00
this.state.selectedRowKeys.push(rowIndex);
} else {
2015-07-15 11:12:17 +08:00
this.state.selectedRowKeys = this.state.selectedRowKeys.filter(function(i) {
2015-07-15 17:22:58 +08:00
return rowIndex !== i;
});
}
this.setState({
selectedRowKeys: this.state.selectedRowKeys
});
if (this.props.rowSelection.onSelect) {
2015-07-15 20:22:56 +08:00
let currentRow = this.state.data[rowIndex - 1];
let selectedRows = this.state.data.filter((row, i) => {
return this.state.selectedRowKeys.indexOf(i + 1) >= 0;
});
this.props.rowSelection.onSelect(currentRow, checked, selectedRows);
}
},
2015-07-16 14:41:28 +08:00
handleSelectAllRow(e) {
let checked = e.target.checked;
let selectedRowKeys = checked ? this.state.data.map(function(item, i) {
return i + 1;
2015-07-15 20:22:56 +08:00
}) : [];
this.setState({
selectedRowKeys: selectedRowKeys
});
if (this.props.rowSelection.onSelectAll) {
2015-07-15 20:22:56 +08:00
let selectedRows = this.state.data.filter((row, i) => {
return selectedRowKeys.indexOf(i + 1) >= 0;
});
this.props.rowSelection.onSelectAll(checked, selectedRows);
2015-07-13 18:42:08 +08:00
}
2015-07-13 17:40:17 +08:00
},
handlePageChange: function(current) {
2015-07-15 14:10:01 +08:00
let pagination = this.state.pagination;
pagination.current = current || 1;
this.setState({
pagination: pagination
}, this.fetch);
},
renderSelectionCheckBox(value, record, index) {
2015-07-15 17:22:58 +08:00
let rowIndex = index + 1; // 从 1 开始
let checked = this.state.selectedRowKeys.indexOf(rowIndex) >= 0;
2015-07-15 17:55:30 +08:00
return <Checkbox checked={checked} onChange={this.handleSelect.bind(this, rowIndex)} />;
},
renderRowSelection() {
var columns = this.props.columns;
if (this.props.rowSelection) {
let checked = this.state.data.every(function(item, i) {
return this.state.selectedRowKeys.indexOf(i + 1) >= 0;
}, this);
2015-07-15 17:55:30 +08:00
let checkboxAll = <Checkbox checked={checked} onChange={this.handleSelectAllRow} />;
let selectionColumn = {
key: 'selection-column',
title: checkboxAll,
width: 60,
2015-07-15 11:12:17 +08:00
render: this.renderSelectionCheckBox,
className: 'ant-table-selection-column'
};
if (columns[0] &&
columns[0].key === 'selection-column') {
columns[0] = selectionColumn;
} else {
columns.unshift(selectionColumn);
}
}
return columns;
},
2015-07-13 16:22:02 +08:00
renderColumnsDropdown() {
return this.props.columns.map((column) => {
2015-07-13 16:22:02 +08:00
if (!column.originTitle) {
column.originTitle = column.title;
}
let filterDropdown, menus, sortButton;
if (column.filters && column.filters.length > 0) {
column.selectedFilters = column.selectedFilters || [];
2015-07-15 12:16:28 +08:00
menus = <FilterMenu column={column} confirmFilter={this.handleFilter.bind(this, column)} />;
2015-07-13 18:42:08 +08:00
let dropdownSelectedClass = '';
if (column.selectedFilters && column.selectedFilters.length > 0) {
2015-07-13 18:42:08 +08:00
dropdownSelectedClass = 'ant-table-filter-selected';
}
filterDropdown = <Dropdown trigger="click"
closeOnSelect={false}
overlay={menus}>
<i title="筛选" className={'anticon anticon-bars ' + dropdownSelectedClass}></i>
2015-07-13 16:22:02 +08:00
</Dropdown>;
}
if (column.sorter) {
let isSortColumn = (this.state.sortColumn === column);
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-07-13 16:22:02 +08:00
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')}
2015-07-13 16:22:02 +08:00
title="降序排序"
onClick={this.toggleSortOrder.bind(this, 'descend', column)}>
<i className="anticon anticon-caret-down"></i>
</span>
</div>;
}
column.title = [
column.originTitle,
sortButton,
filterDropdown
];
2015-07-13 17:40:17 +08:00
return column;
2015-07-13 16:22:02 +08:00
});
},
renderPagination() {
// 强制不需要分页
if (this.state.pagination === false) {
return '';
2015-07-10 17:47:53 +08:00
}
2015-07-14 20:08:45 +08:00
let classString = 'ant-table-pagination';
if (this.props.size === 'small') {
classString += ' mini';
}
return <Pagination className={classString}
onChange={this.handlePageChange}
{...this.state.pagination} />;
2015-07-10 17:47:53 +08:00
},
prepareParamsArguments() {
// 准备筛选、排序、分页的参数
let pagination;
let filters = {};
2015-07-15 14:10:01 +08:00
let sorter = {};
pagination = this.state.pagination;
this.props.columns.forEach(function(column) {
if (column.dataIndex && column.selectedFilters &&
column.selectedFilters.length > 0) {
filters[column.dataIndex] = column.selectedFilters;
}
});
2015-07-15 14:10:01 +08:00
if (this.state.sortColumn && this.state.sortOrder &&
this.state.sortColumn.dataIndex) {
sorter.field = this.state.sortColumn.dataIndex;
sorter.order = this.state.sortOrder;
}
return [pagination, filters, sorter];
},
fetch: function() {
if (this.mode === 'remote') {
2015-07-16 23:16:20 +08:00
// remote 模式使用 this.dataSource
let dataSource = this.dataSource;
2015-07-12 17:10:06 +08:00
this.setState({
loading: true
});
jQuery.ajax({
url: dataSource.url,
2015-07-14 20:04:14 +08:00
data: dataSource.getParams.apply(this, this.prepareParamsArguments()) || {},
headers: dataSource.headers,
dataType: 'json',
2015-07-12 17:10:06 +08:00
success: (result) => {
if (this.isMounted()) {
2015-07-14 20:04:14 +08:00
let pagination = objectAssign(
2015-07-14 17:58:00 +08:00
this.state.pagination,
dataSource.getPagination.call(this, result)
);
2015-07-12 17:10:06 +08:00
this.setState({
data: dataSource.resolve.call(this, result),
2015-07-14 17:58:00 +08:00
pagination: pagination,
loading: false
2015-07-12 17:10:06 +08:00
});
}
},
2015-07-14 17:58:00 +08:00
error: () => {
2015-07-12 17:10:06 +08:00
this.setState({
loading: false
});
}
});
} else {
2015-07-16 23:16:20 +08:00
let data = this.props.dataSource;
let pageSize = this.state.pagination.pageSize;
let current = this.state.pagination.current;
2015-07-16 18:26:17 +08:00
// 排序
if (this.state.sortOrder && this.state.sorter) {
data = data.sort(this.state.sorter);
} else {
data = this.originDataSource.slice();
}
// 筛选
if (this.state.filterFns) {
this.state.filterFns.forEach(function(filterFn) {
if (typeof filterFn === 'function') {
data = data.filter(filterFn);
2015-07-14 17:58:00 +08:00
}
2015-07-16 18:26:17 +08:00
});
}
// 分页
data = data.filter(function(item, i) {
if (i >= (current - 1) * pageSize &&
i < current * pageSize) {
return item;
}
});
// 完成数据
this.setState({
data: data
2015-07-14 17:58:00 +08:00
});
2015-07-12 17:10:06 +08:00
}
},
componentDidMount() {
2015-07-14 17:58:00 +08:00
this.handlePageChange();
2015-07-12 17:10:06 +08:00
},
2015-07-09 11:41:36 +08:00
render() {
this.props.columns = this.renderRowSelection();
2015-07-12 18:14:17 +08:00
var classString = '';
2015-07-14 21:06:39 +08:00
if (this.state.loading) {
2015-07-12 18:14:17 +08:00
classString += ' ant-table-loading';
}
if (this.props.size === 'small') {
classString += ' ant-table-small';
}
return <div className="clearfix">
<Table data={this.state.data}
columns={this.renderColumnsDropdown()}
2015-07-12 18:14:17 +08:00
className={classString}
{...this.props} />
{this.renderPagination()}
</div>;
2015-07-09 11:41:36 +08:00
}
});
export default AntTable;