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.

280 lines
6.6 KiB

import * as React from 'react';
import * as PropTypes from 'prop-types';
import classNames from 'classnames';
import { SpinProps } from '../spin';
import LocaleReceiver from '../locale-provider/LocaleReceiver';
import defaultLocale from '../locale-provider/default';
import Spin from '../spin';
import Pagination, { PaginationConfig } from '../pagination';
7 years ago
import { Row } from '../grid';
import Item from './Item';
export { ListItemProps, ListItemMetaProps } from './Item';
export type ColumnCount = 1 | 2 | 3 | 4 | 6 | 8 | 12 | 24;
export type ColumnType =
| 'gutter'
| 'column'
| 'xs'
| 'sm'
| 'md'
| 'lg'
| 'xl'
| 'xxl';
7 years ago
export interface ListGridType {
7 years ago
gutter?: number;
column?: ColumnCount;
xs?: ColumnCount;
sm?: ColumnCount;
md?: ColumnCount;
lg?: ColumnCount;
xl?: ColumnCount;
xxl?: ColumnCount;
7 years ago
}
export type ListSize = 'small' | 'default' | 'large';
export interface ListProps {
bordered?: boolean;
className?: string;
children?: React.ReactNode;
dataSource: any;
extra?: React.ReactNode;
grid?: ListGridType;
id?: string;
itemLayout?: string;
loading?: boolean | SpinProps;
loadMore?: React.ReactNode;
pagination?: PaginationConfig;
prefixCls?: string;
rowKey?: any;
renderItem: any;
size?: ListSize;
split?: boolean;
header?: React.ReactNode;
footer?: React.ReactNode;
locale?: Object;
}
export interface ListLocale {
emptyText: string;
}
export default class List extends React.Component<ListProps> {
static Item: typeof Item = Item;
static childContextTypes = {
grid: PropTypes.any,
};
static defaultProps = {
dataSource: [],
prefixCls: 'ant-list',
bordered: false,
split: true,
loading: false,
pagination: false,
};
state = {
paginationCurrent: 1,
};
defaultPaginationProps = {
current: 1,
pageSize: 10,
onChange: (page: number, pageSize: number) => {
const { pagination } = this.props;
this.setState({
paginationCurrent: page,
});
if (pagination && pagination.onChange) {
pagination.onChange(page, pageSize);
}
},
total: 0,
};
private keys: { [key: string]: string } = {};
getChildContext() {
return {
grid: this.props.grid,
};
}
renderItem = (item: React.ReactElement<any>, index: number) => {
const { dataSource, renderItem, rowKey } = this.props;
let key;
if (typeof rowKey === 'function') {
key = rowKey(dataSource[index]);
} else if (typeof rowKey === 'string') {
key = dataSource[rowKey];
} else {
key = dataSource.key;
}
if (!key) {
key = `list-item-${index}`;
}
this.keys[index] = key;
return renderItem(item, index);
}
7 years ago
isSomethingAfterLastItem() {
7 years ago
const { loadMore, pagination, footer } = this.props;
return !!(loadMore || pagination || footer);
}
renderEmpty = (contextLocale: ListLocale) => {
const locale = { ...contextLocale, ...this.props.locale };
return (
<div className={`${this.props.prefixCls}-empty-text`}>
{locale.emptyText}
</div>
);
}
render() {
const { paginationCurrent } = this.state;
const {
bordered,
split,
className,
children,
itemLayout,
loadMore,
pagination,
prefixCls,
7 years ago
grid,
dataSource,
size,
rowKey,
renderItem,
header,
footer,
loading,
locale,
...rest
} = this.props;
let loadingProp = loading;
if (typeof loadingProp === 'boolean') {
loadingProp = {
spinning: loadingProp,
};
}
const isLoading = loadingProp && loadingProp.spinning;
// large => lg
// small => sm
let sizeCls = '';
switch (size) {
case 'large':
sizeCls = 'lg';
break;
case 'small':
sizeCls = 'sm';
default:
break;
}
const classString = classNames(prefixCls, className, {
[`${prefixCls}-vertical`]: itemLayout === 'vertical',
[`${prefixCls}-${sizeCls}`]: sizeCls,
[`${prefixCls}-split`]: split,
[`${prefixCls}-bordered`]: bordered,
[`${prefixCls}-loading`]: isLoading,
7 years ago
[`${prefixCls}-grid`]: grid,
7 years ago
[`${prefixCls}-something-after-last-item`]: this.isSomethingAfterLastItem(),
});
const paginationProps = {
...this.defaultPaginationProps,
total: dataSource.length,
current: paginationCurrent,
...pagination || {},
};
const largestPage = Math.ceil(
paginationProps.total / paginationProps.pageSize,
);
if (paginationProps.current > largestPage) {
paginationProps.current = largestPage;
}
const paginationContent = pagination ? (
<div className={`${prefixCls}-pagination`}>
<Pagination
{...paginationProps}
onChange={this.defaultPaginationProps.onChange}
/>
</div>
) : null;
let splitDataSource = [...dataSource];
if (pagination) {
if (
dataSource.length >
(paginationProps.current - 1) * paginationProps.pageSize
) {
splitDataSource = [...dataSource].splice(
(paginationProps.current - 1) * paginationProps.pageSize,
paginationProps.pageSize,
);
}
}
let childrenContent;
childrenContent = isLoading && <div style={{ minHeight: 53 }} />;
if (splitDataSource.length > 0) {
const items = splitDataSource.map((item: any, index: number) =>
this.renderItem(item, index),
);
const childrenList: Array<React.ReactNode> = [];
React.Children.forEach(items, (child: any, index) => {
childrenList.push(React.cloneElement(child, {
key: this.keys[index],
}));
});
childrenContent = grid ? (
<Row gutter={grid.gutter}>{childrenList}</Row>
) : (
childrenList
);
} else if (!children && !isLoading) {
childrenContent = (
<LocaleReceiver
componentName="Table"
defaultLocale={defaultLocale.Table}
>
{this.renderEmpty}
</LocaleReceiver>
);
}
7 years ago
const paginationPosition = paginationProps.position || 'bottom';
return (
<div className={classString} {...rest}>
{(paginationPosition === 'top' || paginationPosition === 'both') && paginationContent}
{header && <div className={`${prefixCls}-header`}>{header}</div>}
<Spin {...loadingProp}>
{childrenContent}
{children}
</Spin>
{footer && <div className={`${prefixCls}-footer`}>{footer}</div>}
{loadMore || (paginationPosition === 'bottom' || paginationPosition === 'both') && paginationContent}
</div>
);
}
}