primevue-mirror/components/galleria/GalleriaItem.vue

169 lines
5.2 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2022-09-14 11:26:01 +00:00
<div class="p-galleria-item-wrapper">
<div class="p-galleria-item-container">
<button v-if="showItemNavigators" v-ripple type="button" :class="navBackwardClass" @click="navBackward($event)" :disabled="isNavBackwardDisabled()">
<span class="p-galleria-item-prev-icon pi pi-chevron-left"></span>
</button>
<div class="p-galleria-item">
<component v-if="templates.item" :is="templates.item" :item="activeItem" />
</div>
<button v-if="showItemNavigators" v-ripple type="button" :class="navForwardClass" @click="navForward($event)" :disabled="isNavForwardDisabled()">
<span class="p-galleria-item-next-icon pi pi-chevron-right"></span>
</button>
<div v-if="templates['caption']" class="p-galleria-caption">
<component v-if="templates.caption" :is="templates.caption" :item="activeItem" />
</div>
2022-09-06 12:03:37 +00:00
</div>
2022-09-14 11:26:01 +00:00
<ul v-if="showIndicators" class="p-galleria-indicators p-reset">
<li
v-for="(item, index) of value"
:key="`p-galleria-indicator-${index}`"
tabindex="0"
@click="onIndicatorClick(index)"
@mouseenter="onIndicatorMouseEnter(index)"
@keydown.enter="onIndicatorKeyDown(index)"
:class="['p-galleria-indicator', { 'p-highlight': isIndicatorItemActive(index) }]"
>
<button v-if="!templates['indicator']" type="button" tabindex="-1" class="p-link"></button>
<component v-if="templates.indicator" :is="templates.indicator" :index="index" />
</li>
</ul>
2022-09-06 12:03:37 +00:00
</div>
</template>
<script>
import Ripple from 'primevue/ripple';
export default {
name: 'GalleriaItem',
emits: ['start-slideshow', 'stop-slideshow', 'update:activeIndex'],
props: {
circular: {
type: Boolean,
default: false
},
activeIndex: {
type: Number,
default: 0
},
value: {
type: Array,
default: null
},
showItemNavigators: {
type: Boolean,
default: true
},
showIndicators: {
type: Boolean,
default: true
},
slideShowActive: {
type: Boolean,
default: true
},
changeItemOnIndicatorHover: {
type: Boolean,
default: true
},
autoPlay: {
type: Boolean,
default: false
},
templates: {
type: null,
default: null
}
},
mounted() {
if (this.autoPlay) {
this.$emit('start-slideshow');
}
},
methods: {
next() {
let nextItemIndex = this.activeIndex + 1;
2022-09-14 11:26:01 +00:00
let activeIndex = this.circular && this.value.length - 1 === this.activeIndex ? 0 : nextItemIndex;
2022-09-06 12:03:37 +00:00
this.$emit('update:activeIndex', activeIndex);
},
prev() {
let prevItemIndex = this.activeIndex !== 0 ? this.activeIndex - 1 : 0;
2022-09-14 11:26:01 +00:00
let activeIndex = this.circular && this.activeIndex === 0 ? this.value.length - 1 : prevItemIndex;
2022-09-06 12:03:37 +00:00
this.$emit('update:activeIndex', activeIndex);
},
stopSlideShow() {
if (this.slideShowActive && this.stopSlideShow) {
this.$emit('stop-slideshow');
}
},
navBackward(e) {
this.stopSlideShow();
this.prev();
if (e && e.cancelable) {
e.preventDefault();
}
},
navForward(e) {
this.stopSlideShow();
this.next();
if (e && e.cancelable) {
e.preventDefault();
}
},
onIndicatorClick(index) {
this.stopSlideShow();
this.$emit('update:activeIndex', index);
},
onIndicatorMouseEnter(index) {
if (this.changeItemOnIndicatorHover) {
this.stopSlideShow();
this.$emit('update:activeIndex', index);
}
},
onIndicatorKeyDown(index) {
this.stopSlideShow();
this.$emit('update:activeIndex', index);
},
isIndicatorItemActive(index) {
return this.activeIndex === index;
},
isNavBackwardDisabled() {
return !this.circular && this.activeIndex === 0;
},
isNavForwardDisabled() {
2022-09-14 11:26:01 +00:00
return !this.circular && this.activeIndex === this.value.length - 1;
2022-09-06 12:03:37 +00:00
}
},
computed: {
activeItem() {
return this.value[this.activeIndex];
},
navBackwardClass() {
2022-09-14 11:26:01 +00:00
return [
'p-galleria-item-prev p-galleria-item-nav p-link',
{
'p-disabled': this.isNavBackwardDisabled()
}
];
2022-09-06 12:03:37 +00:00
},
navForwardClass() {
2022-09-14 11:26:01 +00:00
return [
'p-galleria-item-next p-galleria-item-nav p-link',
{
'p-disabled': this.isNavForwardDisabled()
}
];
2022-09-06 12:03:37 +00:00
}
},
directives: {
2022-09-14 11:26:01 +00:00
ripple: Ripple
2022-09-06 12:03:37 +00:00
}
};
</script>