89 lines
2.6 KiB
Vue
89 lines
2.6 KiB
Vue
<script setup>
|
|
import { computed, ref } from 'vue';
|
|
import BaseBubble from 'next/message/bubbles/Base.vue';
|
|
import FormattedContent from './FormattedContent.vue';
|
|
import AttachmentChips from 'next/message/chips/AttachmentChips.vue';
|
|
import TranslationToggle from 'dashboard/components-next/message/TranslationToggle.vue';
|
|
import { MESSAGE_TYPES, MESSAGE_VARIANTS } from '../../constants';
|
|
import { useMessageContext } from '../../provider.js';
|
|
import { useTranslations } from 'dashboard/composables/useTranslations';
|
|
|
|
const { content, attachments, contentAttributes, messageType, variant } =
|
|
useMessageContext();
|
|
|
|
const { hasTranslations, translationContent } =
|
|
useTranslations(contentAttributes);
|
|
|
|
const renderOriginal = ref(false);
|
|
|
|
const renderContent = computed(() => {
|
|
if (renderOriginal.value) {
|
|
return content.value;
|
|
}
|
|
|
|
if (hasTranslations.value) {
|
|
return translationContent.value;
|
|
}
|
|
|
|
return content.value;
|
|
});
|
|
|
|
const isTemplate = computed(() => {
|
|
return messageType.value === MESSAGE_TYPES.TEMPLATE;
|
|
});
|
|
|
|
const isEmpty = computed(() => {
|
|
return !content.value && !attachments.value?.length;
|
|
});
|
|
|
|
const emptyTextClass = computed(() => {
|
|
const metaClassMap = {
|
|
[MESSAGE_VARIANTS.AGENT]: 'text-[rgb(var(--bubble-agent-meta))]',
|
|
[MESSAGE_VARIANTS.USER]: 'text-[rgb(var(--bubble-user-meta))]',
|
|
[MESSAGE_VARIANTS.PRIVATE]: 'text-[rgb(var(--bubble-private-meta))]',
|
|
[MESSAGE_VARIANTS.BOT]: 'text-[rgb(var(--bubble-bot-meta))]',
|
|
[MESSAGE_VARIANTS.TEMPLATE]: 'text-[rgb(var(--bubble-bot-meta))]',
|
|
};
|
|
return metaClassMap[variant.value] || 'text-[rgb(var(--bubble-agent-meta))]';
|
|
});
|
|
|
|
const handleSeeOriginal = () => {
|
|
renderOriginal.value = !renderOriginal.value;
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<BaseBubble
|
|
class="px-[var(--bubble-padding-x)] py-[var(--bubble-padding-y)]"
|
|
data-bubble-name="text"
|
|
>
|
|
<div class="gap-3 flex flex-col">
|
|
<span v-if="isEmpty" :class="emptyTextClass">
|
|
{{ $t('CONVERSATION.NO_CONTENT') }}
|
|
</span>
|
|
<FormattedContent v-if="renderContent" :content="renderContent" />
|
|
<TranslationToggle
|
|
v-if="hasTranslations"
|
|
class="-mt-3"
|
|
:showing-original="renderOriginal"
|
|
@toggle="handleSeeOriginal"
|
|
/>
|
|
<AttachmentChips :attachments="attachments" class="gap-2" />
|
|
<template v-if="isTemplate">
|
|
<div
|
|
v-if="contentAttributes.submittedEmail"
|
|
class="px-2 py-1 rounded-lg bg-n-alpha-3"
|
|
>
|
|
{{ contentAttributes.submittedEmail }}
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</BaseBubble>
|
|
</template>
|
|
|
|
<style>
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
</style>
|