mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
43 lines
1.3 KiB
Vue
43 lines
1.3 KiB
Vue
<script setup>
|
|
import EmptyStateLayout from 'dashboard/components-next/EmptyStateLayout.vue';
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
|
import ResponseCard from 'dashboard/components-next/captain/assistant/ResponseCard.vue';
|
|
import { responsesList } from 'dashboard/components-next/captain/pageComponents/emptyStates/captainEmptyStateContent.js';
|
|
|
|
const emit = defineEmits(['click']);
|
|
|
|
const onClick = () => {
|
|
emit('click');
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<EmptyStateLayout
|
|
:title="$t('CAPTAIN.RESPONSES.EMPTY_STATE.TITLE')"
|
|
:subtitle="$t('CAPTAIN.RESPONSES.EMPTY_STATE.SUBTITLE')"
|
|
>
|
|
<template #empty-state-item>
|
|
<div class="grid grid-cols-1 gap-4 p-px overflow-hidden">
|
|
<ResponseCard
|
|
v-for="(response, index) in responsesList.slice(0, 5)"
|
|
:id="response.id"
|
|
:key="`response-${index}`"
|
|
:question="response.question"
|
|
:answer="response.answer"
|
|
:status="response.status"
|
|
:assistant="response.assistant"
|
|
:created-at="response.created_at"
|
|
:updated-at="response.created_at"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<template #actions>
|
|
<Button
|
|
:label="$t('CAPTAIN.RESPONSES.ADD_NEW')"
|
|
icon="i-lucide-plus"
|
|
@click="onClick"
|
|
/>
|
|
</template>
|
|
</EmptyStateLayout>
|
|
</template>
|