45 lines
1.7 KiB
Vue
45 lines
1.7 KiB
Vue
<template>
|
|
<div :class="cx('root')" v-bind="ptmi('root')">
|
|
<div v-for="(item, index) of value" :key="getKey(item, index)" :class="cx('event')" v-bind="getPTOptions('event', index)">
|
|
<div :class="cx('eventOpposite', { index })" v-bind="getPTOptions('eventOpposite', index)">
|
|
<slot name="opposite" :item="item" :index="index"></slot>
|
|
</div>
|
|
<div :class="cx('eventSeparator')" v-bind="getPTOptions('eventSeparator', index)">
|
|
<slot name="marker" :item="item" :index="index">
|
|
<div :class="cx('eventMarker')" v-bind="getPTOptions('eventMarker', index)"></div>
|
|
</slot>
|
|
<slot v-if="index !== value.length - 1" name="connector" :item="item" :index="index">
|
|
<div :class="cx('eventConnector')" v-bind="getPTOptions('eventConnector', index)"></div>
|
|
</slot>
|
|
</div>
|
|
<div :class="cx('eventContent')" v-bind="getPTOptions('eventContent', index)">
|
|
<slot name="content" :item="item" :index="index"></slot>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { ObjectUtils } from 'primevue/utils';
|
|
import BaseTimeline from './BaseTimeline.vue';
|
|
|
|
export default {
|
|
name: 'Timeline',
|
|
extends: BaseTimeline,
|
|
inheritAttrs: false,
|
|
methods: {
|
|
getKey(item, index) {
|
|
return this.dataKey ? ObjectUtils.resolveFieldData(item, this.dataKey) : index;
|
|
},
|
|
getPTOptions(key, index) {
|
|
return this.ptm(key, {
|
|
context: {
|
|
index,
|
|
count: this.value.length
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|