mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
39 lines
1.0 KiB
Vue
39 lines
1.0 KiB
Vue
<script setup>
|
|
import { ONGOING_CAMPAIGN_EMPTY_STATE_CONTENT } from './CampaignEmptyStateContent';
|
|
|
|
import EmptyStateLayout from 'dashboard/components-next/EmptyStateLayout.vue';
|
|
import CampaignCard from 'dashboard/components-next/Campaigns/CampaignCard/CampaignCard.vue';
|
|
|
|
defineProps({
|
|
title: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
subtitle: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<EmptyStateLayout :title="title" :subtitle="subtitle">
|
|
<template #empty-state-item>
|
|
<div class="flex flex-col gap-4 p-px">
|
|
<CampaignCard
|
|
v-for="campaign in ONGOING_CAMPAIGN_EMPTY_STATE_CONTENT"
|
|
:key="campaign.id"
|
|
:title="campaign.title"
|
|
:message="campaign.message"
|
|
:is-enabled="campaign.enabled"
|
|
:status="campaign.campaign_status"
|
|
:sender="campaign.sender"
|
|
:inbox="campaign.inbox"
|
|
:scheduled-at="campaign.scheduled_at"
|
|
is-live-chat-type
|
|
/>
|
|
</div>
|
|
</template>
|
|
</EmptyStateLayout>
|
|
</template>
|