primevue-mirror/doc/overlaypanel/DataTableDoc.vue

234 lines
9.6 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>An example that displays a DataTable inside a popup to select an item.</p>
</DocSectionText>
<div class="card flex flex-column align-items-center gap-3">
<Button type="button" icon="pi pi-search" :label="selectedProduct ? selectedProduct.name : 'Select a Product'" @click="toggle" aria-haspopup="true" aria-controls="overlay_panel" />
2024-01-24 10:57:05 +00:00
<div v-if="selectedProduct" class="p-5 surface-card border-round">
2023-02-28 08:29:30 +00:00
<div class="relative">
2023-11-02 06:54:55 +00:00
<img :src="`https://primefaces.org/cdn/primevue/images/product/${selectedProduct.image}`" :alt="selectedProduct.name" class="w-full sm:w-20rem" />
2023-02-28 08:29:30 +00:00
</div>
<div class="flex align-items-center justify-content-between mt-3 mb-2">
2023-11-02 06:54:55 +00:00
<span class="text-900 font-semibold text-xl">{{ selectedProduct.name }}</span>
2023-02-28 08:29:30 +00:00
<span class="text-900 text-xl ml-3">{{ '$' + selectedProduct.price }}</span>
</div>
<span class="text-600">{{ selectedProduct.category }}</span>
</div>
2024-01-24 10:00:53 +00:00
<OverlayPanel ref="op" appendTo="body">
2023-02-28 08:29:30 +00:00
<DataTable v-model:selection="selectedProduct" :value="products" selectionMode="single" :paginator="true" :rows="5" @row-select="onProductSelect">
<Column field="name" header="Name" sortable style="min-width: 12rem"></Column>
<Column header="Image">
<template #body="slotProps">
<img :src="`https://primefaces.org/cdn/primevue/images/product/${slotProps.data.image}`" :alt="slotProps.data.image" class="w-4rem shadow-1" />
</template>
</Column>
<Column field="price" header="Price" sortable style="min-width: 8rem">
2023-11-02 06:54:55 +00:00
<template #body="slotProps"> $ {{ slotProps.data.price }} </template>
2023-02-28 08:29:30 +00:00
</Column>
</DataTable>
</OverlayPanel>
</div>
<DocSectionCode :code="code" :service="['ProductService']" />
</template>
<script>
import { ProductService } from '@/service/ProductService';
export default {
data() {
return {
products: null,
selectedProduct: null,
code: {
2023-09-22 12:54:14 +00:00
basic: `
<Toast />
2023-02-28 08:29:30 +00:00
<Button type="button" icon="pi pi-search" :label="selectedProduct ? selectedProduct.name : 'Select a Product'" @click="toggle" aria-haspopup="true" aria-controls="overlay_panel" />
2024-01-24 10:57:05 +00:00
<div v-if="selectedProduct" class="p-5 surface-card border-round">
2023-02-28 08:29:30 +00:00
<div class="relative">
2023-11-02 06:54:55 +00:00
<img :src="\`/images/product/\${selectedProduct.image}\`" :alt="selectedProduct.name" class="w-4rem shadow-1" class="w-full sm:w-20rem" />
2023-02-28 08:29:30 +00:00
</div>
<div class="flex align-items-center justify-content-between mt-3 mb-2">
2023-11-02 06:54:55 +00:00
<span class="text-900 font-semibold text-xl">{{ selectedProduct.name }}</span>
2023-02-28 08:29:30 +00:00
<span class="text-900 text-xl ml-3">{{ '$' + selectedProduct.price }}</span>
</div>
<span class="text-600">{{ selectedProduct.category }}</span>
</div>
2024-01-24 10:00:53 +00:00
<OverlayPanel ref="op" appendTo="body">
2023-02-28 08:29:30 +00:00
<DataTable v-model:selection="selectedProduct" :value="products" selectionMode="single" :paginator="true" :rows="5" @row-select="onProductSelect">
<Column field="name" header="Name" sortable style="width: 50%"></Column>
<Column header="Image" style="width: 20%">
<template #body="slotProps">
2023-11-02 06:54:55 +00:00
<img :src="\`/images/product/\${selectedProduct.image}\`" :alt="slotProps.data.image" class="w-4rem shadow-1" />
2023-02-28 08:29:30 +00:00
</template>
</Column>
<Column field="price" header="Price" sortable style="width: 30%">
<template #body="slotProps">
2023-11-02 06:54:55 +00:00
$ {{ slotProps.data.price }}
2023-02-28 08:29:30 +00:00
</template>
</Column>
</DataTable>
2023-10-15 09:38:39 +00:00
</OverlayPanel>
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex flex-column align-items-center gap-3">
<Toast />
<Button type="button" icon="pi pi-search" :label="selectedProduct ? selectedProduct.name : 'Select a Product'" @click="toggle" aria-haspopup="true" aria-controls="overlay_panel" />
2024-01-24 10:57:05 +00:00
<div v-if="selectedProduct" class="p-5 surface-card border-round">
2023-02-28 08:29:30 +00:00
<div class="relative">
2023-11-02 06:54:55 +00:00
<img :src="\`https://primefaces.org/cdn/primevue/images/product/\${selectedProduct.image}\`" :alt="selectedProduct.name" class="w-full sm:w-20rem" />
2023-02-28 08:29:30 +00:00
</div>
<div class="flex align-items-center justify-content-between mt-3 mb-2">
2023-11-02 06:54:55 +00:00
<span class="text-900 font-semibold text-xl">{{ selectedProduct.name }}</span>
2023-02-28 08:29:30 +00:00
<span class="text-900 text-xl ml-3">{{ '$' + selectedProduct.price }}</span>
</div>
<span class="text-600">{{ selectedProduct.category }}</span>
</div>
2024-01-24 10:00:53 +00:00
<OverlayPanel ref="op" appendTo="body">
2023-02-28 08:29:30 +00:00
<DataTable v-model:selection="selectedProduct" :value="products" selectionMode="single" :paginator="true" :rows="5" @row-select="onProductSelect">
<Column field="name" header="Name" sortable style="min-width: 12rem"></Column>
<Column header="Image">
<template #body="slotProps">
<img :src="\`https://primefaces.org/cdn/primevue/images/product/\${selectedProduct.image}\`" :alt="slotProps.data.image" class="w-4rem shadow-1" />
</template>
</Column>
<Column field="price" header="Price" sortable style="min-width: 8rem">
<template #body="slotProps">
2023-11-02 06:54:55 +00:00
$ {{ slotProps.data.price }}
2023-02-28 08:29:30 +00:00
</template>
</Column>
</DataTable>
</OverlayPanel>
</div>
</template>
<script>
import { ProductService } from '@/service/ProductService';
export default {
data() {
return {
products: null,
selectedProduct: null
};
},
mounted() {
ProductService.getProductsSmall()
.then((data) => (this.products = data))
.then(() => (this.selectedProduct = this.products[0]));
},
methods: {
toggle(event) {
this.$refs.op.toggle(event);
},
onProductSelect(event) {
this.$refs.op.hide();
this.$toast.add({ severity: 'info', summary: 'Product Selected', detail: event.data.name, life: 3000 });
}
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex flex-column align-items-center gap-3">
<Toast />
<Button type="button" icon="pi pi-search" :label="selectedProduct ? selectedProduct.name : 'Select a Product'" @click="toggle" aria-haspopup="true" aria-controls="overlay_panel" />
2024-01-24 10:57:05 +00:00
<div v-if="selectedProduct" class="p-5 surface-card border-round">
2023-02-28 08:29:30 +00:00
<div class="relative">
2023-11-02 06:54:55 +00:00
<img :src="\`https://primefaces.org/cdn/primevue/images/product/\${selectedProduct.image}\`" :alt="selectedProduct.name" class="w-full sm:w-20rem" />
2023-02-28 08:29:30 +00:00
</div>
<div class="flex align-items-center justify-content-between mt-3 mb-2">
2023-11-02 06:54:55 +00:00
<span class="text-900 font-semibold text-xl">{{ selectedProduct.name }}</span>
2023-02-28 08:29:30 +00:00
<span class="text-900 text-xl ml-3">{{ '$' + selectedProduct.price }}</span>
</div>
<span class="text-600">{{ selectedProduct.category }}</span>
</div>
2024-01-24 10:00:53 +00:00
<OverlayPanel ref="op" appendTo="body">
2023-02-28 08:29:30 +00:00
<DataTable v-model:selection="selectedProduct" :value="products" selectionMode="single" :paginator="true" :rows="5" @row-select="onProductSelect">
<Column field="name" header="Name" sortable style="min-width: 12rem"></Column>
<Column header="Image">
<template #body="slotProps">
<img :src="\`https://primefaces.org/cdn/primevue/images/product/\${selectedProduct.image}\`" :alt="slotProps.data.image" class="w-4rem shadow-1" />
</template>
</Column>
<Column field="price" header="Price" sortable style="min-width: 8rem">
<template #body="slotProps">
2023-11-02 06:54:55 +00:00
$ {{ slotProps.data.price }}
2023-02-28 08:29:30 +00:00
</template>
</Column>
</DataTable>
</OverlayPanel>
</div>
</template>
<script setup>
import { ref, onMounted } from "vue";
import { useToast } from "primevue/usetoast";
import { ProductService } from '@/service/ProductService';
onMounted(() => {
ProductService.getProductsSmall()
.then((data) => (products.value = data))
.then(() => (selectedProduct.value = products.value[0]));
});
const toast = useToast();
const op = ref();
const products = ref();
const selectedProduct = ref();
const toggle = (event) => {
op.value.toggle(event);
};
const onProductSelect = (event) => {
op.value.hide();
toast.add({ severity: 'info', summary: 'Product Selected', detail: event.data.name, life: 3000 });
}
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-02-28 08:29:30 +00:00
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))
.then(() => (this.selectedProduct = this.products[0]));
},
methods: {
toggle(event) {
this.$refs.op.toggle(event);
},
onProductSelect(event) {
this.$refs.op.hide();
this.$toast.add({ severity: 'info', summary: 'Product Selected', detail: event.data.name, life: 3000 });
}
}
};
</script>