2019-01-12 11:33:27 +08:00
|
|
|
import classNames from 'classnames';
|
|
|
|
import PropTypes from '../_util/vue-types';
|
|
|
|
import { getOptionProps, initDefaultProps, getComponentFromProp } from '../_util/props-util';
|
2018-04-03 15:51:44 +08:00
|
|
|
|
|
|
|
export const TimeLineItemProps = {
|
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
color: PropTypes.string,
|
|
|
|
dot: PropTypes.any,
|
|
|
|
pending: PropTypes.bool,
|
2019-01-12 11:33:27 +08:00
|
|
|
};
|
2018-04-03 15:51:44 +08:00
|
|
|
|
|
|
|
export default {
|
2018-04-08 21:17:20 +08:00
|
|
|
name: 'ATimelineItem',
|
2018-04-03 15:51:44 +08:00
|
|
|
props: initDefaultProps(TimeLineItemProps, {
|
|
|
|
prefixCls: 'ant-timeline',
|
|
|
|
color: 'blue',
|
|
|
|
pending: false,
|
|
|
|
}),
|
2019-01-12 11:33:27 +08:00
|
|
|
render() {
|
|
|
|
const { prefixCls, color = '', pending } = getOptionProps(this);
|
|
|
|
const dot = getComponentFromProp(this, 'dot');
|
2018-04-03 15:51:44 +08:00
|
|
|
const itemClassName = classNames({
|
|
|
|
[`${prefixCls}-item`]: true,
|
|
|
|
[`${prefixCls}-item-pending`]: pending,
|
2019-01-12 11:33:27 +08:00
|
|
|
});
|
2018-04-03 15:51:44 +08:00
|
|
|
|
|
|
|
const dotClassName = classNames({
|
|
|
|
[`${prefixCls}-item-head`]: true,
|
|
|
|
[`${prefixCls}-item-head-custom`]: dot,
|
|
|
|
[`${prefixCls}-item-head-${color}`]: true,
|
2019-01-12 11:33:27 +08:00
|
|
|
});
|
2018-04-03 21:01:05 +08:00
|
|
|
const liProps = {
|
|
|
|
class: itemClassName,
|
|
|
|
on: this.$listeners,
|
2019-01-12 11:33:27 +08:00
|
|
|
};
|
2018-04-03 15:51:44 +08:00
|
|
|
return (
|
2018-04-03 21:01:05 +08:00
|
|
|
<li {...liProps}>
|
2018-04-03 15:51:44 +08:00
|
|
|
<div class={`${prefixCls}-item-tail`} />
|
|
|
|
<div
|
|
|
|
class={dotClassName}
|
2018-09-05 21:28:54 +08:00
|
|
|
style={{ borderColor: /blue|red|green/.test(color) ? undefined : color }}
|
2018-04-03 15:51:44 +08:00
|
|
|
>
|
|
|
|
{dot}
|
|
|
|
</div>
|
2019-01-12 11:33:27 +08:00
|
|
|
<div class={`${prefixCls}-item-content`}>{this.$slots.default}</div>
|
2018-04-03 15:51:44 +08:00
|
|
|
</li>
|
2019-01-12 11:33:27 +08:00
|
|
|
);
|
2018-04-03 15:51:44 +08:00
|
|
|
},
|
2019-01-12 11:33:27 +08:00
|
|
|
};
|