mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
184 lines
5.5 KiB
Vue
184 lines
5.5 KiB
Vue
<script setup>
|
|
import { computed, useSlots, ref } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useRoute } from 'vue-router';
|
|
import { vOnClickOutside } from '@vueuse/components';
|
|
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
|
import Breadcrumb from 'dashboard/components-next/breadcrumb/Breadcrumb.vue';
|
|
import ComposeConversation from 'dashboard/components-next/NewConversation/ComposeConversation.vue';
|
|
|
|
const props = defineProps({
|
|
selectedContact: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
isUpdating: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits(['goToContactsList', 'toggleBlock']);
|
|
|
|
const { t } = useI18n();
|
|
const slots = useSlots();
|
|
const route = useRoute();
|
|
|
|
const isContactSidebarOpen = ref(false);
|
|
|
|
const contactId = computed(() => route.params.contactId);
|
|
|
|
const selectedContactName = computed(() => {
|
|
return props.selectedContact?.name;
|
|
});
|
|
|
|
const breadcrumbItems = computed(() => {
|
|
const items = [
|
|
{
|
|
label: t('CONTACTS_LAYOUT.HEADER.BREADCRUMB.CONTACTS'),
|
|
link: '#',
|
|
},
|
|
];
|
|
if (props.selectedContact) {
|
|
items.push({
|
|
label: selectedContactName.value,
|
|
});
|
|
}
|
|
return items;
|
|
});
|
|
|
|
const isContactBlocked = computed(() => {
|
|
return props.selectedContact?.blocked;
|
|
});
|
|
|
|
const handleBreadcrumbClick = () => {
|
|
emit('goToContactsList');
|
|
};
|
|
|
|
const toggleBlock = () => {
|
|
emit('toggleBlock', isContactBlocked.value);
|
|
};
|
|
|
|
const handleConversationSidebarToggle = () => {
|
|
isContactSidebarOpen.value = !isContactSidebarOpen.value;
|
|
};
|
|
|
|
const closeMobileSidebar = () => {
|
|
if (!isContactSidebarOpen.value) return;
|
|
isContactSidebarOpen.value = false;
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<section
|
|
class="flex w-full h-full overflow-hidden justify-evenly bg-n-background"
|
|
>
|
|
<div
|
|
class="flex flex-col w-full h-full transition-all duration-300 ltr:2xl:ml-56 rtl:2xl:mr-56"
|
|
>
|
|
<header class="sticky top-0 z-10 px-6 3xl:px-0">
|
|
<div class="w-full mx-auto max-w-[40.625rem]">
|
|
<div
|
|
class="flex flex-col xs:flex-row items-start xs:items-center justify-between w-full py-7 gap-2"
|
|
>
|
|
<Breadcrumb
|
|
:items="breadcrumbItems"
|
|
@click="handleBreadcrumbClick"
|
|
/>
|
|
<div class="flex items-center gap-2">
|
|
<Button
|
|
:label="
|
|
!isContactBlocked
|
|
? $t('CONTACTS_LAYOUT.HEADER.BLOCK_CONTACT')
|
|
: $t('CONTACTS_LAYOUT.HEADER.UNBLOCK_CONTACT')
|
|
"
|
|
size="sm"
|
|
slate
|
|
:is-loading="isUpdating"
|
|
:disabled="isUpdating"
|
|
@click="toggleBlock"
|
|
/>
|
|
<ComposeConversation :contact-id="contactId">
|
|
<template #trigger="{ toggle }">
|
|
<Button
|
|
:label="$t('CONTACTS_LAYOUT.HEADER.SEND_MESSAGE')"
|
|
size="sm"
|
|
@click="toggle"
|
|
/>
|
|
</template>
|
|
</ComposeConversation>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<main class="flex-1 px-6 overflow-y-auto 3xl:px-px">
|
|
<div class="w-full py-4 mx-auto max-w-[40.625rem]">
|
|
<slot name="default" />
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<!-- Desktop sidebar -->
|
|
<div
|
|
v-if="slots.sidebar"
|
|
class="hidden lg:block overflow-y-auto justify-end min-w-52 w-full py-6 max-w-md border-l border-n-weak bg-n-solid-2"
|
|
>
|
|
<slot name="sidebar" />
|
|
</div>
|
|
|
|
<!-- Mobile sidebar container -->
|
|
<div
|
|
v-if="slots.sidebar"
|
|
class="lg:hidden fixed top-0 ltr:right-0 rtl:left-0 h-full z-50 flex justify-end transition-all duration-200 ease-in-out"
|
|
:class="isContactSidebarOpen ? 'w-full' : 'w-16'"
|
|
>
|
|
<!-- Toggle button -->
|
|
<div
|
|
v-on-click-outside="[
|
|
closeMobileSidebar,
|
|
{ ignore: ['#contact-sidebar-content'] },
|
|
]"
|
|
class="flex items-start p-1 w-fit h-fit relative order-1 xs:top-24 top-28 transition-all bg-n-solid-2 border border-n-weak duration-500 ease-in-out"
|
|
:class="[
|
|
isContactSidebarOpen
|
|
? 'justify-end ltr:rounded-l-full rtl:rounded-r-full ltr:rounded-r-none rtl:rounded-l-none'
|
|
: 'justify-center rounded-full ltr:mr-6 rtl:ml-6',
|
|
]"
|
|
>
|
|
<Button
|
|
ghost
|
|
slate
|
|
sm
|
|
class="!rounded-full rtl:rotate-180"
|
|
:class="{ 'bg-n-alpha-2': isContactSidebarOpen }"
|
|
:icon="
|
|
isContactSidebarOpen
|
|
? 'i-lucide-panel-right-close'
|
|
: 'i-lucide-panel-right-open'
|
|
"
|
|
data-contact-sidebar-toggle
|
|
@click="handleConversationSidebarToggle"
|
|
/>
|
|
</div>
|
|
|
|
<Transition
|
|
enter-active-class="transition-transform duration-200 ease-in-out"
|
|
leave-active-class="transition-transform duration-200 ease-in-out"
|
|
enter-from-class="ltr:translate-x-full rtl:-translate-x-full"
|
|
enter-to-class="ltr:translate-x-0 rtl:-translate-x-0"
|
|
leave-from-class="ltr:translate-x-0 rtl:-translate-x-0"
|
|
leave-to-class="ltr:translate-x-full rtl:-translate-x-full"
|
|
>
|
|
<div
|
|
v-if="isContactSidebarOpen"
|
|
id="contact-sidebar-content"
|
|
class="order-2 w-[85%] sm:w-[50%] bg-n-solid-2 ltr:border-l rtl:border-r border-n-weak overflow-y-auto py-6 shadow-lg"
|
|
>
|
|
<slot name="sidebar" />
|
|
</div>
|
|
</Transition>
|
|
</div>
|
|
</section>
|
|
</template>
|