import { FileText, Plus } from 'lucide-react'; import { getTranslations } from 'next-intl/server'; import { createNewsletterApi } from '@kit/newsletter/api'; import { CreateTemplateDialog } from '@kit/newsletter/components'; import { getSupabaseServerClient } from '@kit/supabase/server-client'; import { Badge } from '@kit/ui/badge'; import { Button } from '@kit/ui/button'; import { Card, CardContent, CardHeader, CardTitle } from '@kit/ui/card'; import { AccountNotFound } from '~/components/account-not-found'; import { CmsPageShell } from '~/components/cms-page-shell'; import { EmptyState } from '~/components/empty-state'; interface PageProps { params: Promise<{ account: string }>; } export default async function NewsletterTemplatesPage({ params }: PageProps) { const { account } = await params; const client = getSupabaseServerClient(); const t = await getTranslations('newsletter'); const { data: acct } = await client .from('accounts') .select('id') .eq('slug', account) .single(); if (!acct) return ; const api = createNewsletterApi(client); const templatesResult = await api.listTemplates(acct.id); const templates = templatesResult.data; return (
{/* Header */}

{t('templates.subtitle')}

{/* Table or Empty State */} {templates.length === 0 ? ( } title={t('templates.noTemplates')} description={t('templates.createFirst')} actionLabel={t('templates.newTemplate')} /> ) : ( {t('templates.allTemplates', { count: templates.length })}
{templates.map((template: Record) => { const variables = Array.isArray(template.variables) ? (template.variables as string[]) : []; return ( ); })}
{t('templates.name')} {t('templates.subject')} {t('templates.variables')}
{String(template.name ?? '—')} {String(template.subject ?? '—')}
{variables.length > 0 ? ( variables.map((v) => ( {`{{${v}}}`} )) ) : ( )}
)}
); }