mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
54 lines
1.9 KiB
Vue
54 lines
1.9 KiB
Vue
<script setup>
|
|
import { useAccount } from 'dashboard/composables/useAccount';
|
|
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 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="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>
|