mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 03:05:42 +00:00
71 lines
2.8 KiB
TypeScript
71 lines
2.8 KiB
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { useQuery } from '@tanstack/react-query';
|
|
import { Download } from 'lucide-react';
|
|
import DataTable from '@/components/ui/DataTable';
|
|
import Badge from '@/components/ui/Badge';
|
|
import ActionButton from '@/components/ui/ActionButton';
|
|
import { paymentsApi } from '@/lib/api';
|
|
import { formatDateTime, formatCurrency } from '@/lib/utils';
|
|
|
|
export default function PaymentsPage() {
|
|
const [filters, setFilters] = useState({ search: '', status: '', method: '' });
|
|
|
|
const { data, isLoading } = useQuery({
|
|
queryKey: ['payments', filters],
|
|
queryFn: () => paymentsApi.getAll(filters),
|
|
});
|
|
|
|
const columns = [
|
|
{ key: 'reference', label: 'Reference', render: (payment: any) => <span className="font-mono">{payment.reference || payment.id?.substring(0, 8)}</span> },
|
|
{ key: 'booking', label: 'Booking', render: (payment: any) => payment.booking?.bookingRef || 'N/A' },
|
|
{ key: 'amount', label: 'Amount', render: (payment: any) => formatCurrency(payment.amountMinor, payment.currency) },
|
|
{ key: 'method', label: 'Method', render: (payment: any) => <Badge>{payment.method}</Badge> },
|
|
{ key: 'status', label: 'Status', render: (payment: any) => <Badge variant="status" status={payment.status}>{payment.status}</Badge> },
|
|
{ key: 'createdAt', label: 'Created', render: (payment: any) => formatDateTime(payment.createdAt) },
|
|
];
|
|
|
|
const actions: any[] = [];
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-foreground">Payments</h1>
|
|
<p className="text-muted-foreground">Manage payment transactions and refunds</p>
|
|
</div>
|
|
<ActionButton icon={Download} variant="secondary">Export</ActionButton>
|
|
</div>
|
|
|
|
<div className="card">
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
|
|
|
|
<div>
|
|
<label className="label">Search</label>
|
|
<input type="text" placeholder="Search..." className="input" value={filters.search} onChange={(e) => setFilters({ ...filters, search: e.target.value })} />
|
|
</div>
|
|
<div>
|
|
<label className="label">Status</label>
|
|
<select className="input" value={filters.status} onChange={(e) => setFilters({ ...filters, status: e.target.value })}>
|
|
<option value="">All Status</option>
|
|
<option value="PENDING">Pending</option>
|
|
<option value="COMPLETED">Completed</option>
|
|
<option value="FAILED">Failed</option>
|
|
</select>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<DataTable
|
|
data={(data as any)?.items || (Array.isArray(data) ? data : [])}
|
|
columns={columns}
|
|
actions={actions}
|
|
loading={isLoading}
|
|
emptyMessage="No payments found"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|