Carousel pt demo added
parent
b7987d7e94
commit
eab81766e0
|
@ -0,0 +1,281 @@
|
||||||
|
<template>
|
||||||
|
<DocSectionText v-bind="$attrs"></DocSectionText>
|
||||||
|
<div class="card">
|
||||||
|
<Carousel
|
||||||
|
:value="products"
|
||||||
|
:numVisible="3"
|
||||||
|
:numScroll="3"
|
||||||
|
:responsiveOptions="responsiveOptions"
|
||||||
|
:pt="{
|
||||||
|
indicatorButton: { class: 'border-round-lg' }
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<template #item="slotProps">
|
||||||
|
<div class="border-1 surface-border border-round m-2 text-center py-5 px-3">
|
||||||
|
<div class="mb-3">
|
||||||
|
<img :src="'https://primefaces.org/cdn/primevue/images/product/' + slotProps.data.image" :alt="slotProps.data.name" class="w-6 shadow-2" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 class="mb-1">{{ slotProps.data.name }}</h4>
|
||||||
|
<h6 class="mt-0 mb-3">${{ slotProps.data.price }}</h6>
|
||||||
|
<Tag :value="slotProps.data.inventoryStatus" :severity="getSeverity(slotProps.data.inventoryStatus)" />
|
||||||
|
<div class="mt-5">
|
||||||
|
<Button icon="pi pi-search" rounded class="mr-2" />
|
||||||
|
<Button icon="pi pi-star-fill" rounded severity="success" class="mr-2" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</Carousel>
|
||||||
|
</div>
|
||||||
|
<DocSectionCode :code="code" :service="['ProductService']" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ProductService } from '@/service/ProductService';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
products: null,
|
||||||
|
responsiveOptions: [
|
||||||
|
{
|
||||||
|
breakpoint: '1199px',
|
||||||
|
numVisible: 3,
|
||||||
|
numScroll: 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
breakpoint: '991px',
|
||||||
|
numVisible: 2,
|
||||||
|
numScroll: 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
breakpoint: '767px',
|
||||||
|
numVisible: 1,
|
||||||
|
numScroll: 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
code: {
|
||||||
|
basic: `
|
||||||
|
<Carousel
|
||||||
|
:value="products"
|
||||||
|
:numVisible="3"
|
||||||
|
:numScroll="3"
|
||||||
|
:responsiveOptions="responsiveOptions"
|
||||||
|
:pt="{
|
||||||
|
indicatorButton: { class: 'border-round-lg' }
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<template #item="slotProps">
|
||||||
|
<div class="border-1 surface-border border-round m-2 text-center py-5 px-3">
|
||||||
|
<div class="mb-3">
|
||||||
|
<img :src="'https://primefaces.org/cdn/primevue/images/product/' + slotProps.data.image" :alt="slotProps.data.name" class="w-6 shadow-2" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 class="mb-1">{{ slotProps.data.name }}</h4>
|
||||||
|
<h6 class="mt-0 mb-3">\${{ slotProps.data.price }}</h6>
|
||||||
|
<Tag :value="slotProps.data.inventoryStatus" :severity="getSeverity(slotProps.data.inventoryStatus)" />
|
||||||
|
<div class="mt-5">
|
||||||
|
<Button icon="pi pi-search" rounded class="mr-2" />
|
||||||
|
<Button icon="pi pi-star-fill" rounded severity="success" class="mr-2" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</Carousel>`,
|
||||||
|
options: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<Carousel
|
||||||
|
:value="products"
|
||||||
|
:numVisible="3"
|
||||||
|
:numScroll="3"
|
||||||
|
:responsiveOptions="responsiveOptions"
|
||||||
|
:pt="{
|
||||||
|
indicatorButton: { class: 'border-round-lg' }
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<template #item="slotProps">
|
||||||
|
<div class="border-1 surface-border border-round m-2 text-center py-5 px-3">
|
||||||
|
<div class="mb-3">
|
||||||
|
<img :src="'https://primefaces.org/cdn/primevue/images/product/' + slotProps.data.image" :alt="slotProps.data.name" class="w-6 shadow-2" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 class="mb-1">{{ slotProps.data.name }}</h4>
|
||||||
|
<h6 class="mt-0 mb-3">\${{ slotProps.data.price }}</h6>
|
||||||
|
<Tag :value="slotProps.data.inventoryStatus" :severity="getSeverity(slotProps.data.inventoryStatus)" />
|
||||||
|
<div class="mt-5">
|
||||||
|
<Button icon="pi pi-search" rounded class="mr-2" />
|
||||||
|
<Button icon="pi pi-star-fill" rounded severity="success" class="mr-2" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</Carousel>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ProductService } from '@/service/ProductService';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
products: null,
|
||||||
|
responsiveOptions: [
|
||||||
|
{
|
||||||
|
breakpoint: '1199px',
|
||||||
|
numVisible: 3,
|
||||||
|
numScroll: 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
breakpoint: '991px',
|
||||||
|
numVisible: 2,
|
||||||
|
numScroll: 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
breakpoint: '767px',
|
||||||
|
numVisible: 1,
|
||||||
|
numScroll: 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
ProductService.getProductsSmall().then((data) => (this.products = data.slice(0, 9)));
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getSeverity(status) {
|
||||||
|
switch (status) {
|
||||||
|
case 'INSTOCK':
|
||||||
|
return 'success';
|
||||||
|
|
||||||
|
case 'LOWSTOCK':
|
||||||
|
return 'warning';
|
||||||
|
|
||||||
|
case 'OUTOFSTOCK':
|
||||||
|
return 'danger';
|
||||||
|
|
||||||
|
default:
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
<\/script>`,
|
||||||
|
composition: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<Carousel
|
||||||
|
:value="products"
|
||||||
|
:numVisible="3"
|
||||||
|
:numScroll="3"
|
||||||
|
:responsiveOptions="responsiveOptions"
|
||||||
|
:pt="{
|
||||||
|
indicatorButton: { class: 'border-round-lg' }
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<template #item="slotProps">
|
||||||
|
<div class="border-1 surface-border border-round m-2 text-center py-5 px-3">
|
||||||
|
<div class="mb-3">
|
||||||
|
<img :src="'https://primefaces.org/cdn/primevue/images/product/' + slotProps.data.image" :alt="slotProps.data.name" class="w-6 shadow-2" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 class="mb-1">{{ slotProps.data.name }}</h4>
|
||||||
|
<h6 class="mt-0 mb-3">\${{ slotProps.data.price }}</h6>
|
||||||
|
<Tag :value="slotProps.data.inventoryStatus" :severity="getSeverity(slotProps.data.inventoryStatus)" />
|
||||||
|
<div class="mt-5">
|
||||||
|
<Button icon="pi pi-search" rounded class="mr-2" />
|
||||||
|
<Button icon="pi pi-star-fill" rounded severity="success" class="mr-2" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</Carousel>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
import { ProductService } from '@/service/ProductService';
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
ProductService.getProductsSmall().then((data) => (products.value = data.slice(0, 9)));
|
||||||
|
})
|
||||||
|
|
||||||
|
const products = ref();
|
||||||
|
const responsiveOptions = ref([
|
||||||
|
{
|
||||||
|
breakpoint: '1199px',
|
||||||
|
numVisible: 3,
|
||||||
|
numScroll: 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
breakpoint: '991px',
|
||||||
|
numVisible: 2,
|
||||||
|
numScroll: 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
breakpoint: '767px',
|
||||||
|
numVisible: 1,
|
||||||
|
numScroll: 1
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|
||||||
|
const getSeverity = (status) => {
|
||||||
|
switch (status) {
|
||||||
|
case 'INSTOCK':
|
||||||
|
return 'success';
|
||||||
|
|
||||||
|
case 'LOWSTOCK':
|
||||||
|
return 'warning';
|
||||||
|
|
||||||
|
case 'OUTOFSTOCK':
|
||||||
|
return 'danger';
|
||||||
|
|
||||||
|
default:
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
<\/script>`,
|
||||||
|
data: `
|
||||||
|
/* ProductService */
|
||||||
|
{
|
||||||
|
id: '1000',
|
||||||
|
code: 'f230fh0g3',
|
||||||
|
name: 'Bamboo Watch',
|
||||||
|
description: 'Product Description',
|
||||||
|
image: 'bamboo-watch.jpg',
|
||||||
|
price: 65,
|
||||||
|
category: 'Accessories',
|
||||||
|
quantity: 24,
|
||||||
|
inventoryStatus: 'INSTOCK',
|
||||||
|
rating: 5
|
||||||
|
},
|
||||||
|
...`
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
ProductService.getProductsSmall().then((data) => (this.products = data.slice(0, 9)));
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getSeverity(status) {
|
||||||
|
switch (status) {
|
||||||
|
case 'INSTOCK':
|
||||||
|
return 'success';
|
||||||
|
|
||||||
|
case 'LOWSTOCK':
|
||||||
|
return 'warning';
|
||||||
|
|
||||||
|
case 'OUTOFSTOCK':
|
||||||
|
return 'danger';
|
||||||
|
|
||||||
|
default:
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -0,0 +1,8 @@
|
||||||
|
<template>
|
||||||
|
<DocSectionText v-bind="$attrs">
|
||||||
|
<p>{{ $attrs.description }}</p>
|
||||||
|
</DocSectionText>
|
||||||
|
<div class="card">
|
||||||
|
<img class="w-full" src="https://primefaces.org/cdn/primevue/images/pt/wireframe-placeholder.jpg" />
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<template>
|
||||||
|
<div class="doc-main">
|
||||||
|
<div class="doc-intro">
|
||||||
|
<h1>Carousel Pass Through</h1>
|
||||||
|
</div>
|
||||||
|
<DocSections :docs="docs" />
|
||||||
|
</div>
|
||||||
|
<DocSectionNav :docs="docs" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||||
|
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||||
|
import PtDoc from './PTDoc.vue';
|
||||||
|
import PTImage from './PTImage.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
docs: [
|
||||||
|
{
|
||||||
|
id: 'pt.image',
|
||||||
|
label: 'Wireframe',
|
||||||
|
component: PTImage
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'pt.doc.carousel',
|
||||||
|
label: 'Carousel PT Options',
|
||||||
|
component: DocApiTable,
|
||||||
|
data: getPTOption('Carousel')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'pt.demo',
|
||||||
|
label: 'Demo',
|
||||||
|
component: PtDoc
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<DocComponent title="Vue Carousel Component" header="Carousel" description="Carousel is a content slider featuring various customization options." :componentDocs="docs" :apiDocs="['Carousel']" />
|
<DocComponent title="Vue Carousel Component" header="Carousel" description="Carousel is a content slider featuring various customization options." :componentDocs="docs" :apiDocs="['Carousel']" :ptTabComponent="ptComponent" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -11,6 +11,8 @@ import NumScrollDoc from '@/doc/carousel/NumScrollDoc';
|
||||||
import ResponsiveDoc from '@/doc/carousel/ResponsiveDoc';
|
import ResponsiveDoc from '@/doc/carousel/ResponsiveDoc';
|
||||||
import StyleDoc from '@/doc/carousel/StyleDoc';
|
import StyleDoc from '@/doc/carousel/StyleDoc';
|
||||||
import VerticalDoc from '@/doc/carousel/VerticalDoc';
|
import VerticalDoc from '@/doc/carousel/VerticalDoc';
|
||||||
|
import PTComponent from '@/doc/carousel/pt/index.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -55,7 +57,8 @@ export default {
|
||||||
label: 'Accessibility',
|
label: 'Accessibility',
|
||||||
component: AccessibilityDoc
|
component: AccessibilityDoc
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
ptComponent: PTComponent
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue