Residential platform - New schema: residentialClients, residentialInterests (separate from marina/yacht clients) with migration 0010 - Service layer with CRUD + audit + sockets + per-port portal toggle - v1 + public API routes (/api/v1/residential/*, /api/public/residential-inquiries) - List + detail pages with inline editing for clients and interests - Per-user residentialAccess toggle on userPortRoles (migration 0011) - Permission keys: residential_clients, residential_interests - Sidebar nav + role form integration - Smoke spec covering page loads, UI create flow, public endpoint Admin & shared UI - Admin → Forms (form templates CRUD) with validators + service - Notification preferences page (in-app + email per type) - Email composition + accounts list + threads view - Branded auth shell shared across CRM + portal auth surfaces - Inline editing extended to yacht/company/interest detail pages - InlineTagEditor + per-entity tags endpoints (yachts, companies) - Notes service polymorphic across clients/interests/yachts/companies - Client list columns: yachtCount + companyCount badges - Reservation file-download via presigned URL (replaces stale <a href>) Route handler refactor - Extracted yachts/companies/berths reservation handlers to sibling handlers.ts files (Next.js 15 route.ts only allows specific exports) Reliability fixes - apiFetch double-stringify bug fixed across 13 components (apiFetch already JSON.stringifies its body; passing a stringified body produced double-encoded JSON which failed zod validation) - SocketProvider gated behind useSyncExternalStore-based mount check to avoid useSession() SSR crashes under React 19 + Next 15 - apiFetch falls back to URL-pathname → port-id resolution when the Zustand store hasn't hydrated yet (fresh contexts, e2e tests) - CRM invite flow (schema, service, route, email, dev script) - Dashboard route → [portSlug]/dashboard/page.tsx + redirect - Document the dev-server restart-after-migration gotcha in CLAUDE.md Tests - 5-case residential smoke spec - Integration test updates for new service signatures Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
84 lines
2.4 KiB
TypeScript
84 lines
2.4 KiB
TypeScript
'use client';
|
|
|
|
import { useMutation } from '@tanstack/react-query';
|
|
import { ArrowRight, Loader2 } from 'lucide-react';
|
|
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from '@/components/ui/dialog';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Badge } from '@/components/ui/badge';
|
|
import { apiFetch } from '@/lib/api/client';
|
|
|
|
interface BerthStatusSuggestionDialogProps {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
berthId: string;
|
|
currentStatus: string;
|
|
suggestedStatus: string;
|
|
reason: string;
|
|
onApplied: () => void;
|
|
}
|
|
|
|
export function BerthStatusSuggestionDialog({
|
|
open,
|
|
onOpenChange,
|
|
berthId,
|
|
currentStatus,
|
|
suggestedStatus,
|
|
reason,
|
|
onApplied,
|
|
}: BerthStatusSuggestionDialogProps) {
|
|
const applyMutation = useMutation({
|
|
mutationFn: () =>
|
|
apiFetch(`/api/v1/berths/${berthId}/status`, {
|
|
method: 'PATCH',
|
|
body: { status: suggestedStatus, reason },
|
|
}),
|
|
onSuccess: () => {
|
|
onApplied();
|
|
onOpenChange(false);
|
|
},
|
|
});
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="sm:max-w-md">
|
|
<DialogHeader>
|
|
<DialogTitle>Suggested Status Change</DialogTitle>
|
|
<DialogDescription>
|
|
Based on recent activity, a berth status update is recommended.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<div className="flex items-center justify-center gap-4 py-4">
|
|
<Badge variant="outline" className="text-base px-4 py-1.5">
|
|
{currentStatus.replace(/_/g, ' ')}
|
|
</Badge>
|
|
<ArrowRight className="h-5 w-5 text-muted-foreground" />
|
|
<Badge variant="default" className="text-base px-4 py-1.5">
|
|
{suggestedStatus.replace(/_/g, ' ')}
|
|
</Badge>
|
|
</div>
|
|
|
|
{reason && <p className="text-sm text-muted-foreground text-center px-4">{reason}</p>}
|
|
|
|
<DialogFooter className="gap-2">
|
|
<Button variant="outline" onClick={() => onOpenChange(false)}>
|
|
Dismiss
|
|
</Button>
|
|
<Button onClick={() => applyMutation.mutate()} disabled={applyMutation.isPending}>
|
|
{applyMutation.isPending && <Loader2 className="mr-1.5 h-4 w-4 animate-spin" />}
|
|
Apply Change
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|