2026-04-24 14:36:34 +02:00
|
|
|
'use client';
|
|
|
|
|
|
2026-05-06 22:21:23 +02:00
|
|
|
import { useState } from 'react';
|
|
|
|
|
import { useQuery } from '@tanstack/react-query';
|
|
|
|
|
|
2026-04-24 14:36:34 +02:00
|
|
|
import { ReservationList, type ReservationRow } from '@/components/reservations/reservation-list';
|
2026-05-06 22:21:23 +02:00
|
|
|
import { Button } from '@/components/ui/button';
|
|
|
|
|
import { apiFetch } from '@/lib/api/client';
|
2026-04-24 14:36:34 +02:00
|
|
|
|
|
|
|
|
interface ClientReservationsTabProps {
|
|
|
|
|
clientId: string;
|
|
|
|
|
activeReservations: Array<{
|
|
|
|
|
id: string;
|
|
|
|
|
berthId: string;
|
|
|
|
|
yachtId: string;
|
|
|
|
|
startDate: string | Date;
|
|
|
|
|
tenureType: string;
|
|
|
|
|
status: string;
|
|
|
|
|
}>;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-06 22:21:23 +02:00
|
|
|
interface ReservationListResponse {
|
|
|
|
|
data: ReservationRow[];
|
|
|
|
|
pagination?: { total: number };
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-24 14:36:34 +02:00
|
|
|
export function ClientReservationsTab({
|
|
|
|
|
clientId,
|
|
|
|
|
activeReservations,
|
|
|
|
|
}: ClientReservationsTabProps) {
|
2026-05-06 22:21:23 +02:00
|
|
|
const [showHistory, setShowHistory] = useState(false);
|
|
|
|
|
|
|
|
|
|
const activeRows: ReservationRow[] = activeReservations.map((r) => ({
|
2026-04-24 14:36:34 +02:00
|
|
|
id: r.id,
|
|
|
|
|
berthId: r.berthId,
|
2026-05-06 22:21:23 +02:00
|
|
|
portId: '',
|
2026-04-24 14:36:34 +02:00
|
|
|
clientId,
|
|
|
|
|
yachtId: r.yachtId,
|
|
|
|
|
status: r.status as ReservationRow['status'],
|
|
|
|
|
startDate: typeof r.startDate === 'string' ? r.startDate : r.startDate.toISOString(),
|
|
|
|
|
endDate: null,
|
|
|
|
|
tenureType: r.tenureType,
|
|
|
|
|
contractFileId: null,
|
|
|
|
|
notes: null,
|
|
|
|
|
createdAt: '',
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-06 22:21:23 +02:00
|
|
|
// Lazy-load history (ended + cancelled). Two parallel queries because
|
|
|
|
|
// the API takes one status at a time; combining once both resolve.
|
|
|
|
|
const endedQuery = useQuery({
|
|
|
|
|
queryKey: ['reservations', { clientId, status: 'ended' }],
|
|
|
|
|
queryFn: () =>
|
|
|
|
|
apiFetch<ReservationListResponse>(
|
|
|
|
|
`/api/v1/berth-reservations?clientId=${encodeURIComponent(clientId)}&status=ended&pageSize=50`,
|
|
|
|
|
),
|
|
|
|
|
enabled: showHistory,
|
|
|
|
|
});
|
|
|
|
|
const cancelledQuery = useQuery({
|
|
|
|
|
queryKey: ['reservations', { clientId, status: 'cancelled' }],
|
|
|
|
|
queryFn: () =>
|
|
|
|
|
apiFetch<ReservationListResponse>(
|
|
|
|
|
`/api/v1/berth-reservations?clientId=${encodeURIComponent(clientId)}&status=cancelled&pageSize=50`,
|
|
|
|
|
),
|
|
|
|
|
enabled: showHistory,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const historyRows: ReservationRow[] = [
|
|
|
|
|
...(endedQuery.data?.data ?? []),
|
|
|
|
|
...(cancelledQuery.data?.data ?? []),
|
|
|
|
|
].sort((a, b) => (a.startDate < b.startDate ? 1 : -1));
|
|
|
|
|
|
|
|
|
|
const isHistoryLoading = showHistory && (endedQuery.isLoading || cancelledQuery.isLoading);
|
|
|
|
|
|
2026-04-24 14:36:34 +02:00
|
|
|
return (
|
2026-05-06 22:21:23 +02:00
|
|
|
<div className="space-y-6">
|
|
|
|
|
<div>
|
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
|
<h3 className="text-sm font-medium">Active reservations</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<ReservationList
|
|
|
|
|
reservations={activeRows}
|
|
|
|
|
showBerth
|
|
|
|
|
emptyMessage="This client has no active reservations."
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-04-24 14:36:34 +02:00
|
|
|
<div>
|
2026-05-06 22:21:23 +02:00
|
|
|
<div className="flex items-center justify-between mb-2">
|
|
|
|
|
<h3 className="text-sm font-medium">History</h3>
|
|
|
|
|
<Button
|
|
|
|
|
size="sm"
|
|
|
|
|
variant="outline"
|
|
|
|
|
onClick={() => setShowHistory((v) => !v)}
|
|
|
|
|
disabled={isHistoryLoading}
|
|
|
|
|
>
|
|
|
|
|
{showHistory ? 'Hide history' : 'Show history'}
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
{showHistory ? (
|
|
|
|
|
isHistoryLoading ? (
|
|
|
|
|
<p className="text-xs text-muted-foreground">Loading…</p>
|
|
|
|
|
) : (
|
|
|
|
|
<ReservationList
|
|
|
|
|
reservations={historyRows}
|
|
|
|
|
showBerth
|
|
|
|
|
emptyMessage="No ended or cancelled reservations."
|
|
|
|
|
/>
|
|
|
|
|
)
|
|
|
|
|
) : (
|
|
|
|
|
<p className="text-xs text-muted-foreground">
|
|
|
|
|
Click “Show history” to load ended and cancelled reservations.
|
|
|
|
|
</p>
|
|
|
|
|
)}
|
2026-04-24 14:36:34 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|