forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimeline.tsx
40 lines (37 loc) · 1.18 KB
/
Timeline.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import React from 'react';
import classNames from 'classnames';
import TimelineItem from './TimelineItem';
export interface TimelineProps {
prefixCls?: string;
className?: string;
/** 指定最后一个幽灵节点是否存在或内容 */
pending?: React.ReactNode;
style?: React.CSSProperties;
}
export default class Timeline extends React.Component<TimelineProps, any> {
static Item: React.ReactNode;
static defaultProps = {
prefixCls: 'ant-timeline',
};
render() {
const { prefixCls, children, pending, className, ...restProps } = this.props;
const pendingNode = typeof pending === 'boolean' ? null : pending;
const classString = classNames(prefixCls, {
[`${prefixCls}-pending`]: !!pending,
}, className);
const items = React.Children.map(children, (ele: React.ReactElement<any>, idx) =>
React.cloneElement(ele, {
last: idx === (children as { length: number }).length - 1,
})
);
const pendingItem = (!!pending) ? (
<TimelineItem pending={!!pending}>{pendingNode}</TimelineItem>
) : null;
return (
<ul {...restProps} className={classString}>
{items}
{pendingItem}
</ul>
);
}
}