39 lines
1.1 KiB
Vue
39 lines
1.1 KiB
Vue
|
|
<script setup>
|
||
|
|
import EmptyStateLayout from 'dashboard/components-next/EmptyStateLayout.vue';
|
||
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
||
|
|
import InboxCard from 'dashboard/components-next/captain/assistant/InboxCard.vue';
|
||
|
|
import { inboxes } from 'dashboard/components-next/captain/pageComponents/emptyStates/captainEmptyStateContent.js';
|
||
|
|
|
||
|
|
const emit = defineEmits(['click']);
|
||
|
|
|
||
|
|
const onClick = () => {
|
||
|
|
emit('click');
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<EmptyStateLayout
|
||
|
|
:title="$t('CAPTAIN.INBOXES.EMPTY_STATE.TITLE')"
|
||
|
|
:subtitle="$t('CAPTAIN.INBOXES.EMPTY_STATE.SUBTITLE')"
|
||
|
|
:action-perms="['administrator']"
|
||
|
|
>
|
||
|
|
<template #empty-state-item>
|
||
|
|
<div class="grid grid-cols-1 gap-4 p-px overflow-hidden">
|
||
|
|
<InboxCard
|
||
|
|
v-for="(inbox, index) in inboxes.slice(0, 5)"
|
||
|
|
:id="inbox.id"
|
||
|
|
:key="`inbox-${index}`"
|
||
|
|
:inbox="inbox"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<template #actions>
|
||
|
|
<Button
|
||
|
|
:label="$t('CAPTAIN.INBOXES.ADD_NEW')"
|
||
|
|
icon="i-lucide-plus"
|
||
|
|
@click="onClick"
|
||
|
|
/>
|
||
|
|
</template>
|
||
|
|
</EmptyStateLayout>
|
||
|
|
</template>
|