2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>Cell editing is enabled by setting <i>editMode</i> as <i>cell</i>, defining input elements with <i>editor</i> templating of a Column and implementing <i>cell-edit-complete</i> to update the state.</p>
|
|
|
|
</DocSectionText>
|
2023-12-31 14:08:33 +00:00
|
|
|
<DeferredDemo @load="loadDemoData">
|
2024-07-02 10:05:17 +00:00
|
|
|
<div class="card">
|
2023-12-31 14:08:33 +00:00
|
|
|
<DataTable
|
|
|
|
:value="products"
|
|
|
|
editMode="cell"
|
|
|
|
@cell-edit-complete="onCellEditComplete"
|
|
|
|
:pt="{
|
|
|
|
table: { style: 'min-width: 50rem' },
|
|
|
|
column: {
|
|
|
|
bodycell: ({ state }) => ({
|
2024-10-05 23:22:42 +00:00
|
|
|
class: [{ '!py-0': state['d_editing'] }]
|
2023-12-31 14:08:33 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}"
|
|
|
|
>
|
|
|
|
<Column v-for="col of columns" :key="col.field" :field="col.field" :header="col.header" style="width: 25%">
|
|
|
|
<template #body="{ data, field }">
|
|
|
|
{{ field === 'price' ? formatCurrency(data[field]) : data[field] }}
|
2023-02-28 08:29:30 +00:00
|
|
|
</template>
|
2023-12-31 14:08:33 +00:00
|
|
|
<template #editor="{ data, field }">
|
|
|
|
<template v-if="field !== 'price'">
|
2024-07-02 10:05:17 +00:00
|
|
|
<InputText v-model="data[field]" autofocus fluid />
|
2023-12-31 14:08:33 +00:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
2024-07-02 10:05:17 +00:00
|
|
|
<InputNumber v-model="data[field]" mode="currency" currency="USD" locale="en-US" autofocus fluid />
|
2023-12-31 14:08:33 +00:00
|
|
|
</template>
|
2023-02-28 08:29:30 +00:00
|
|
|
</template>
|
2023-12-31 14:08:33 +00:00
|
|
|
</Column>
|
|
|
|
</DataTable>
|
|
|
|
</div>
|
|
|
|
</DeferredDemo>
|
2023-03-06 13:44:07 +00:00
|
|
|
<DocSectionCode :code="code" :service="['ProductService']" :dependencies="{ sass: '1.45.0', 'sass-loader': '8.0.2' }" />
|
2023-02-28 08:29:30 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { ProductService } from '@/service/ProductService';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
products: null,
|
|
|
|
columns: [
|
|
|
|
{ field: 'code', header: 'Code' },
|
|
|
|
{ field: 'name', header: 'Name' },
|
|
|
|
{ field: 'quantity', header: 'Quantity' },
|
|
|
|
{ field: 'price', header: 'Price' }
|
|
|
|
],
|
|
|
|
code: {
|
2023-09-22 12:54:14 +00:00
|
|
|
basic: `
|
2023-10-26 07:41:27 +00:00
|
|
|
<DataTable :value="products" editMode="cell" @cell-edit-complete="onCellEditComplete"
|
2023-10-24 12:35:30 +00:00
|
|
|
:pt="{
|
|
|
|
table: { style: 'min-width: 50rem' },
|
|
|
|
column: {
|
|
|
|
bodycell: ({ state }) => ({
|
2024-10-05 23:22:42 +00:00
|
|
|
class: [{ '!py-0': state['d_editing'] }]
|
2023-10-24 12:35:30 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}"
|
|
|
|
>
|
2023-02-28 08:29:30 +00:00
|
|
|
<Column v-for="col of columns" :key="col.field" :field="col.field" :header="col.header" style="width: 25%">
|
|
|
|
<template #body="{ data, field }">
|
|
|
|
{{ field === 'price' ? formatCurrency(data[field]) : data[field] }}
|
|
|
|
</template>
|
|
|
|
<template #editor="{ data, field }">
|
|
|
|
<template v-if="field !== 'price'">
|
2024-07-02 10:05:17 +00:00
|
|
|
<InputText v-model="data[field]" autofocus fluid />
|
2023-02-28 08:29:30 +00:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
2024-07-02 10:05:17 +00:00
|
|
|
<InputNumber v-model="data[field]" mode="currency" currency="USD" locale="en-US" autofocus fluid />
|
2023-02-28 08:29:30 +00:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</Column>
|
2023-10-15 09:38:39 +00:00
|
|
|
</DataTable>
|
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
options: `
|
|
|
|
<template>
|
2024-07-02 10:05:17 +00:00
|
|
|
<div class="card">
|
2023-10-26 07:41:27 +00:00
|
|
|
<DataTable :value="products" editMode="cell" @cell-edit-complete="onCellEditComplete"
|
2023-10-24 12:35:30 +00:00
|
|
|
:pt="{
|
|
|
|
table: { style: 'min-width: 50rem' },
|
|
|
|
column: {
|
|
|
|
bodycell: ({ state }) => ({
|
2024-10-05 23:22:42 +00:00
|
|
|
class: [{ '!py-0': state['d_editing'] }]
|
2023-10-24 12:35:30 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}"
|
|
|
|
>
|
2023-02-28 08:29:30 +00:00
|
|
|
<Column v-for="col of columns" :key="col.field" :field="col.field" :header="col.header" style="width: 25%">
|
|
|
|
<template #body="{ data, field }">
|
|
|
|
{{ field === 'price' ? formatCurrency(data[field]) : data[field] }}
|
|
|
|
</template>
|
|
|
|
<template #editor="{ data, field }">
|
|
|
|
<template v-if="field !== 'price'">
|
2024-07-02 10:05:17 +00:00
|
|
|
<InputText v-model="data[field]" autofocus fluid />
|
2023-02-28 08:29:30 +00:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
2024-07-02 10:05:17 +00:00
|
|
|
<InputNumber v-model="data[field]" mode="currency" currency="USD" locale="en-US" autofocus fluid />
|
2023-02-28 08:29:30 +00:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
</DataTable>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { ProductService } from '@/service/ProductService';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
products: null,
|
|
|
|
columns: [
|
|
|
|
{ field: 'code', header: 'Code' },
|
|
|
|
{ field: 'name', header: 'Name' },
|
|
|
|
{ field: 'quantity', header: 'Quantity' },
|
|
|
|
{ field: 'price', header: 'Price' }
|
|
|
|
]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
ProductService.getProductsMini().then((data) => (this.products = data));
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onCellEditComplete(event) {
|
|
|
|
let { data, newValue, field } = event;
|
|
|
|
|
|
|
|
switch (field) {
|
|
|
|
case 'quantity':
|
|
|
|
case 'price':
|
|
|
|
if (this.isPositiveInteger(newValue)) data[field] = newValue;
|
|
|
|
else event.preventDefault();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (newValue.trim().length > 0) data[field] = newValue;
|
|
|
|
else event.preventDefault();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
isPositiveInteger(val) {
|
|
|
|
let str = String(val);
|
|
|
|
|
|
|
|
str = str.trim();
|
|
|
|
|
|
|
|
if (!str) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
str = str.replace(/^0+/, '') || '0';
|
|
|
|
var n = Math.floor(Number(str));
|
|
|
|
|
|
|
|
return n !== Infinity && String(n) === str && n >= 0;
|
|
|
|
},
|
|
|
|
formatCurrency(value) {
|
|
|
|
return new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
<\/script>
|
2023-10-15 09:38:39 +00:00
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
composition: `
|
|
|
|
<template>
|
2024-07-02 10:05:17 +00:00
|
|
|
<div class="card">
|
2023-10-26 07:41:27 +00:00
|
|
|
<DataTable :value="products" editMode="cell" @cell-edit-complete="onCellEditComplete"
|
2023-10-24 12:35:30 +00:00
|
|
|
:pt="{
|
|
|
|
table: { style: 'min-width: 50rem' },
|
|
|
|
column: {
|
|
|
|
bodycell: ({ state }) => ({
|
2024-10-05 23:22:42 +00:00
|
|
|
class: [{ '!py-0': state['d_editing'] }]
|
2023-10-24 12:35:30 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}"
|
|
|
|
>
|
2023-02-28 08:29:30 +00:00
|
|
|
<Column v-for="col of columns" :key="col.field" :field="col.field" :header="col.header" style="width: 25%">
|
|
|
|
<template #body="{ data, field }">
|
|
|
|
{{ field === 'price' ? formatCurrency(data[field]) : data[field] }}
|
|
|
|
</template>
|
|
|
|
<template #editor="{ data, field }">
|
|
|
|
<template v-if="field !== 'price'">
|
2024-07-02 10:05:17 +00:00
|
|
|
<InputText v-model="data[field]" autofocus fluid />
|
2023-02-28 08:29:30 +00:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
2024-07-02 10:05:17 +00:00
|
|
|
<InputNumber v-model="data[field]" mode="currency" currency="USD" locale="en-US" autofocus fluid />
|
2023-02-28 08:29:30 +00:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
</DataTable>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { ref, onMounted } from 'vue';
|
|
|
|
import { ProductService } from '@/service/ProductService';
|
|
|
|
|
|
|
|
const products = ref();
|
|
|
|
const columns = ref([
|
|
|
|
{ field: 'code', header: 'Code' },
|
|
|
|
{ field: 'name', header: 'Name' },
|
|
|
|
{ field: 'quantity', header: 'Quantity' },
|
|
|
|
{ field: 'price', header: 'Price' }
|
|
|
|
]);
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
ProductService.getProductsMini().then((data) => (products.value = data));
|
|
|
|
});
|
|
|
|
|
|
|
|
const onCellEditComplete = (event) => {
|
|
|
|
let { data, newValue, field } = event;
|
|
|
|
|
|
|
|
switch (field) {
|
|
|
|
case 'quantity':
|
|
|
|
case 'price':
|
|
|
|
if (isPositiveInteger(newValue)) data[field] = newValue;
|
|
|
|
else event.preventDefault();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (newValue.trim().length > 0) data[field] = newValue;
|
|
|
|
else event.preventDefault();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const isPositiveInteger = (val) => {
|
|
|
|
let str = String(val);
|
|
|
|
|
|
|
|
str = str.trim();
|
|
|
|
|
|
|
|
if (!str) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
str = str.replace(/^0+/, '') || '0';
|
|
|
|
var n = Math.floor(Number(str));
|
|
|
|
|
|
|
|
return n !== Infinity && String(n) === str && n >= 0;
|
|
|
|
};
|
|
|
|
const formatCurrency = (value) => {
|
|
|
|
return new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
<\/script>
|
2023-10-24 12:35:30 +00:00
|
|
|
`,
|
2023-02-28 08:29:30 +00:00
|
|
|
data: `
|
|
|
|
{
|
|
|
|
id: '1000',
|
|
|
|
code: 'f230fh0g3',
|
|
|
|
name: 'Bamboo Watch',
|
|
|
|
description: 'Product Description',
|
|
|
|
image: 'bamboo-watch.jpg',
|
|
|
|
price: 65,
|
|
|
|
category: 'Accessories',
|
|
|
|
quantity: 24,
|
|
|
|
inventoryStatus: 'INSTOCK',
|
|
|
|
rating: 5
|
|
|
|
},
|
|
|
|
...
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
2023-12-31 14:08:33 +00:00
|
|
|
loadDemoData() {
|
|
|
|
ProductService.getProductsMini().then((data) => (this.products = data));
|
|
|
|
},
|
2023-02-28 08:29:30 +00:00
|
|
|
onCellEditComplete(event) {
|
|
|
|
let { data, newValue, field } = event;
|
|
|
|
|
|
|
|
switch (field) {
|
|
|
|
case 'quantity':
|
|
|
|
case 'price':
|
|
|
|
if (this.isPositiveInteger(newValue)) data[field] = newValue;
|
|
|
|
else event.preventDefault();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (newValue.trim().length > 0) data[field] = newValue;
|
|
|
|
else event.preventDefault();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
isPositiveInteger(val) {
|
|
|
|
let str = String(val);
|
|
|
|
|
|
|
|
str = str.trim();
|
|
|
|
|
|
|
|
if (!str) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
str = str.replace(/^0+/, '') || '0';
|
|
|
|
var n = Math.floor(Number(str));
|
|
|
|
|
|
|
|
return n !== Infinity && String(n) === str && n >= 0;
|
|
|
|
},
|
|
|
|
formatCurrency(value) {
|
|
|
|
return new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|