mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
785c132262
* 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 * ✅ Add test cases for hr_HR * 📝 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
291 lines
7.6 KiB
TypeScript
291 lines
7.6 KiB
TypeScript
import * as React from 'react';
|
|
import * as PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import { SpinProps } from '../spin';
|
|
import { ConfigConsumer, ConfigConsumerProps, RenderEmptyHandler } from '../config-provider';
|
|
|
|
import Spin from '../spin';
|
|
import Pagination, { PaginationConfig } 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 type ListItemLayout = 'horizontal' | 'vertical';
|
|
|
|
export interface ListProps<T> {
|
|
bordered?: boolean;
|
|
className?: string;
|
|
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;
|
|
locale?: ListLocale;
|
|
}
|
|
|
|
export interface ListLocale {
|
|
emptyText: React.ReactNode | (() => React.ReactNode);
|
|
}
|
|
|
|
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,
|
|
};
|
|
|
|
static defaultProps = {
|
|
dataSource: [],
|
|
bordered: false,
|
|
split: true,
|
|
loading: false,
|
|
pagination: false as ListProps<any>['pagination'],
|
|
};
|
|
|
|
defaultPaginationProps = {
|
|
current: 1,
|
|
total: 0,
|
|
};
|
|
|
|
private keys: { [key: string]: string } = {};
|
|
|
|
private onPaginationChange = this.triggerPaginationEvent('onChange');
|
|
|
|
private onPaginationShowSizeChange = this.triggerPaginationEvent('onShowSizeChange');
|
|
|
|
constructor(props: ListProps<T>) {
|
|
super(props);
|
|
|
|
const { pagination } = props;
|
|
const paginationObj = pagination && typeof pagination === 'object' ? pagination : {};
|
|
|
|
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;
|
|
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);
|
|
};
|
|
|
|
isSomethingAfterLastItem() {
|
|
const { loadMore, pagination, footer } = this.props;
|
|
return !!(loadMore || pagination || footer);
|
|
}
|
|
|
|
renderEmpty = (prefixCls: string, renderEmpty: RenderEmptyHandler) => {
|
|
const { locale } = this.props;
|
|
|
|
return (
|
|
<div className={`${prefixCls}-empty-text`}>
|
|
{(locale && locale.emptyText) || renderEmpty('List')}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
renderList = ({ getPrefixCls, renderEmpty }: ConfigConsumerProps) => {
|
|
const { paginationCurrent, paginationSize } = this.state;
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
bordered,
|
|
split,
|
|
className,
|
|
children,
|
|
itemLayout,
|
|
loadMore,
|
|
pagination,
|
|
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,
|
|
[`${prefixCls}-grid`]: grid,
|
|
[`${prefixCls}-something-after-last-item`]: this.isSomethingAfterLastItem(),
|
|
});
|
|
|
|
const paginationProps = {
|
|
...this.defaultPaginationProps,
|
|
total: dataSource.length,
|
|
current: paginationCurrent,
|
|
pageSize: paginationSize,
|
|
...(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.onPaginationChange}
|
|
onShowSizeChange={this.onPaginationShowSizeChange}
|
|
/>
|
|
</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>
|
|
) : (
|
|
<ul className={`${prefixCls}-items`}>{childrenList}</ul>
|
|
);
|
|
} else if (!children && !isLoading) {
|
|
childrenContent = this.renderEmpty(prefixCls, renderEmpty);
|
|
}
|
|
|
|
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>
|
|
);
|
|
};
|
|
|
|
render() {
|
|
return <ConfigConsumer>{this.renderList}</ConfigConsumer>;
|
|
}
|
|
}
|