Skip to content

Commit

Permalink
refactor(price): new PriceDeleteConfirmationDialog component (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Mar 13, 2024
1 parent d0656f8 commit 9c9f5ef
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 37 deletions.
53 changes: 16 additions & 37 deletions src/components/PriceDeleteChip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,17 @@
density="comfortable"
color="error"
:title="$t('PriceDeleteChip.Delete')"
@click="openDialog">
@click="openConfirmationDialog">
<v-icon icon="mdi-delete"></v-icon>
</v-chip>

<v-dialog v-model="dialog" max-height="80%" max-width="80%">
<v-card>
<v-card-title>
{{ $t('PriceDeleteChip.DeleteTitle') }} <v-btn style="float:right;" variant="text" density="compact" icon="mdi-close" @click="closeDialog"></v-btn>
</v-card-title>
<v-divider></v-divider>
<v-card-text>
<p class="mb-1">{{ $t('PriceDeleteChip.Confirmation') }}</p>
<v-row>
<v-col cols="12" md="6">
<PriceCard :price="price" :product="price.product" :hidePriceFooter="true" :readonly="true"></PriceCard>
</v-col>
</v-row>
<v-row>
<v-col>
<v-btn
size="small"
color="error"
prepend-icon="mdi-delete"
:loading="loading"
@click="deletePrice"
>{{ $t('PriceDeleteChip.Delete') }}</v-btn>
</v-col>
</v-row>
</v-card-text>
</v-card>
</v-dialog>
<PriceDeleteConfirmationDialog
v-if="confirmationDialog"
v-model="confirmationDialog"
:price="price"
@delete="deletePrice($event)"
@close="confirmationDialog = false">
</PriceDeleteConfirmationDialog>

<v-snackbar
v-model="deleteSuccessMessage"
Expand All @@ -51,15 +31,15 @@ import api from '../services/api'
export default {
components: {
'PriceCard': defineAsyncComponent(() => import('../components/PriceCard.vue'))
'PriceDeleteConfirmationDialog': defineAsyncComponent(() => import('../components/PriceDeleteConfirmationDialog.vue'))
},
props: {
'price': null,
},
data() {
return {
loading: false,
dialog: false,
confirmationDialog: false,
deleteSuccessMessage: false
}
},
Expand All @@ -75,18 +55,17 @@ export default {
this.loading = false
this.deleteSuccessMessage = true
this.removePriceCard()
this.closeDialog()
this.closeConfirmationDialog()
})
},
removePriceCard() {
const priceCardCol = document.getElementById(`price_${this.price.id}`)
priceCardCol.remove()
document.getElementById(`price_${this.price.id}`).remove()
},
openDialog() {
this.dialog = true
openConfirmationDialog() {
this.confirmationDialog = true
},
closeDialog() {
this.dialog = false
closeConfirmationDialog() {
this.confirmationDialog = false
}
}
}
Expand Down
52 changes: 52 additions & 0 deletions src/components/PriceDeleteConfirmationDialog.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<template>
<v-dialog scrollable max-height="80%" max-width="80%">
<v-card>
<v-card-title>
{{ $t('PriceDeleteChip.DeleteTitle') }} <v-btn style="float:right;" variant="text" density="compact" icon="mdi-close" @click="closeDialog"></v-btn>
</v-card-title>

<v-divider></v-divider>

<v-card-text>
<p class="mb-1">{{ $t('PriceDeleteChip.Confirmation') }}</p>
<v-row>
<v-col cols="12" md="6">
<PriceCard :price="price" :product="price.product" :hidePriceFooter="true" :readonly="true"></PriceCard>
</v-col>
</v-row>
</v-card-text>

<v-divider></v-divider>

<v-card-actions>
<v-btn
color="error"
elevation="1"
prepend-icon="mdi-delete"
@click="deletePrice"
>{{ $t('PriceDeleteChip.Delete') }}</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</template>

<script>
import { defineAsyncComponent } from 'vue'
export default {
components: {
'PriceCard': defineAsyncComponent(() => import('../components/PriceCard.vue'))
},
props: {
'price': null,
},
methods: {
deletePrice() {
this.$emit('delete')
},
closeDialog() {
this.$emit('close')
},
}
}
</script>

0 comments on commit 9c9f5ef

Please sign in to comment.