# Pull Request Template ## Description This PR fixes the installation name in empty states on the Captain Documents and Captain FAQs pages. Fixes https://linear.app/chatwoot/issue/CW-6159/display-brand-name-in-empty-state-messages-on-the-captain-page ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? ### Screenshots <img width="986" height="700" alt="image" src="https://github.com/user-attachments/assets/7ba32fbb-ea93-4206-9e8d-ef037a83f72e" /> <img width="1062" height="699" alt="image" src="https://github.com/user-attachments/assets/a70bec15-9bfe-4600-b355-f486f93a6839" /> ## 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
57 lines
2.0 KiB
Vue
57 lines
2.0 KiB
Vue
<script setup>
|
|
import { useAccount } from 'dashboard/composables/useAccount';
|
|
import { useBranding } from 'shared/composables/useBranding';
|
|
import EmptyStateLayout from 'dashboard/components-next/EmptyStateLayout.vue';
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
|
import DocumentCard from 'dashboard/components-next/captain/assistant/DocumentCard.vue';
|
|
import FeatureSpotlight from 'dashboard/components-next/feature-spotlight/FeatureSpotlight.vue';
|
|
import { documentsList } from 'dashboard/components-next/captain/pageComponents/emptyStates/captainEmptyStateContent.js';
|
|
|
|
const emit = defineEmits(['click']);
|
|
const { isOnChatwootCloud } = useAccount();
|
|
|
|
const { replaceInstallationName } = useBranding();
|
|
|
|
const onClick = () => {
|
|
emit('click');
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<FeatureSpotlight
|
|
:title="$t('CAPTAIN.DOCUMENTS.EMPTY_STATE.FEATURE_SPOTLIGHT.TITLE')"
|
|
:note="$t('CAPTAIN.DOCUMENTS.EMPTY_STATE.FEATURE_SPOTLIGHT.NOTE')"
|
|
fallback-thumbnail="/assets/images/dashboard/captain/document-light.svg"
|
|
fallback-thumbnail-dark="/assets/images/dashboard/captain/document-dark.svg"
|
|
learn-more-url="https://chwt.app/captain-document"
|
|
:hide-actions="!isOnChatwootCloud"
|
|
class="mb-8"
|
|
/>
|
|
<EmptyStateLayout
|
|
:title="$t('CAPTAIN.DOCUMENTS.EMPTY_STATE.TITLE')"
|
|
:subtitle="$t('CAPTAIN.DOCUMENTS.EMPTY_STATE.SUBTITLE')"
|
|
:action-perms="['administrator']"
|
|
>
|
|
<template #empty-state-item>
|
|
<div class="grid grid-cols-1 gap-4 p-px overflow-hidden">
|
|
<DocumentCard
|
|
v-for="(document, index) in documentsList.slice(0, 5)"
|
|
:id="document.id"
|
|
:key="`document-${index}`"
|
|
:name="replaceInstallationName(document.name)"
|
|
:assistant="document.assistant"
|
|
:external-link="document.external_link"
|
|
:created-at="document.created_at"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<template #actions>
|
|
<Button
|
|
:label="$t('CAPTAIN.DOCUMENTS.ADD_NEW')"
|
|
icon="i-lucide-plus"
|
|
@click="onClick"
|
|
/>
|
|
</template>
|
|
</EmptyStateLayout>
|
|
</template>
|