2020-06-08 07:02:43 +00:00
|
|
|
import { inject } from 'vue';
|
2020-08-31 08:53:19 +00:00
|
|
|
import classNames from '../_util/classNames';
|
2019-01-12 03:33:27 +00:00
|
|
|
import PropTypes from '../_util/vue-types';
|
2020-06-08 07:02:43 +00:00
|
|
|
import { getOptionProps, initDefaultProps, getComponent } from '../_util/props-util';
|
2020-09-30 02:47:18 +00:00
|
|
|
import { defaultConfigProvider } from '../config-provider';
|
2018-04-03 07:51:44 +00:00
|
|
|
|
|
|
|
export const TimeLineItemProps = {
|
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
color: PropTypes.string,
|
|
|
|
dot: PropTypes.any,
|
2020-10-10 10:16:28 +00:00
|
|
|
pending: PropTypes.looseBool,
|
2020-03-07 11:45:13 +00:00
|
|
|
position: PropTypes.oneOf(['left', 'right', '']).def(''),
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2018-04-03 07:51:44 +00:00
|
|
|
|
|
|
|
export default {
|
2018-04-08 13:17:20 +00:00
|
|
|
name: 'ATimelineItem',
|
2018-04-03 07:51:44 +00:00
|
|
|
props: initDefaultProps(TimeLineItemProps, {
|
|
|
|
color: 'blue',
|
|
|
|
pending: false,
|
|
|
|
}),
|
2020-06-08 07:02:43 +00:00
|
|
|
setup() {
|
2020-09-30 02:47:18 +00:00
|
|
|
const configProvider = inject('configProvider', defaultConfigProvider);
|
2020-06-08 07:02:43 +00:00
|
|
|
return {
|
|
|
|
configProvider,
|
|
|
|
};
|
2019-03-18 12:35:24 +00:00
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
render() {
|
2019-03-18 12:35:24 +00:00
|
|
|
const { prefixCls: customizePrefixCls, color = '', pending } = getOptionProps(this);
|
2019-09-11 14:35:25 +00:00
|
|
|
const getPrefixCls = this.configProvider.getPrefixCls;
|
2019-03-18 12:35:24 +00:00
|
|
|
const prefixCls = getPrefixCls('timeline', customizePrefixCls);
|
|
|
|
|
2020-06-08 07:02:43 +00:00
|
|
|
const dot = getComponent(this, 'dot');
|
2018-04-03 07:51:44 +00:00
|
|
|
const itemClassName = classNames({
|
|
|
|
[`${prefixCls}-item`]: true,
|
|
|
|
[`${prefixCls}-item-pending`]: pending,
|
2019-01-12 03:33:27 +00:00
|
|
|
});
|
2018-04-03 07:51:44 +00:00
|
|
|
|
|
|
|
const dotClassName = classNames({
|
|
|
|
[`${prefixCls}-item-head`]: true,
|
|
|
|
[`${prefixCls}-item-head-custom`]: dot,
|
|
|
|
[`${prefixCls}-item-head-${color}`]: true,
|
2019-01-12 03:33:27 +00:00
|
|
|
});
|
2018-04-03 07:51:44 +00:00
|
|
|
return (
|
2020-08-04 10:00:09 +00:00
|
|
|
<li class={itemClassName}>
|
2018-04-03 07:51:44 +00:00
|
|
|
<div class={`${prefixCls}-item-tail`} />
|
|
|
|
<div
|
|
|
|
class={dotClassName}
|
2020-03-07 11:45:13 +00:00
|
|
|
style={{ borderColor: /blue|red|green|gray/.test(color) ? undefined : color }}
|
2018-04-03 07:51:44 +00:00
|
|
|
>
|
|
|
|
{dot}
|
|
|
|
</div>
|
2020-06-08 07:02:43 +00:00
|
|
|
<div class={`${prefixCls}-item-content`}>
|
|
|
|
{this.$slots.default && this.$slots.default()}
|
|
|
|
</div>
|
2018-04-03 07:51:44 +00:00
|
|
|
</li>
|
2019-01-12 03:33:27 +00:00
|
|
|
);
|
2018-04-03 07:51:44 +00:00
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|