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.
ant-design-vue/components/timeline/Timeline.jsx

63 lines
1.7 KiB

7 years ago
import classNames from 'classnames'
import PropTypes from '../_util/vue-types'
import { getOptionProps, initDefaultProps, filterEmpty, getComponentFromProp } from '../_util/props-util'
import { cloneElement } from '../_util/vnode'
import TimelineItem from './TimelineItem'
import Icon from '../icon'
export const TimelineProps = {
prefixCls: PropTypes.string,
/** 指定最后一个幽灵节点是否存在或内容 */
pending: PropTypes.any,
7 years ago
pendingDot: PropTypes.string,
7 years ago
}
export default {
name: 'ATimeline',
7 years ago
props: initDefaultProps(TimelineProps, {
prefixCls: 'ant-timeline',
}),
render () {
const { prefixCls, ...restProps } = getOptionProps(this)
7 years ago
const pendingDot = getComponentFromProp(this, 'pendingDot')
7 years ago
const pending = getComponentFromProp(this, 'pending')
const pendingNode = typeof pending === 'boolean' ? null : pending
const classString = classNames(prefixCls, {
[`${prefixCls}-pending`]: !!pending,
})
// Remove falsy items
const falsylessItems = filterEmpty(this.$slots.default)
const items = falsylessItems.map((item, idx) => {
return cloneElement(item, {
props: {
last: falsylessItems.length - 1 === idx,
},
})
})
const pendingItem = (pending) ? (
<TimelineItem
pending={!!pending}
>
7 years ago
<template slot='dot'>
{pendingDot || <Icon type='loading' />}
</template>
7 years ago
<Icon slot='dot' type='loading' />
{pendingNode}
</TimelineItem>
) : null
const timelineProps = {
props: {
...restProps,
},
class: classString,
on: this.$listeners,
}
return (
<ul {...timelineProps}>
{items}
{pendingItem}
</ul>
)
},
}