mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
# Pull Request Template ## Description This PR fixes an issue where deleting the last item on the last page of responses/documents, would show an empty state instead of loading the previous page. Fixes > If you have pending responses spanning 2 or more pages .. and you delete the last response in the last page.. instead of showing the previous page the system show empty state. ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? **Loom video** https://www.loom.com/share/b0e89f774ccd45dab0e8dba2c34bd1ac?sid=d9923bcd-5030-42d9-9b7f-170df5297cfd ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules
60 lines
1.4 KiB
Vue
60 lines
1.4 KiB
Vue
<script setup>
|
|
import { ref, computed } from 'vue';
|
|
import { useStore } from 'dashboard/composables/store';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useAlert } from 'dashboard/composables';
|
|
import Dialog from 'dashboard/components-next/dialog/Dialog.vue';
|
|
|
|
const props = defineProps({
|
|
type: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
entity: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
deletePayload: {
|
|
type: Object,
|
|
default: null,
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits(['deleteSuccess']);
|
|
|
|
const { t } = useI18n();
|
|
const store = useStore();
|
|
const deleteDialogRef = ref(null);
|
|
const i18nKey = computed(() => props.type.toUpperCase());
|
|
|
|
const deleteEntity = async payload => {
|
|
if (!payload) return;
|
|
|
|
try {
|
|
await store.dispatch(`captain${props.type}/delete`, payload);
|
|
emit('deleteSuccess');
|
|
useAlert(t(`CAPTAIN.${i18nKey.value}.DELETE.SUCCESS_MESSAGE`));
|
|
} catch (error) {
|
|
useAlert(t(`CAPTAIN.${i18nKey.value}.DELETE.ERROR_MESSAGE`));
|
|
}
|
|
};
|
|
|
|
const handleDialogConfirm = async () => {
|
|
await deleteEntity(props.deletePayload || props.entity.id);
|
|
deleteDialogRef.value?.close();
|
|
};
|
|
|
|
defineExpose({ dialogRef: deleteDialogRef });
|
|
</script>
|
|
|
|
<template>
|
|
<Dialog
|
|
ref="deleteDialogRef"
|
|
type="alert"
|
|
:title="t(`CAPTAIN.${i18nKey}.DELETE.TITLE`)"
|
|
:description="t(`CAPTAIN.${i18nKey}.DELETE.DESCRIPTION`)"
|
|
:confirm-button-label="t(`CAPTAIN.${i18nKey}.DELETE.CONFIRM`)"
|
|
@confirm="handleDialogConfirm"
|
|
/>
|
|
</template>
|