ant-design/components/list/index.tsx

262 lines
6.7 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
2018-08-07 21:07:52 +08:00
import * as PropTypes from 'prop-types';
import classNames from 'classnames';
import { SpinProps } from '../spin';
2018-12-26 16:01:00 +08:00
import { ConfigConsumer, ConfigConsumerProps, RenderEmptyHandler } from '../config-provider';
import Spin from '../spin';
import Pagination, { PaginationConfig } from '../pagination';
2017-08-14 11:08:19 +08:00
import { Row } from '../grid';
import Item from './Item';
export { ListItemProps, ListItemMetaProps } from './Item';
2017-11-21 19:02:04 +08:00
export type ColumnCount = 1 | 2 | 3 | 4 | 6 | 8 | 12 | 24;
2018-12-07 20:02:01 +08:00
export type ColumnType = 'gutter' | 'column' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
2017-08-14 22:25:17 +08:00
export interface ListGridType {
2017-08-14 11:08:19 +08:00
gutter?: number;
2017-11-21 19:02:04 +08:00
column?: ColumnCount;
xs?: ColumnCount;
sm?: ColumnCount;
md?: ColumnCount;
lg?: ColumnCount;
xl?: ColumnCount;
xxl?: ColumnCount;
2017-08-14 11:08:19 +08:00
}
export type ListSize = 'small' | 'default' | 'large';
export type ListItemLayout = 'horizontal' | 'vertical';
export interface ListProps {
bordered?: boolean;
className?: string;
children?: React.ReactNode;
dataSource: any;
extra?: React.ReactNode;
grid?: ListGridType;
id?: string;
itemLayout?: ListItemLayout;
loading?: boolean | SpinProps;
loadMore?: React.ReactNode;
pagination?: PaginationConfig | false;
prefixCls?: string;
rowKey?: any;
renderItem: any;
size?: ListSize;
split?: boolean;
header?: React.ReactNode;
footer?: React.ReactNode;
2018-12-26 16:01:00 +08:00
locale?: ListLocale;
}
2017-11-21 19:02:04 +08:00
export interface ListLocale {
emptyText: string;
}
export default class List extends React.Component<ListProps> {
static Item: typeof Item = Item;
static childContextTypes = {
grid: PropTypes.any,
itemLayout: PropTypes.string,
};
2017-11-17 11:25:29 +08:00
static defaultProps = {
dataSource: [],
bordered: false,
split: true,
loading: false,
pagination: false as ListProps['pagination'],
2017-11-17 11:25:29 +08:00
};
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 } = {};
2017-09-17 15:48:44 +08:00
getChildContext() {
return {
grid: this.props.grid,
itemLayout: this.props.itemLayout,
};
}
renderItem = (item: any, index: number) => {
const { renderItem, rowKey } = this.props;
let key;
if (typeof rowKey === 'function') {
key = rowKey(item);
} else if (typeof rowKey === 'string') {
key = item[rowKey];
} else {
key = item.key;
}
if (!key) {
key = `list-item-${index}`;
}
this.keys[index] = key;
return renderItem(item, index);
2018-12-07 20:02:01 +08:00
};
2018-04-13 12:19:11 +08:00
isSomethingAfterLastItem() {
2017-10-26 15:36:48 +08:00
const { loadMore, pagination, footer } = this.props;
return !!(loadMore || pagination || footer);
}
2018-12-26 16:01:00 +08:00
renderEmpty = (prefixCls: string, renderEmpty: RenderEmptyHandler) => {
const { locale } = this.props;
return (
<div className={`${prefixCls}-empty-text`}>
{(locale && locale.emptyText) || renderEmpty('List')}
</div>
);
2018-12-07 20:02:01 +08:00
};
2017-11-17 11:25:29 +08:00
2018-12-26 16:01:00 +08:00
renderList = ({ getPrefixCls, renderEmpty }: ConfigConsumerProps) => {
const { paginationCurrent } = this.state;
const {
prefixCls: customizePrefixCls,
2017-11-17 11:25:29 +08:00
bordered,
split,
className,
children,
itemLayout,
loadMore,
2017-11-17 11:25:29 +08:00
pagination,
2017-08-14 11:08:19 +08:00
grid,
2017-11-17 11:25:29 +08:00
dataSource,
size,
rowKey,
renderItem,
header,
footer,
loading,
locale,
...rest
} = this.props;
const prefixCls = getPrefixCls('list', customizePrefixCls);
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,
2017-08-14 11:08:19 +08:00
[`${prefixCls}-grid`]: grid,
2018-04-13 12:19:11 +08:00
[`${prefixCls}-something-after-last-item`]: this.isSomethingAfterLastItem(),
});
const paginationProps = {
...this.defaultPaginationProps,
total: dataSource.length,
current: paginationCurrent,
2018-12-07 20:02:01 +08:00
...(pagination || {}),
};
2018-12-07 20:02:01 +08:00
const largestPage = Math.ceil(paginationProps.total / paginationProps.pageSize);
if (paginationProps.current > largestPage) {
paginationProps.current = largestPage;
}
const paginationContent = pagination ? (
<div className={`${prefixCls}-pagination`}>
2018-12-07 20:02:01 +08:00
<Pagination {...paginationProps} onChange={this.defaultPaginationProps.onChange} />
</div>
) : null;
let splitDataSource = [...dataSource];
if (pagination) {
2018-12-07 20:02:01 +08:00
if (dataSource.length > (paginationProps.current - 1) * paginationProps.pageSize) {
splitDataSource = [...dataSource].splice(
(paginationProps.current - 1) * paginationProps.pageSize,
paginationProps.pageSize,
);
}
}
2017-11-17 11:25:29 +08:00
let childrenContent;
2018-04-13 15:28:31 +08:00
childrenContent = isLoading && <div style={{ minHeight: 53 }} />;
if (splitDataSource.length > 0) {
2018-12-07 20:02:01 +08:00
const items = splitDataSource.map((item: any, index: number) => this.renderItem(item, index));
const childrenList: Array<React.ReactNode> = [];
React.Children.forEach(items, (child: any, index) => {
2018-12-07 20:02:01 +08:00
childrenList.push(
React.cloneElement(child, {
key: this.keys[index],
}),
);
});
2017-11-17 11:25:29 +08:00
2018-12-07 20:02:01 +08:00
childrenContent = grid ? <Row gutter={grid.gutter}>{childrenList}</Row> : childrenList;
} else if (!children && !isLoading) {
2018-12-26 16:01:00 +08:00
childrenContent = this.renderEmpty(prefixCls, renderEmpty);
2017-11-17 11:25:29 +08:00
}
2017-08-14 11:08:19 +08:00
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>}
2018-12-07 20:02:01 +08:00
{loadMore ||
((paginationPosition === 'bottom' || paginationPosition === 'both') && paginationContent)}
</div>
);
2018-12-07 20:02:01 +08:00
};
render() {
2018-12-07 20:02:01 +08:00
return <ConfigConsumer>{this.renderList}</ConfigConsumer>;
}
}