You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.9 KiB
65 lines
1.9 KiB
import classNames from 'classnames';
|
|
import * as React from 'react';
|
|
import warning from '../_util/warning';
|
|
import { ConfigContext } from '../config-provider';
|
|
import type { TimelineItemProps } from './TimelineItem';
|
|
import TimelineItem from './TimelineItem';
|
|
import TimelineItemList from './TimelineItemList';
|
|
import useItems from './useItems';
|
|
|
|
// CSSINJS
|
|
import useStyle from './style';
|
|
|
|
export interface TimelineProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
rootClassName?: string;
|
|
/** 指定最后一个幽灵节点是否存在或内容 */
|
|
pending?: React.ReactNode;
|
|
pendingDot?: React.ReactNode;
|
|
style?: React.CSSProperties;
|
|
reverse?: boolean;
|
|
mode?: 'left' | 'alternate' | 'right';
|
|
items?: TimelineItemProps[];
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
type CompoundedComponent = React.FC<TimelineProps> & {
|
|
Item: React.FC<TimelineItemProps>;
|
|
};
|
|
|
|
const Timeline: CompoundedComponent = (props) => {
|
|
const { getPrefixCls, direction, timeline } = React.useContext(ConfigContext);
|
|
const { prefixCls: customizePrefixCls, children, items, className, style, ...restProps } = props;
|
|
const prefixCls = getPrefixCls('timeline', customizePrefixCls);
|
|
|
|
// =================== Warning =====================
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
warning(!children, 'Timeline', '`Timeline.Item` is deprecated. Please use `items` instead.');
|
|
}
|
|
|
|
// Style
|
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
|
|
|
const mergedItems: TimelineItemProps[] = useItems(items, children);
|
|
|
|
return wrapSSR(
|
|
<TimelineItemList
|
|
{...restProps}
|
|
className={classNames(timeline?.className, className)}
|
|
style={{ ...timeline?.style, ...style }}
|
|
prefixCls={prefixCls}
|
|
direction={direction}
|
|
items={mergedItems}
|
|
hashId={hashId}
|
|
/>,
|
|
);
|
|
};
|
|
|
|
Timeline.Item = TimelineItem;
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Timeline.displayName = 'Timeline';
|
|
}
|
|
|
|
export default Timeline;
|
|
|