pull/104/head
cagataycivici 2019-10-21 17:57:41 +03:00
commit 67a8b4e7b1
3 changed files with 438 additions and 125 deletions

View File

@ -1,51 +1,76 @@
<template> <template>
<div :id="id" :class="containerClass"> <div :id="id" :class="containerClass">
<div :class="contentClasses">
<button :class="['p-carousel-prev p-link', {'p-disabled': d_activeIndex === 0}]" :disabled="d_activeIndex === 0" @click="navBackward">
<span class="p-carousel-prev-icon pi pi-chevron-left"></span>
</button>
<div class="p-carousel-container" :style="[{'height': isVertical() ? verticalContentHeight : 'auto'}]">
<div class="p-carousel-header" v-if="$scopedSlots.header"> <div class="p-carousel-header" v-if="$scopedSlots.header">
<slot name="header"></slot> <slot name="header"></slot>
</div> </div>
<div ref="itemsContainer" class="p-carousel-items" @touchend="onTouchEnd" @touchstart="onTouchStart" @touchmove="onTouchMove"> <div :class="contentClasses">
<div class="p-carousel-container">
<button :class="['p-carousel-prev p-button', {'p-disabled': backwardIsDisabled}]" :disabled="backwardIsDisabled" @click="navBackward">
<span :class="['p-carousel-prev-icon pi', {'pi-chevron-left': !isVertical(),'pi-chevron-up': isVertical()}]"></span>
</button>
<div class="p-carousel-items-content" :style="[{'height': isVertical() ? verticalViewPortHeight : 'auto'}]">
<div ref="itemsContainer" class="p-carousel-items-container"
@transitionend="onTransitionEnd" @touchend="onTouchEnd" @touchstart="onTouchStart" @touchmove="onTouchMove">
<!--<CarouselItem v-bind="{ scopedSlots: $scopedSlots }" :value="value" :start="firstIndex()" :end="lastIndex()" v-if="$scopedSlots.item"></CarouselItem>-->
<template v-if="isCircular()">
<div v-for="(item, index) of value.slice(-1 * d_numVisible)" :key="index + '_scloned'" :class="['p-carousel-item p-carousel-item-cloned',
{'p-carousel-item-active': (totalShiftedItems * -1) === (value.length + d_numVisible),
'p-carousel-item-start': 0 === index,
'p-carousel-item-end': value.slice(-1 * d_numVisible).length - 1 === index}]">
<slot name="item" :data="item" :index="index"></slot>
</div>
</template>
<div v-for="(item, index) of value" :key="index" :class="['p-carousel-item', <div v-for="(item, index) of value" :key="index" :class="['p-carousel-item',
{'p-carousel-item-active': firstIndex() <= index && lastIndex() >= index, {'p-carousel-item-active': firstIndex() <= index && lastIndex() >= index,
'p-carousel-item-start': firstIndex() === index, 'p-carousel-item-start': firstIndex() === index,
'p-carousel-item-end': lastIndex() === index}]"> 'p-carousel-item-end': lastIndex() === index}]">
<slot name="item" :data="item" :index="index"></slot> <slot name="item" :data="item" :index="index"></slot>
</div> </div>
<template v-if="isCircular()">
<div v-for="(item, index) of value.slice(0, d_numVisible)" :key="index + '_fcloned'" :class="['p-carousel-item p-carousel-item-cloned',
{'p-carousel-item-active': totalShiftedItems === 0,
'p-carousel-item-start': 0 === index,
'p-carousel-item-end': value.slice(0, d_numVisible).length - 1 === index}]">
<slot name="item" :data="item" :index="index"></slot>
</div>
</template>
</div>
</div>
<button :class="['p-carousel-next p-button', {'p-disabled': forwardIsDisabled}]" :disabled="forwardIsDisabled" @click="navForward">
<span :class="['p-carousel-prev-icon pi', {'pi-chevron-right': !isVertical(),'pi-chevron-down': isVertical()}]"></span>
</button>
</div>
<ul :class="dotsContentClasses">
<li v-for="(totalDot, i) of totalDots" :key="'p-carousel-dot-' + i" :class="['p-carousel-dot-item', {'p-highlight': d_page === i}]">
<button class="p-link" @click="onDotClick($event, i)">
<span :class="['p-carousel-dot-icon pi', {'pi-circle-on': d_page === i, 'pi-circle-off': !(d_page === i)}]"></span>
</button>
</li>
</ul>
</div> </div>
<div class="p-carousel-footer" v-if="$scopedSlots.footer"> <div class="p-carousel-footer" v-if="$scopedSlots.footer">
<slot name="footer"></slot> <slot name="footer"></slot>
</div> </div>
</div> </div>
<button :class="['p-carousel-next p-link', {'p-disabled': d_activeIndex === totalDots-1}]" :disabled="d_activeIndex === totalDots-1" @click="navForward">
<span class="p-carousel-next-icon pi pi-chevron-right"></span>
</button>
</div>
<ul :class="dotsContentClasses">
<li v-for="(totalDot, i) of totalDots" :key="'p-carousel-dot-' + i" :class="['p-carousel-dot-item', {'p-highlight': d_activeIndex === i}]">
<button class="p-link" @click="onDotClick($event, i)">
<span :class="['p-carousel-dot-icon pi', {'pi-circle-on': d_activeIndex === i, 'pi-circle-off': !(d_activeIndex === i)}]"></span>
</button>
</li>
</ul>
</div>
</template> </template>
<script> <script>
import UniqueComponentId from '../utils/UniqueComponentId'; import UniqueComponentId from '../utils/UniqueComponentId';
import DomHandler from '../utils/DomHandler';
import CarouselItem from "../carouselitem/CarouselItem";
export default { export default {
components: {CarouselItem},
props: { props: {
value: null, value: null,
activeIndex: { page: {
type: Number, type: Number,
default: 0 default: 0
}, },
header: null, //header: null,
footer: null, //footer: null,
numVisible: { numVisible: {
type: Number, type: Number,
default: 1 default: 1
@ -54,17 +79,25 @@ export default {
type: Number, type: Number,
default: 1 default: 1
}, },
responsive: Array, responsiveOptions: Array,
orientation: { orientation: {
type: String, type: String,
default: 'horizontal' default: 'horizontal'
}, },
verticalContentHeight: { verticalViewPortHeight: {
type: String, type: String,
default: '300px' default: '300px'
}, },
contentClass: String, contentClass: String,
dotsContentClass: String dotsContentClass: String,
circular: {
type: Boolean,
default: false
},
autoplayInterval: {
type: Number,
default:0
}
}, },
data() { data() {
return { return {
@ -72,30 +105,47 @@ export default {
d_numVisible: this.numVisible, d_numVisible: this.numVisible,
d_numScroll: this.numScroll, d_numScroll: this.numScroll,
d_oldNumScroll: 0, d_oldNumScroll: 0,
d_activeIndex: this.activeIndex, d_oldNumVisible: 0,
totalShiftedItems: this.activeIndex * this.numScroll * -1, d_oldValue: null,
id : UniqueComponentId() d_page: this.page,
totalShiftedItems: this.page * this.numScroll * -1,
id : UniqueComponentId(),
allowAutoplay : !!this.autoplayInterval,
d_circular : this.circular || this.allowAutoplay
} }
}, },
isRemainingItemsAdded: false, isRemainingItemsAdded: false,
watch: { watch: {
activeIndex(newValue) { page(newValue) {
this.d_activeIndex = newValue; this.d_page = newValue;
}, },
numVisible(newValue) { circular(newValue) {
this.d_circular = newValue;
},
numVisible(newValue, oldValue) {
this.d_numVisible = newValue; this.d_numVisible = newValue;
this.d_oldNumVisible = oldValue;
}, },
numScroll(newValue, oldValue) { numScroll(newValue, oldValue) {
this.d_oldNumScroll = oldValue; this.d_oldNumScroll = oldValue;
this.d_numScroll = newValue; this.d_numScroll = newValue;
},
value(oldValue) {
this.d_oldValue =oldValue;
} }
}, },
methods: { methods: {
step(event, dir, index) { step(dir, page) {
let totalShiftedItems = this.totalShiftedItems; let totalShiftedItems = this.totalShiftedItems;
const isCircular = this.isCircular();
if (page != null) {
totalShiftedItems = (this.d_numScroll * page) * -1;
if (isCircular) {
totalShiftedItems -= this.d_numVisible;
}
if (index != null) {
totalShiftedItems = (this.d_numScroll * index) * -1;
this.isRemainingItemsAdded = false; this.isRemainingItemsAdded = false;
} }
else { else {
@ -105,94 +155,113 @@ export default {
this.isRemainingItemsAdded = false; this.isRemainingItemsAdded = false;
} }
index = Math.abs(parseInt(totalShiftedItems / this.d_numScroll, 10)); let originalShiftedItems = isCircular ? (totalShiftedItems + this.d_numVisible) : totalShiftedItems;
page = Math.abs(Math.floor(originalShiftedItems / this.d_numScroll));
} }
if (index === (this.totalDots - 1) && this.remainingItems > 0) { if (isCircular && this.d_page === (this.totalDots - 1) && dir === -1) {
totalShiftedItems = -1 * (this.value.length + this.d_numVisible);
page = 0;
}
else if (isCircular && this.d_page === 0 && dir === 1) {
totalShiftedItems = 0;
page = (this.totalDots - 1);
}
else if (page === (this.totalDots - 1) && this.remainingItems > 0) {
totalShiftedItems += ((this.remainingItems * -1) - (this.d_numScroll * dir)); totalShiftedItems += ((this.remainingItems * -1) - (this.d_numScroll * dir));
this.isRemainingItemsAdded = true; this.isRemainingItemsAdded = true;
} }
if (this.$refs.itemsContainer) { if (this.$refs.itemsContainer) {
DomHandler.removeClass(this.$refs.itemsContainer, 'p-items-hidden');
this.$refs.itemsContainer.style.transform = this.isVertical() ? `translate3d(0, ${totalShiftedItems * (100/ this.d_numVisible)}%, 0)` : `translate3d(${totalShiftedItems * (100/ this.d_numVisible)}%, 0, 0)`; this.$refs.itemsContainer.style.transform = this.isVertical() ? `translate3d(0, ${totalShiftedItems * (100/ this.d_numVisible)}%, 0)` : `translate3d(${totalShiftedItems * (100/ this.d_numVisible)}%, 0, 0)`;
this.$refs.itemsContainer.style.transition = 'transform 500ms ease 0s'; this.$refs.itemsContainer.style.transition = 'transform 500ms ease 0s';
if (this.animationTimeout) {
clearTimeout(this.animationTimeout);
}
this.animationTimeout = setTimeout(() => {
if (this.$refs.itemsContainer) {
this.$refs.itemsContainer.style.transition = '';
}
}, 500);
} }
this.totalShiftedItems = totalShiftedItems; this.totalShiftedItems = totalShiftedItems;
this.$emit('update:activeIndex', index); this.$emit('update:page', page);
this.d_activeIndex = index; this.d_page = page;
}, },
calculatePosition() { calculatePosition() {
if (this.$refs.itemsContainer && this.responsive) { if (this.$refs.itemsContainer && this.responsiveOptions) {
let windowWidth = window.innerWidth; let windowWidth = window.innerWidth;
let matchedResponsiveData = { let matchedResponsiveOptionsData = {
numVisible: this.numVisible, numVisible: this.numVisible,
numScroll: this.numScroll numScroll: this.numScroll
}; };
for (let i = 0; i < this.responsive.length; i++) { for (let i = 0; i < this.responsiveOptions.length; i++) {
let res = this.responsive[i]; let res = this.responsiveOptions[i];
if (parseInt(res.breakpoint, 10) >= windowWidth) { if (parseInt(res.breakpoint, 10) >= windowWidth) {
matchedResponsiveData = res; matchedResponsiveOptionsData = res;
} }
} }
if (this.d_numScroll !== matchedResponsiveData.numScroll) { if (this.d_numScroll !== matchedResponsiveOptionsData.numScroll) {
let activeIndex = this.d_activeIndex; let page = this.d_page;
activeIndex = parseInt((activeIndex * this.d_numScroll) / matchedResponsiveData.numScroll); page = parseInt((page * this.d_numScroll) / matchedResponsiveOptionsData.numScroll);
this.totalShiftedItems = (matchedResponsiveData.numScroll * activeIndex) * -1; this.totalShiftedItems = (matchedResponsiveOptionsData.numScroll * page) * -1;
this.d_numScroll = matchedResponsiveData.numScroll;
this.$emit('update:activeIndex', activeIndex); if (this.isCircular()) {
this.d_activeIndex = activeIndex; this.totalShiftedItems -= matchedResponsiveOptionsData.numVisible;
} }
if (this.d_numVisible !== matchedResponsiveData.numVisible) { this.d_numScroll = matchedResponsiveOptionsData.numScroll;
this.d_numVisible = matchedResponsiveData.numVisible;
this.$emit('update:page', page);
this.d_page = page;
}
if (this.d_numVisible !== matchedResponsiveOptionsData.numVisible) {
this.d_numVisible = matchedResponsiveOptionsData.numVisible;
} }
} }
}, },
navBackward(e,index){ navBackward(e,index){
if (this.d_activeIndex !== 0) { if (this.d_circular || this.d_page !== 0) {
this.step(e, 1, index); this.step(1, index);
} }
this.allowAutoplay = false;
if (e.cancelable) { if (e.cancelable) {
e.preventDefault(); e.preventDefault();
} }
}, },
navForward(e,index){ navForward(e,index){
if (this.d_activeIndex < (this.totalDots - 1)) { if (this.d_circular || this.d_page < (this.totalDots - 1)) {
this.step(e, -1, index); this.step(-1, index);
} }
this.allowAutoplay = false;
if (e.cancelable) { if (e.cancelable) {
e.preventDefault(); e.preventDefault();
} }
}, },
onDotClick(e, index) { onDotClick(e, index) {
let activeIndex = this.d_activeIndex; let page = this.d_page;
if (index > activeIndex) { if (index > page) {
this.navForward(e, index); this.navForward(e, index);
} }
else if (index < activeIndex) { else if (index < page) {
this.navBackward(e, index); this.navBackward(e, index);
} }
}, },
onTransitionEnd() {
if (this.$refs.itemsContainer) {
DomHandler.addClass(this.$refs.itemsContainer, 'p-items-hidden');
this.$refs.itemsContainer.style.transition = '';
if ((this.d_page === 0 || this.d_page === (this.totalDots - 1)) && this.isCircular()) {
this.$refs.itemsContainer.style.transform = this.isVertical() ? `translate3d(0, ${this.totalShiftedItems * (100/ this.d_numVisible)}%, 0)` : `translate3d(${this.totalShiftedItems * (100/ this.d_numVisible)}%, 0, 0)`;
}
}
},
onTouchStart(e) { onTouchStart(e) {
let touchobj = e.changedTouches[0]; let touchobj = e.changedTouches[0];
@ -239,6 +308,22 @@ export default {
this.documentResizeListener = null; this.documentResizeListener = null;
} }
}, },
startAutoplay() {
this.interval = setInterval(() => {
if(this.d_page === (this.totalDots - 1)) {
this.step(-1, 0);
}
else {
this.step(-1, this.d_page + 1);
}
},
this.autoplayInterval);
},
stopAutoplay() {
if (this.interval) {
clearInterval(this.interval);
}
},
createStyle() { createStyle() {
if (!this.carouselStyle) { if (!this.carouselStyle) {
this.carouselStyle = document.createElement('style'); this.carouselStyle = document.createElement('style');
@ -252,8 +337,8 @@ export default {
} }
`; `;
if (this.responsive) { if (this.responsiveOptions) {
this.responsive.sort((data1, data2) => { this.responsiveOptions.sort((data1, data2) => {
const value1 = data1.breakpoint; const value1 = data1.breakpoint;
const value2 = data2.breakpoint; const value2 = data2.breakpoint;
let result = null; let result = null;
@ -272,8 +357,8 @@ export default {
return -1 * result; return -1 * result;
}); });
for (let i = 0; i < this.responsive.length; i++) { for (let i = 0; i < this.responsiveOptions.length; i++) {
let res = this.responsive[i]; let res = this.responsiveOptions[i];
innerHTML += ` innerHTML += `
@media screen and (max-width: ${res.breakpoint}) { @media screen and (max-width: ${res.breakpoint}) {
@ -290,61 +375,124 @@ export default {
isVertical() { isVertical() {
return this.orientation === 'vertical'; return this.orientation === 'vertical';
}, },
isCircular() {
return this.value && this.d_circular && this.value.length >= this.d_numVisible;
},
isAutoplay() {
return this.autoplayInterval && this.allowAutoplay;
},
firstIndex() { firstIndex() {
return (this.totalShiftedItems * -1); return this.isCircular()? (-1 * (this.totalShiftedItems + this.d_numVisible)) : (this.totalShiftedItems * -1);
}, },
lastIndex() { lastIndex() {
return (this.totalShiftedItems * -1) + this.d_numVisible - 1; return (this.firstIndex() + this.d_numVisible - 1);
} }
}, },
mounted() { mounted() {
this.createStyle(); this.createStyle();
this.calculatePosition(); this.calculatePosition();
if (this.responsive) { if (this.responsiveOptions) {
this.bindDocumentListeners(); this.bindDocumentListeners();
} }
}, },
updated() { updated() {
if(this.d_oldNumScroll !== this.d_numScroll) { const isCircular = this.isCircular();
let stateChanged = false;
let totalShiftedItems = this.totalShiftedItems;
if (this.autoplayInterval) {
this.stopAutoplay();
}
if(this.d_oldNumScroll !== this.d_numScroll || this.d_oldNumVisible !== this.d_numVisible || this.d_oldValue.length !== this.value.length) {
this.remainingItems = (this.value.length - this.d_numVisible) % this.d_numScroll; this.remainingItems = (this.value.length - this.d_numVisible) % this.d_numScroll;
let totalShiftedItems = this.totalShiftedItems; let page = this.d_page;
let activeIndex = this.d_activeIndex; if (this.totalDots !== 0 && page >= this.totalDots) {
page = this.totalDots - 1;
if (activeIndex === (this.totalDots - 1) && this.remainingItems > 0) { this.$emit('update:page', page);
stateChanged = true;
}
totalShiftedItems = (page * this.d_numScroll) * -1;
if (isCircular) {
totalShiftedItems -= this.d_numVisible;
}
if (page === (this.totalDots - 1) && this.remainingItems > 0) {
totalShiftedItems += (-1 * this.remainingItems) + this.d_numScroll; totalShiftedItems += (-1 * this.remainingItems) + this.d_numScroll;
this.totalShiftedItems = totalShiftedItems;
this.isRemainingItemsAdded = true; this.isRemainingItemsAdded = true;
} }
else { else {
this.isRemainingItemsAdded = false; this.isRemainingItemsAdded = false;
} }
if (totalShiftedItems !== this.totalShiftedItems) {
this.totalShiftedItems = totalShiftedItems;
stateChanged = true;
}
this.d_oldNumScroll = this.d_numScroll; this.d_oldNumScroll = this.d_numScroll;
this.$refs.itemsContainer.style.transform = this.isVertical() ? `translate3d(0, ${totalShiftedItems * (100/ this.d_numVisible)}%, 0)` : `translate3d(${totalShiftedItems * (100/ this.d_numVisible)}%, 0, 0)`; this.$refs.itemsContainer.style.transform = this.isVertical() ? `translate3d(0, ${totalShiftedItems * (100/ this.d_numVisible)}%, 0)` : `translate3d(${totalShiftedItems * (100/ this.d_numVisible)}%, 0, 0)`;
} }
if (isCircular) {
if (this.d_page === 0) {
totalShiftedItems = -1 * this.d_numVisible;
}
else if (totalShiftedItems === 0) {
totalShiftedItems = -1 * this.value.length;
if (this.remainingItems > 0) {
this.isRemainingItemsAdded = true;
}
}
if (totalShiftedItems !== this.totalShiftedItems) {
this.totalShiftedItems = totalShiftedItems;
stateChanged = true;
}
}
if (!stateChanged && this.isAutoplay()) {
this.startAutoplay();
}
}, },
beforeDestroy() { beforeDestroy() {
if (this.responsive) { if (this.responsiveOptions) {
this.unbindDocumentListeners(); this.unbindDocumentListeners();
} }
if (this.autoplayInterval) {
this.stopAutoplay();
}
}, },
computed: { computed: {
totalDots() { totalDots() {
return this.value ? Math.ceil((this.value.length - this.d_numVisible) / this.d_numScroll) + 1 : 0; return this.value ? Math.ceil((this.value.length - this.d_numVisible) / this.d_numScroll) + 1 : 0;
}, },
backwardIsDisabled() {
return (this.value && (!this.circular || this.value.length < this.d_numVisible) && this.d_page === 0);
},
forwardIsDisabled() {
return (this.value && (!this.circular || this.value.length < this.d_numVisible) && (this.d_page === (this.totalDots - 1) || this.totalDots === 0));
},
containerClass() { containerClass() {
return ['p-carousel p-component', { return ['p-carousel p-component', {
'p-carousel-vertical': this.isVertical() 'p-carousel-vertical': this.isVertical(),
'p-carousel-horizontal': !this.isVertical()
}]; }];
}, },
contentClasses() { contentClasses() {
return ['p-carousel-content ', this.contentClass]; return ['p-carousel-content ', this.contentClass];
}, },
dotsContentClasses() { dotsContentClasses() {
return ['p-carousel-dots-content p-reset', this.dotsContentClass]; return ['p-carousel-dots-container p-reset', this.dotsContentClass];
}, },
}, },
name: "Carousel" name: "Carousel"
@ -360,93 +508,88 @@ export default {
.p-carousel-content { .p-carousel-content {
display: flex; display: flex;
flex-direction: row; flex-direction: column;
flex-wrap: nowrap; flex-wrap: nowrap;
overflow: auto; overflow: auto;
padding: .5em; padding: 0 .5em;
} }
.p-carousel-prev.p-link, .p-carousel-prev,
.p-carousel-next.p-link { .p-carousel-next {
align-self: center; align-self: center;
text-align: center; text-align: center;
flex-grow: 0; flex-grow: 0;
flex-shrink: 0; flex-shrink: 0;
width: 2.5em; width: 2.5em;
height: 2.5em; height: 2.5em;
position: relative;
} }
.p-carousel-prev span, .p-carousel-prev span,
.p-carousel-next span { .p-carousel-next span {
display: block; width: 100%;
position: absolute; display: flex;
left: 50%; justify-content: center;
top: 50%; align-items: center;
margin-top: -.45em;
margin-left: -.45em;
}
.p-carousel-prev span {
margin-left: -.5em;
} }
.p-carousel-container { .p-carousel-container {
display: flex; display: flex;
flex-direction: column; flex-direction: row;
overflow: hidden;
padding: 0 .1em; padding: 0 .1em;
}
.p-carousel-items-content {
overflow: hidden;
width: 100%; width: 100%;
} }
.p-carousel-header, .p-carousel-header,
.p-carousel-footer { .p-carousel-footer {
padding: .5em; padding: 0 .5em;
z-index: 1; z-index: 1;
} }
.p-carousel-items { .p-carousel-items-container {
display: flex; display: flex;
flex-wrap: nowrap; flex-wrap: nowrap;
flex-direction: row; flex-direction: row;
} }
.p-carousel-items .p-carousel-item { .p-carousel-items-container .p-carousel-item {
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
overflow: auto; overflow: auto;
visibility: hidden;
transition: visibility 1s;
} }
.p-carousel-items .p-carousel-item.p-carousel-item-active { .p-carousel-dots-container {
visibility: visible;
}
.p-carousel-dots-content {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
justify-content: center; justify-content: center;
flex-wrap: wrap;
margin: .5em; margin: .5em;
} }
/* Vertical */ /* Vertical */
.p-carousel-vertical .p-carousel-content { .p-carousel-vertical .p-carousel-container {
flex-direction: column; flex-direction: column;
flex-basis: 100%; width: 100%;
} }
.p-carousel-vertical .p-carousel-prev, .p-carousel-vertical .p-carousel-items-container {
.p-carousel-vertical .p-carousel-next {
transform: rotate(90deg);
}
.p-carousel-vertical .p-carousel-items {
flex-direction: column; flex-direction: column;
height: 100%; height: 100%;
} }
.p-carousel-vertical .p-carousel-dots-content { .p-carousel-vertical .p-carousel-dots-container {
margin: .75em 0; margin: .75em 0;
} }
/* Keyboard Support */
.p-items-hidden .p-carousel-item {
visibility: hidden;
}
.p-items-hidden .p-carousel-item.p-carousel-item-active {
visibility: visible;
}
</style> </style>

View File

@ -56,6 +56,11 @@ export default new Router({
name: 'card', name: 'card',
component: () => import('./views/card/CardDemo.vue') component: () => import('./views/card/CardDemo.vue')
}, },
{
path: '/carousel',
name: 'carousel',
component: () => import('./views/carousel/CarouselDemo.vue')
},
{ {
path: '/chart', path: '/chart',
name: 'chart', name: 'chart',

View File

@ -0,0 +1,165 @@
<template>
<div class="carousel-demo">
<div class="content-section introduction">
<div class="feature-intro">
<h1>Carousel</h1>
<p>Carousel.</p>
</div>
</div>
<div class="content-section implementation">
<Carousel :value="cars" :numVisible="4" :numScroll="3" :responsiveOptions="responsiveOptions">
<template #header>
<h2>Basic</h2>
</template>
<template #item="slotProps">
<div class="car-details">
<div class="p-grid p-nogutter">
<div class="p-col-12">
<img :src="'demo/images/car/' + slotProps.data.brand + '.png'" :alt="slotProps.data.brand" />
</div>
<div class="p-col-12 car-data">
<div class="car-title">{{slotProps.data.brand}}</div>
<div class="car-subtitle">{{slotProps.data.year}} | {{slotProps.data.color}}</div>
<div class="car-buttons">
<Button icon="pi pi-search" class="p-button-secondary" />
<Button icon="pi pi-star" class="p-button-secondary" />
<Button icon="pi pi-cog" class="p-button-secondary" />
</div>
</div>
</div>
</div>
</template>
</Carousel>
<Carousel :value="cars" :numVisible="3" :numScroll="1" :responsiveOptions="responsiveOptions" class="custom-carousel" :circular="true" :autoplayInterval="3000">
<template #header>
<h2>Circular, AutoPlay, 3 Items per Page and Scroll by 1</h2>
</template>
<template #item="slotProps">
<div class="car-details">
<div class="p-grid p-nogutter">
<div class="p-col-12">
<img :src="'demo/images/car/' + slotProps.data.brand + '.png'" :alt="slotProps.data.brand" />
</div>
<div class="p-col-12 car-data">
<div class="car-title">{{slotProps.data.brand}}</div>
<div class="car-subtitle">{{slotProps.data.year}} | {{slotProps.data.color}}</div>
<div class="car-buttons">
<Button icon="pi pi-search" class="p-button-secondary" />
<Button icon="pi pi-star" class="p-button-secondary" />
<Button icon="pi pi-cog" class="p-button-secondary" />
</div>
</div>
</div>
</div>
</template>
</Carousel>
<Carousel :value="cars" :numVisible="1" :numScroll="1" orientation="vertical" :responsiveOptions="responsiveOptions" verticalViewPortHeight="330px"
style="max-width: 400px; margin-top: 2em">
<template #header>
<h2>Vertical</h2>
</template>
<template #item="slotProps">
<div class="car-details">
<div class="p-grid p-nogutter">
<div class="p-col-12">
<img :src="'demo/images/car/' + slotProps.data.brand + '.png'" :alt="slotProps.data.brand" />
</div>
<div class="p-col-12 car-data">
<div class="car-title">{{slotProps.data.brand}}</div>
<div class="car-subtitle">{{slotProps.data.year}} | {{slotProps.data.color}}</div>
<div class="car-buttons">
<Button icon="pi pi-search" class="p-button-secondary" />
<Button icon="pi pi-star" class="p-button-secondary" />
<Button icon="pi pi-cog" class="p-button-secondary" />
</div>
</div>
</div>
</div>
</template>
</Carousel>
</div>
</div>
</template>
<script>
import CarService from "../../service/CarService";
export default {
data() {
return {
cars: null,
responsiveOptions: [
{
breakpoint: '1024px',
numVisible: 3,
numScroll: 3
},
{
breakpoint: '600px',
numVisible: 2,
numScroll: 2
},
{
breakpoint: '480px',
numVisible: 1,
numScroll: 1
}
]
}
},
carService: null,
created() {
this.carService = new CarService();
},
mounted() {
this.carService.getCarsSmall().then(data => this.cars = data);
},
name: "CarouselDemo",
}
</script>
<style>
.carousel-demo .p-carousel .p-carousel-content .p-carousel-item .car-details > .p-grid {
border: 1px solid #b3c2ca;
border-radius: 3px;
margin: .3em;
text-align: center;
padding: 2em 0 2.25em 0;
}
.carousel-demo .p-carousel .p-carousel-content .p-carousel-item .car-data .car-title {
font-weight: 700;
font-size: 20px;
margin-top: 24px;
}
.carousel-demo .p-carousel .p-carousel-content .p-carousel-item .car-data .car-subtitle {
margin: .25em 0 2em 0;
}
.carousel-demo .p-carousel .p-carousel-content .p-carousel-item .car-data button {
margin-left: .5em;
}
.carousel-demo .p-carousel .p-carousel-content .p-carousel-item .car-data button:first-child {
margin-left: 0;
}
.carousel-demo .p-carousel.custom-carousel .p-carousel-dot-icon {
width: 16px !important;
height: 16px !important;
border-radius: 50%;
}
.carousel-demo .p-carousel.p-carousel-horizontal .p-carousel-content .p-carousel-item.p-carousel-item-start .car-details > .p-grid {
margin-left: .6em;
}
.carousel-demo .p-carousel.p-carousel-horizontal .p-carousel-content .p-carousel-item.p-carousel-item-end .car-details > .p-grid {
margin-right: .6em;
}
</style>