Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
69 lines
1.9 KiB
Vue
69 lines
1.9 KiB
Vue
<script setup>
|
|
import { ref } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useToggle } from '@vueuse/core';
|
|
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
|
import ConfirmContactDeleteDialog from 'dashboard/components-next/Contacts/ContactsForm/ConfirmContactDeleteDialog.vue';
|
|
import Policy from 'dashboard/components/policy.vue';
|
|
|
|
defineProps({
|
|
selectedContact: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
});
|
|
|
|
const { t } = useI18n();
|
|
|
|
const [showDeleteSection, toggleDeleteSection] = useToggle();
|
|
const confirmDeleteContactDialogRef = ref(null);
|
|
|
|
const openConfirmDeleteContactDialog = () => {
|
|
confirmDeleteContactDialogRef.value?.dialogRef.open();
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Policy :permissions="['administrator']">
|
|
<div class="flex flex-col items-start border-t border-n-strong px-6 py-5">
|
|
<Button
|
|
:label="t('CONTACTS_LAYOUT.DETAILS.DELETE_CONTACT')"
|
|
sm
|
|
link
|
|
slate
|
|
class="hover:!no-underline text-n-slate-12"
|
|
icon="i-lucide-chevron-down"
|
|
trailing-icon
|
|
@click="toggleDeleteSection()"
|
|
/>
|
|
|
|
<div
|
|
class="transition-all duration-300 ease-in-out grid w-full overflow-hidden"
|
|
:class="
|
|
showDeleteSection
|
|
? 'grid-rows-[1fr] opacity-100 mt-2'
|
|
: 'grid-rows-[0fr] opacity-0 mt-0'
|
|
"
|
|
>
|
|
<div class="overflow-hidden min-h-0">
|
|
<span class="inline-flex text-n-slate-11 text-sm items-center gap-1">
|
|
{{ t('CONTACTS_LAYOUT.CARD.DELETE_CONTACT.MESSAGE') }}
|
|
<Button
|
|
:label="t('CONTACTS_LAYOUT.CARD.DELETE_CONTACT.BUTTON')"
|
|
sm
|
|
ruby
|
|
link
|
|
@click="openConfirmDeleteContactDialog()"
|
|
/>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<ConfirmContactDeleteDialog
|
|
ref="confirmDeleteContactDialogRef"
|
|
:selected-contact="selectedContact"
|
|
/>
|
|
</Policy>
|
|
</template>
|