|
|
|
import * as React from 'react';
|
|
|
|
import 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 from '../pagination';
|
|
|
|
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';
|
|
|
|
|
|
|
|
export interface ListGridType {
|
|
|
|
gutter?: number;
|
|
|
|
column?: ColumnCount;
|
|
|
|
xs?: ColumnCount;
|
|
|
|
sm?: ColumnCount;
|
|
|
|
md?: ColumnCount;
|
|
|
|
lg?: ColumnCount;
|
|
|
|
xl?: ColumnCount;
|
|
|
|
xxl?: ColumnCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|