primevue-mirror/src/views/datatable/DataTableCrudDemo.vue

280 lines
9.5 KiB
Vue

<template>
<div>
<DataTableSubMenu />
<div class="content-section introduction">
<div class="feature-intro">
<h1>DataTable - Crud</h1>
<p>This samples demonstrates a CRUD implementation using various PrimeReact components.</p>
</div>
</div>
<div class="content-section implementation">
<DataTable :value="cars" selectionMode="single" :selection.sync="selectedCar" @row-select="onRowSelect" dataKey="vin"
:paginator="true" :rows="15">
<template #header>
CRUD for Cars
</template>
<Column field="vin" header="Vin" :sortable="true"></Column>
<Column field="year" header="Year" :sortable="true"></Column>
<Column field="brand" header="Brand" :sortable="true"></Column>
<Column field="color" header="Color" :sortable="true"></Column>
<template #footer>
<div style="text-align:left">
<Button abel="Add" icon="pi pi-plus" @click="addNewCar" />
</div>
</template>
</DataTable>
<Dialog :visible.sync="dialogVisible" :style="{width: '400px'}" header="Car Details" :modal="true">
<div class="p-cardialog-content">
<div class="p-grid p-fluid" v-if="car">
<div class="p-col-4"><label for="vin">Vin</label></div>
<div class="p-col-8">
<InputText id="vin" v-model="car.vin" :disabled="true" autocomplete="off" />
</div>
<div class="p-col-4"><label for="year">Year</label></div>
<div class="p-col-8">
<InputText id="year" v-model="car.year" autocomplete="off" />
</div>
<div class="p-col-4"><label for="brand">Brand</label></div>
<div class="p-col-8">
<InputText id="brand" v-model="car.brand" autocomplete="off" />
</div>
<div class="p-col-4"><label for="color">Color</label></div>
<div class="p-col-8">
<InputText id="color" v-model="car.color" autocomplete="off" />
</div>
</div>
</div>
<template #footer>
<Button label="Delete" icon="pi pi-times" @click="deleteCar" class="p-button-danger" />
<Button label="Save" icon="pi pi-check" @click="saveCar" class="p-button-success" />
</template>
</Dialog>
</div>
<div class="content-section documentation">
<TabView>
<TabPanel header="Source">
<CodeHighlight>
<template v-pre>
&lt;DataTable :value="cars" selectionMode="single" :selection.sync="selectedCar" @row-select="onRowSelect" dataKey="vin"
:paginator="true" :rows="15"&gt;
&lt;template #header&gt;
CRUD for Cars
&lt;/template&gt;
&lt;Column field="vin" header="Vin" :sortable="true"&gt;&lt;/Column&gt;
&lt;Column field="year" header="Year" :sortable="true"&gt;&lt;/Column&gt;
&lt;Column field="brand" header="Brand" :sortable="true"&gt;&lt;/Column&gt;
&lt;Column field="color" header="Color" :sortable="true"&gt;&lt;/Column&gt;
&lt;template #footer&gt;
&lt;div style="text-align:left"&gt;
&lt;Button abel="Add" icon="pi pi-plus" @click="addNewCar" /&gt;
&lt;/div&gt;
&lt;/template&gt;
&lt;/DataTable&gt;
&lt;Dialog :visible.sync="dialogVisible" :style="{width: '400px'}" header="Car Details" :modal="true"&gt;
&lt;div class="p-cardialog-content"&gt;
&lt;div class="p-grid p-fluid" v-if="car"&gt;
&lt;div class="p-col-4"&gt;&lt;label for="vin"&gt;Vin&lt;/label&gt;&lt;/div&gt;
&lt;div class="p-col-8"&gt;
&lt;InputText id="vin" v-model="car.vin" :disabled="true" autocomplete="off" /&gt;
&lt;/div&gt;
&lt;div class="p-col-4"&gt;&lt;label for="year"&gt;Year&lt;/label&gt;&lt;/div&gt;
&lt;div class="p-col-8"&gt;
&lt;InputText id="year" v-model="car.year" autocomplete="off" /&gt;
&lt;/div&gt;
&lt;div class="p-col-4"&gt;&lt;label for="brand"&gt;Brand&lt;/label&gt;&lt;/div&gt;
&lt;div class="p-col-8"&gt;
&lt;InputText id="brand" v-model="car.brand" autocomplete="off" /&gt;
&lt;/div&gt;
&lt;div class="p-col-4"&gt;&lt;label for="color"&gt;Color&lt;/label&gt;&lt;/div&gt;
&lt;div class="p-col-8"&gt;
&lt;InputText id="color" v-model="car.color" autocomplete="off" /&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;template #footer&gt;
&lt;Button label="Delete" icon="pi pi-times" @click="deleteCar" class="p-button-danger" /&gt;
&lt;Button label="Save" icon="pi pi-check" @click="saveCar" class="p-button-success" /&gt;
&lt;/template&gt;
&lt;/Dialog&gt;
</template>
</CodeHighlight>
<CodeHighlight lang="javascript">
import CarService from '../../service/CarService';
export default {
data() {
return {
cars: null,
dialogVisible: false,
car: null,
selectedCar: null
}
},
carService: null,
created() {
this.carService = new CarService();
},
mounted() {
this.carService.getCarsSmall().then(data => this.cars = data);
},
methods: {
addNewCar() {
this.car = {vin: this.generateVin(), year: '', brand: '', color: ''};
this.dialogVisible = true;
},
deleteCar() {
let index = this.findIndexByVin(this.car.vin);
this.cars = this.cars.filter((val,i) => i !== index);
this.dialogVisible = false;
this.car = null;
this.selectedCar = null;
},
saveCar() {
let index = this.findIndexByVin(this.car.vin);
let cars = [...this.cars];
if (index === -1)
cars.push(this.car);
else
cars[index] = this.car;
this.cars = cars;
this.dialogVisible = false;
this.car = null;
this.selectedCar = null;
},
onRowSelect(event) {
this.car = {...event.data};
this.dialogVisible = true;
},
generateVin() {
let result = '';
let characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
let charactersLength = characters.length;
for ( var i = 0; i &lt; 8; i++ ) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
}
return result;
},
findIndexByVin(vin) {
let index = -1;
for (let i = 0; i &lt; this.cars.length; i++) {
if (this.cars[i].vin === vin) {
index = i;
break;
}
}
return index;
}
}
}
</CodeHighlight>
</TabPanel>
</TabView>
</div>
</div>
</template>
<script>
import CarService from '../../service/CarService';
import DataTableSubMenu from './DataTableSubMenu';
export default {
data() {
return {
cars: null,
dialogVisible: false,
car: null,
selectedCar: null
}
},
carService: null,
created() {
this.carService = new CarService();
},
mounted() {
this.carService.getCarsSmall().then(data => this.cars = data);
},
methods: {
addNewCar() {
this.car = {vin: this.generateVin(), year: '', brand: '', color: ''};
this.dialogVisible = true;
},
deleteCar() {
let index = this.findIndexByVin(this.car.vin);
this.cars = this.cars.filter((val,i) => i !== index);
this.dialogVisible = false;
this.car = null;
this.selectedCar = null;
},
saveCar() {
let index = this.findIndexByVin(this.car.vin);
let cars = [...this.cars];
if (index === -1)
cars.push(this.car);
else
cars[index] = this.car;
this.cars = cars;
this.dialogVisible = false;
this.car = null;
this.selectedCar = null;
},
onRowSelect(event) {
this.car = {...event.data};
this.dialogVisible = true;
},
generateVin() {
let result = '';
let characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
let charactersLength = characters.length;
for ( var i = 0; i < 8; i++ ) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
}
return result;
},
findIndexByVin(vin) {
let index = -1;
for (let i = 0; i < this.cars.length; i++) {
if (this.cars[i].vin === vin) {
index = i;
break;
}
}
return index;
}
},
components: {
'DataTableSubMenu': DataTableSubMenu
}
}
</script>
<style scoped>
.p-cardialog-content {
padding: 1em;
}
.p-cardialog-content .p-col-4 {
padding: .75em;
}
.p-cardialog-content .p-col-8 {
padding: .5em;
}
</style>