ant-design/components/list/index.tsx

271 lines
6.3 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { SpinProps } from '../spin';
2017-11-17 11:25:29 +08:00
import LocaleReceiver from '../locale-provider/LocaleReceiver';
import defaultLocale from '../locale-provider/default';
import Spin from '../spin';
import Pagination 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;
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 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?: any;
prefixCls?: string;
rowKey?: any;
renderItem: any;
size?: ListSize;
split?: boolean;
header?: React.ReactNode;
footer?: React.ReactNode;
2017-11-17 11:25:29 +08:00
locale?: Object;
}
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,
};
2017-11-17 11:25:29 +08:00
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 } = {};
2017-09-17 15:48:44 +08:00
getChildContext() {
return {
grid: this.props.grid,
};
}
2017-11-21 19:02:04 +08:00
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);
}
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);
}
2017-11-21 19:02:04 +08:00
renderEmpty = (contextLocale: ListLocale) => {
2017-11-17 11:25:29 +08:00
const locale = { ...contextLocale, ...this.props.locale };
return (
<div className={`${this.props.prefixCls}-empty-text`}>
{locale.emptyText}
</div>
);
2017-11-17 11:25:29 +08:00
}
render() {
const { paginationCurrent } = this.state;
const {
2017-11-17 11:25:29 +08:00
bordered,
split,
className,
children,
itemLayout,
loadMore,
2017-11-17 11:25:29 +08:00
pagination,
prefixCls,
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;
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(),
});
this.defaultPaginationProps.total = dataSource.length;
this.defaultPaginationProps.current = paginationCurrent;
const paginationProps = { ...this.defaultPaginationProps, ...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,
);
}
}
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) {
const items = splitDataSource.map((item: any, index: number) =>
this.renderItem(item, index),
);
const childrenList = React.Children.map(items, (child: any, index) =>
React.cloneElement(child, {
2017-11-17 11:25:29 +08:00
key: this.keys[index],
}),
);
childrenContent = grid ? (
<Row gutter={grid.gutter}>{childrenList}</Row>
) : (
childrenList
);
} else if (!children && !isLoading) {
2017-11-17 11:25:29 +08:00
childrenContent = (
<LocaleReceiver
componentName="Table"
defaultLocale={defaultLocale.Table}
>
{this.renderEmpty}
</LocaleReceiver>
);
}
2017-08-14 11:08:19 +08:00
return (
<div className={classString} {...rest}>
{header && <div className={`${prefixCls}-header`}>{header}</div>}
<Spin {...loadingProp}>
{childrenContent}
{children}
</Spin>
{footer && <div className={`${prefixCls}-footer`}>{footer}</div>}
{loadMore || paginationContent}
</div>
);
}
}