55 lines
2.1 KiB
Vue
55 lines
2.1 KiB
Vue
<script setup lang="ts">
|
|
import { Pencil, Trash2 } from '@lucide/vue';
|
|
import ConfirmDialog from '@/components/ConfirmDialog.vue';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/ui/tooltip';
|
|
import { useCan } from '@/composables/useCan';
|
|
import { useDestroy } from '@/composables/useDestroy';
|
|
import type { CustomerListItem } from '@/types/customer';
|
|
import { destroy } from '@/routes/admin/master/customers';
|
|
|
|
const props = defineProps<{
|
|
customer: CustomerListItem;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
edit: [customer: CustomerListItem];
|
|
}>();
|
|
|
|
const { can } = useCan();
|
|
|
|
const { open: deleteConfirmOpen, processing: deleteProcessing, destroy: destroyCustomer } = useDestroy({
|
|
url: destroy.url(props.customer.id),
|
|
errorMessage: 'Gagal menghapus customer.',
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex items-center justify-end gap-1">
|
|
<Tooltip v-if="can('customers.update')">
|
|
<TooltipTrigger as-child>
|
|
<Button variant="ghost" size="icon" class="size-8" @click="emit('edit', customer)">
|
|
<Pencil class="size-4" />
|
|
<span class="sr-only">Ubah</span>
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>Ubah</TooltipContent>
|
|
</Tooltip>
|
|
|
|
<Tooltip v-if="can('customers.delete')">
|
|
<TooltipTrigger as-child>
|
|
<Button variant="ghost" size="icon" class="text-destructive hover:text-destructive size-8"
|
|
@click="deleteConfirmOpen = true">
|
|
<Trash2 class="size-4" />
|
|
<span class="sr-only">Hapus</span>
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>Hapus</TooltipContent>
|
|
</Tooltip>
|
|
</div>
|
|
|
|
<ConfirmDialog v-if="can('customers.delete')" v-model:open="deleteConfirmOpen" title="Hapus customer?"
|
|
:description="`Customer ${customer.name} akan dihapus secara permanen. Tindakan ini tidak dapat dibatalkan.`"
|
|
confirm-label="Hapus" cancel-label="Batal" destructive :loading="deleteProcessing" @confirm="destroyCustomer" />
|
|
</template>
|