113 lines
4.1 KiB
Vue
113 lines
4.1 KiB
Vue
<script setup>
|
|
import ProductService from '@/layout/service/ProductService';
|
|
import PhotoService from '@/layout/service/PhotoService';
|
|
import { ref, onMounted } from 'vue';
|
|
|
|
const products = ref([]);
|
|
const images = ref([]);
|
|
const galleriaResponsiveOptions = ref([
|
|
{
|
|
breakpoint: '1024px',
|
|
numVisible: 5
|
|
},
|
|
{
|
|
breakpoint: '960px',
|
|
numVisible: 4
|
|
},
|
|
{
|
|
breakpoint: '768px',
|
|
numVisible: 3
|
|
},
|
|
{
|
|
breakpoint: '560px',
|
|
numVisible: 1
|
|
}
|
|
]);
|
|
const carouselResponsiveOptions = ref([
|
|
{
|
|
breakpoint: '1024px',
|
|
numVisible: 3,
|
|
numScroll: 3
|
|
},
|
|
{
|
|
breakpoint: '768px',
|
|
numVisible: 2,
|
|
numScroll: 2
|
|
},
|
|
{
|
|
breakpoint: '560px',
|
|
numVisible: 1,
|
|
numScroll: 1
|
|
}
|
|
]);
|
|
|
|
const productService = new ProductService();
|
|
const photoService = new PhotoService();
|
|
|
|
onMounted(() => {
|
|
productService.getProductsSmall().then((data) => (products.value = data));
|
|
photoService.getImages().then((data) => (images.value = data));
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="grid p-fluid">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<h5>Carousel</h5>
|
|
<Carousel :value="products" :numVisible="3" :numScroll="3" :circular="false" :responsiveOptions="carouselResponsiveOptions">
|
|
<template #item="product">
|
|
<div class="product-item">
|
|
<div class="product-item-content">
|
|
<div class="mb-3">
|
|
<img :src="'/demo/images/product/' + product.data.image" :alt="product.data.name" class="product-image" />
|
|
</div>
|
|
<div>
|
|
<h4 class="mb-1">
|
|
{{ product.data.name }}
|
|
</h4>
|
|
<h6 class="mt-0 mb-3">${{ product.data.price }}</h6>
|
|
<span :class="'product-badge status-' + product.data.inventoryStatus.toLowerCase()">{{ product.data.inventoryStatus }}</span>
|
|
<div class="car-buttons mt-5">
|
|
<Button type="button" class="p-button p-button-rounded mr-2" icon="pi pi-search"></Button>
|
|
<Button type="button" class="p-button-success p-button-rounded mr-2" icon="pi pi-star-fill"></Button>
|
|
<Button type="button" class="p-button-help p-button-rounded" icon="pi pi-cog"></Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</Carousel>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<h5>Galleria</h5>
|
|
<Galleria :value="images" :responsiveOptions="galleriaResponsiveOptions" :numVisible="7" :circular="true" containerStyle="max-width: 800px; margin: auto">
|
|
<template #item="slotProps">
|
|
<img :src="'/' + slotProps.item.itemImageSrc" :alt="slotProps.item.alt" style="width: 100%; display: block" />
|
|
</template>
|
|
<template #thumbnail="slotProps">
|
|
<img :src="'/' + slotProps.item.thumbnailImageSrc" :alt="slotProps.item.alt" tyle="width: 100%; display: block;" />
|
|
</template>
|
|
</Galleria>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<h5>Image</h5>
|
|
<div class="flex justify-content-center">
|
|
<Image src="/demo/images/galleria/galleria11.jpg" alt="Image" width="250" preview />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@/assets/demo/styles/badges.scss';
|
|
@import '@/assets/demo/styles/items.scss';
|
|
</style>
|