ant-design/components/list/index.tsx

294 lines
7.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';
2019-03-28 18:55:52 +08:00
export interface ListProps<T> {
bordered?: boolean;
className?: string;
2019-05-08 22:54:17 +08:00
style?: React.CSSProperties;
children?: React.ReactNode;
dataSource?: T[];
extra?: React.ReactNode;
grid?: ListGridType;
id?: string;
itemLayout?: ListItemLayout;
loading?: boolean | SpinProps;
loadMore?: React.ReactNode;
pagination?: PaginationConfig | false;
prefixCls?: string;
rowKey?: any;
renderItem?: (item: T, index: number) => React.ReactNode;
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: React.ReactNode | (() => React.ReactNode);
2017-11-21 19:02:04 +08:00
}
interface ListState {
paginationCurrent: number;
paginationSize: number;
}
export default class List<T> extends React.Component<ListProps<T>, ListState> {
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,
2019-03-28 18:55:52 +08:00
pagination: false as ListProps<any>['pagination'],
2017-11-17 11:25:29 +08:00
};
defaultPaginationProps = {
current: 1,
total: 0,
};
private keys: { [key: string]: string } = {};
2017-09-17 15:48:44 +08:00
private onPaginationChange = this.triggerPaginationEvent('onChange');
private onPaginationShowSizeChange = this.triggerPaginationEvent('onShowSizeChange');
2019-04-15 23:35:31 +08:00
constructor(props: ListProps<T>) {
super(props);
const { pagination } = props;
2019-04-22 18:03:06 +08:00
const paginationObj = pagination && typeof pagination === 'object' ? pagination : {};
2019-04-15 23:35:31 +08:00
this.state = {
paginationCurrent: paginationObj.defaultCurrent || 1,
paginationSize: paginationObj.defaultPageSize || 10,
};
}
getChildContext() {
return {
grid: this.props.grid,
itemLayout: this.props.itemLayout,
};
}
triggerPaginationEvent(eventName: string) {
return (page: number, pageSize: number) => {
const { pagination } = this.props;
this.setState({
paginationCurrent: page,
paginationSize: pageSize,
});
if (pagination && (pagination as any)[eventName]) {
(pagination as any)[eventName](page, pageSize);
}
};
}
renderItem = (item: any, index: number) => {
const { renderItem, rowKey } = this.props;
if (!renderItem) return null;
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, paginationSize } = 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,
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,
pageSize: paginationSize,
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`}>
<Pagination
{...paginationProps}
onChange={this.onPaginationChange}
onShowSizeChange={this.onPaginationShowSizeChange}
/>
</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
meger feature to master (#16421) * use ul in list * update snapshot * update comment * feat: TreeSelect support `showSearch` in multiple mode (#15933) * update rc-tree-select * typo * update desc & snapshot * update desc & snapshot * check default showSearch * feat: table customizing variable (#15971) * feat: added table selected row color variable * fix: @table-selected-row-color default is inherit * feat: Upload support customize previewFile (#15984) * support preview file * use promise * dealy load * use canvas of render * use domHook of test * update demo * add snapshot * update types * update testcase * feat: form customizing variables (#15954) * fix: added styling form input background-color * feat: added '@form-warning-input-bg' variable * feat: added '@form-error-input-bg' variable * use li wrap with comment * feat: Support append theme less file with less-variable (#16118) * add override * add override support * update doc * feat: dropdown support set right icon * docs: update doc of dropdown component * style: format dropdown-button.md * test: update updateSnapshot * style: format dropdown-button.md * test: update updateSnapshot * test: update updateSnapshot * style: change style of dropdown-button demo * fix: fix document table order * feat: Support SkeletonAvatarProps.size accept number (#16078) (#16128) * chore:update style of demo * feat: Notification functions accept top, bottom and getContainer as arguments * drawer: add afterVisibleChange * rm onVisibleChange * update * feat: 🇭🇷 hr_HR locale (#16258) * Added Croatian locale * fixed lint error * :white_check_mark: Add test cases for hr_HR * :memo: update i18n documentation * feat: add `htmlFor` in Form.Item (#16278) * add htmlFor in Form.Item * update doc * feat: Button support `link` type (#16289) close #15892 * feat: Add Timeline.Item.position (#16148) (#16193) * fix: Timeline.pendingDot interface documentation there is a small problem (#16177) * feat: Add Timeline.Item.position (#16148) * doc: add version infomation for Timeline.Item.position * refactor: Update Tree & TreeSelect deps (#16330) * use CSSMotion * update snapshot * feat: Collapse support `expandIconPosition` (#16365) * update doc * support expandIconPosition * update snapshot * feat: Breadcrumb support DropDown (#16315) * breadcrumbs support drop down menu * update doc * add require less * fix test * fix md doc * less code * fix style warning * update snap * add children render test * feat: TreeNode support checkable * feat: add optional to support top and left slick dots (#16186) (#16225) * add optional to support top and left slick dots * update carousel snapshot * Update doc, add placement demo * update carousel placement demo snapshots * rename dots placement to position * update vertical as deprecated * rename dotsPosition to dotPosition * refine code * add warning testcase for vertical * remove unused warning * update expression * Additional test case for dotPosition * refactor: Upgrade `rc-tree-select` to support pure React motion (#16402) * upgrade `rc-tree-select` * update snapshot * 3.17.0 changelog * fix warning * fix review warning
2019-05-06 12:04:39 +08:00
childrenContent = grid ? (
<Row gutter={grid.gutter}>{childrenList}</Row>
) : (
<ul className={`${prefixCls}-items`}>{childrenList}</ul>
);
} 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>;
}
}