2017-11-17 14:38:54 +08:00
|
|
|
import * as React from 'react';
|
2016-03-31 17:46:35 +08:00
|
|
|
import classNames from 'classnames';
|
2020-05-02 18:55:56 +08:00
|
|
|
import { ConfigContext } from '../config-provider';
|
2016-07-09 10:53:40 +08:00
|
|
|
|
2020-10-03 22:03:09 +08:00
|
|
|
export interface TimelineItemProps {
|
2016-12-19 15:19:15 +08:00
|
|
|
prefixCls?: string;
|
|
|
|
className?: string;
|
2016-07-13 11:14:24 +08:00
|
|
|
color?: string;
|
|
|
|
dot?: React.ReactNode;
|
2016-08-22 17:26:14 +08:00
|
|
|
pending?: boolean;
|
2019-04-27 18:18:49 +08:00
|
|
|
position?: string;
|
2016-07-13 11:14:24 +08:00
|
|
|
style?: React.CSSProperties;
|
2020-02-26 17:21:44 +08:00
|
|
|
label?: React.ReactNode;
|
2016-07-09 10:53:40 +08:00
|
|
|
}
|
2016-07-13 11:14:24 +08:00
|
|
|
|
2020-10-03 22:03:09 +08:00
|
|
|
// for compatibililty
|
|
|
|
// https://github.com/ant-design/ant-design/pull/26832
|
|
|
|
export interface TimeLineItemProps extends TimelineItemProps {
|
|
|
|
__deprecated_do_not_use_it__?: any; // eslint-disable-line camelcase
|
|
|
|
}
|
|
|
|
|
2020-11-24 20:19:35 +08:00
|
|
|
const TimelineItem: React.FC<TimelineItemProps> = ({
|
|
|
|
prefixCls: customizePrefixCls,
|
|
|
|
className,
|
|
|
|
color = 'blue',
|
|
|
|
dot,
|
|
|
|
pending = false,
|
|
|
|
position, /** dead, but do not pass in <li {...omit()} */
|
|
|
|
label,
|
|
|
|
children,
|
|
|
|
...restProps
|
|
|
|
}) => {
|
2020-05-02 18:55:56 +08:00
|
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
2016-03-31 17:46:35 +08:00
|
|
|
|
2020-05-02 18:55:56 +08:00
|
|
|
const prefixCls = getPrefixCls('timeline', customizePrefixCls);
|
|
|
|
const itemClassName = classNames(
|
|
|
|
{
|
|
|
|
[`${prefixCls}-item`]: true,
|
|
|
|
[`${prefixCls}-item-pending`]: pending,
|
|
|
|
},
|
|
|
|
className,
|
|
|
|
);
|
2016-05-07 02:13:08 +08:00
|
|
|
|
2020-05-02 18:55:56 +08:00
|
|
|
const dotClassName = classNames({
|
|
|
|
[`${prefixCls}-item-head`]: true,
|
|
|
|
[`${prefixCls}-item-head-custom`]: dot,
|
|
|
|
[`${prefixCls}-item-head-${color}`]: true,
|
|
|
|
});
|
2016-05-07 02:13:08 +08:00
|
|
|
|
2020-05-02 18:55:56 +08:00
|
|
|
return (
|
2020-11-24 20:19:35 +08:00
|
|
|
<li {...restProps} className={itemClassName}>
|
2020-05-02 18:55:56 +08:00
|
|
|
{label && <div className={`${prefixCls}-item-label`}>{label}</div>}
|
|
|
|
<div className={`${prefixCls}-item-tail`} />
|
|
|
|
<div
|
|
|
|
className={dotClassName}
|
|
|
|
style={{ borderColor: /blue|red|green|gray/.test(color || '') ? undefined : color }}
|
|
|
|
>
|
|
|
|
{dot}
|
|
|
|
</div>
|
|
|
|
<div className={`${prefixCls}-item-content`}>{children}</div>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
};
|
2016-05-07 02:13:08 +08:00
|
|
|
|
2018-12-05 19:12:18 +08:00
|
|
|
export default TimelineItem;
|