Files
myeasycms-v2/apps/web/app/[locale]/home/[account]/finance/sepa/page.tsx
T. Zehetbauer c6d564836f
Some checks failed
Workflow / ʦ TypeScript (push) Failing after 17m4s
Workflow / ⚫️ Test (push) Has been skipped
fix: add missing newlines at the end of JSON files; clean up formatting in page components
2026-04-02 11:02:58 +02:00

162 lines
5.8 KiB
TypeScript

import Link from 'next/link';
import { Landmark, Plus } from 'lucide-react';
import { getTranslations } from 'next-intl/server';
import { createFinanceApi } from '@kit/finance/api';
import { formatDate } from '@kit/shared/dates';
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';
import {
BATCH_STATUS_VARIANT,
BATCH_STATUS_LABEL_KEYS,
} from '~/lib/status-badges';
interface PageProps {
params: Promise<{ account: string }>;
}
const formatCurrency = (amount: unknown) =>
new Intl.NumberFormat('de-DE', { style: 'currency', currency: 'EUR' }).format(
Number(amount),
);
export default async function SepaPage({ params }: PageProps) {
const { account } = await params;
const client = getSupabaseServerClient();
const t = await getTranslations('finance');
const { data: acct } = await client
.from('accounts')
.select('id')
.eq('slug', account)
.single();
if (!acct) return <AccountNotFound />;
const api = createFinanceApi(client);
const batchesResult = await api.listBatches(acct.id);
const batches = batchesResult.data;
return (
<CmsPageShell account={account} title={t('sepa.title')}>
<div className="flex w-full flex-col gap-6">
{/* Header */}
<div className="flex items-center justify-between">
<div>
<p className="text-muted-foreground">
Lastschrifteinzüge verwalten
</p>
</div>
<Button asChild>
<Link href={`/home/${account}/finance/sepa/new`}>
<Plus className="mr-2 h-4 w-4" />
{t('nav.newBatch')}
</Link>
</Button>
</div>
{/* Table or Empty State */}
{batches.length === 0 ? (
<EmptyState
icon={<Landmark className="h-8 w-8" />}
title={t('sepa.noBatches')}
description={t('sepa.createFirst')}
actionLabel={t('nav.newBatch')}
actionHref={`/home/${account}/finance/sepa/new`}
/>
) : (
<Card>
<CardHeader>
<CardTitle>
{t('sepa.title')} ({batches.length})
</CardTitle>
</CardHeader>
<CardContent>
<div className="overflow-x-auto rounded-md border">
<table className="w-full min-w-[640px] text-sm">
<thead>
<tr className="bg-muted/50 border-b">
<th scope="col" className="p-3 text-left font-medium">
{t('common.status')}
</th>
<th scope="col" className="p-3 text-left font-medium">
{t('common.type')}
</th>
<th scope="col" className="p-3 text-left font-medium">
{t('common.description')}
</th>
<th scope="col" className="p-3 text-right font-medium">
{t('sepa.totalAmount')}
</th>
<th scope="col" className="p-3 text-right font-medium">
{t('sepa.itemCount')}
</th>
<th scope="col" className="p-3 text-left font-medium">
{t('sepa.executionDate')}
</th>
</tr>
</thead>
<tbody>
{batches.map((batch: Record<string, unknown>) => (
<tr
key={String(batch.id)}
className="hover:bg-muted/30 border-b"
>
<td className="p-3">
<Badge
variant={
BATCH_STATUS_VARIANT[String(batch.status)] ??
'secondary'
}
>
{t(
BATCH_STATUS_LABEL_KEYS[String(batch.status)] ??
String(batch.status),
)}
</Badge>
</td>
<td className="p-3">
{batch.batch_type === 'direct_debit'
? t('sepa.directDebit')
: t('sepa.creditTransfer')}
</td>
<td className="p-3">
<Link
href={`/home/${account}/finance/sepa/${String(batch.id)}`}
className="hover:underline"
>
{String(batch.description ?? '—')}
</Link>
</td>
<td className="p-3 text-right">
{batch.total_amount != null
? formatCurrency(batch.total_amount)
: '—'}
</td>
<td className="p-3 text-right">
{String(batch.item_count ?? 0)}
</td>
<td className="p-3">
{formatDate(batch.execution_date as string | null)}
</td>
</tr>
))}
</tbody>
</table>
</div>
</CardContent>
</Card>
)}
</div>
</CmsPageShell>
);
}