Drain the long-tail audit queue captured in alpha-uat-master.md.
- next-intl ripped out (zero useTranslations callers ever existed):
package.json, next.config.ts plugin wrap, src/i18n/, messages/, and
the layout NextIntlClientProvider all gone; <html lang="en"> hardcoded.
- RTL lint nudge added: warn-only no-restricted-syntax on physical
Tailwind utilities (ml-/mr-/pl-/pr-/text-left/text-right/border-l/
border-r/rounded-l-/rounded-r-) inside JSX className literals.
Existing ~1,000 sites grandfathered; new code trends toward logical.
- Icon-only button accessibility lint: jsx-a11y/control-has-associated-
label enabled at warn; 4 empty <th>/<td> action placeholders gain
sr-only labels.
- Currency: SUPPORTED_CURRENCIES drops the hardcoded English labels;
new currencyLabel(code, locale?) helper resolves via Intl.DisplayNames.
CurrencySelect + settings-manager migrated.
- Date locale sweep: 7 surfaces flip from toLocaleString('en-GB'|'en-US')
to toLocaleString(undefined, ...) so dates honour runtime locale.
- Dialog/Sheet width: 10 document/EOI/entity-form dialogs gain a
lg:max-w-4xl or lg:max-w-5xl step so wide desktops get breathing room.
- PaymentsSection collapsed-bar: slim one-line bar showing
"Payments - Not received yet" or "Payments - \$X received - N payments
- Expand"; per-interest collapse state persists in localStorage; the
RecordPayment flow auto-expands.
- muted-foreground opacity sweep: 10 text-bearing
text-muted-foreground/{60,70,80} hits dropped to plain
text-muted-foreground for AA contrast on muted bg. Icon-only
(aria-hidden) opacity hits left as-is.
- Micro-type bump: text-[10px] and text-[11px] -> text-xs (12px)
across 87 files in src/components + src/app. Pure mechanical sweep.
- Audit-doc cleanup: alpha-uat-master.md stale 2026-05-25 summary
rewritten with cumulative state through today. Items genuinely still
open are now a short long-tail list.
- New docs/marketing-site-followups.md: Umami Phase 4a/3/5, email
pixel E2E verification, and website-cutover work parked here so
they don't get lost in the CRM audit doc.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
153 lines
5.4 KiB
TypeScript
153 lines
5.4 KiB
TypeScript
'use client';
|
|
|
|
import type { ReactNode } from 'react';
|
|
import { Archive, MoreHorizontal, Pencil } from 'lucide-react';
|
|
|
|
import { Button } from '@/components/ui/button';
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
} from '@/components/ui/dropdown-menu';
|
|
import { CountryFlag } from '@/components/shared/country-flag';
|
|
import { TagBadge } from '@/components/shared/tag-badge';
|
|
import {
|
|
ListCard,
|
|
ListCardAvatar,
|
|
ListCardMeta,
|
|
deriveInitials,
|
|
} from '@/components/shared/list-card';
|
|
import { getCountryName } from '@/lib/i18n/countries';
|
|
import { stageBadgeClass, stageLabel, formatSource } from '@/lib/constants';
|
|
import type { ClientRow } from './client-columns';
|
|
|
|
interface ClientCardProps {
|
|
client: ClientRow;
|
|
portSlug: string;
|
|
onEdit: (client: ClientRow) => void;
|
|
onArchive: (client: ClientRow) => void;
|
|
}
|
|
|
|
export function ClientCard({ client, portSlug, onEdit, onArchive }: ClientCardProps) {
|
|
// Card display: prefer email, fall back to phone.
|
|
const primaryContactValue = client.primaryEmail ?? client.primaryPhone ?? null;
|
|
const nationality = client.nationalityIso ? getCountryName(client.nationalityIso, 'en') : null;
|
|
const sourceLabel = formatSource(client.source);
|
|
const tags = client.tags ?? [];
|
|
|
|
const metaItems: { key: string; node: ReactNode }[] = [];
|
|
if (nationality) {
|
|
metaItems.push({
|
|
key: 'nationality',
|
|
node: (
|
|
<span className="inline-flex items-center gap-1">
|
|
<CountryFlag code={client.nationalityIso} className="h-2.5 w-3.5" decorative />
|
|
<ListCardMeta>{nationality}</ListCardMeta>
|
|
</span>
|
|
),
|
|
});
|
|
}
|
|
if (sourceLabel) {
|
|
metaItems.push({ key: 'source', node: <ListCardMeta>{sourceLabel}</ListCardMeta> });
|
|
}
|
|
|
|
const interest = client.latestInterest ?? null;
|
|
const interestCount = client.interestCount ?? 0;
|
|
const interestBerthLabel = interest
|
|
? interest.mooringNumber
|
|
? `Berth ${interest.mooringNumber}`
|
|
: 'General interest'
|
|
: null;
|
|
const interestStageLabel = interest ? stageLabel(interest.stage) : null;
|
|
const interestStageBadge = interest ? stageBadgeClass(interest.stage) : null;
|
|
const extraInterests = interestCount > 1 ? interestCount - 1 : 0;
|
|
|
|
return (
|
|
<ListCard
|
|
href={`/${portSlug}/clients/${client.id}`}
|
|
ariaLabel={`Client ${client.fullName}`}
|
|
actions={
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className="h-9 w-9"
|
|
onClick={(e) => e.stopPropagation()}
|
|
aria-label={`Actions for ${client.fullName}`}
|
|
>
|
|
<MoreHorizontal className="h-4 w-4" aria-hidden />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem onClick={() => onEdit(client)}>
|
|
<Pencil className="mr-2 h-3.5 w-3.5" aria-hidden />
|
|
Edit
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem className="text-destructive" onClick={() => onArchive(client)}>
|
|
<Archive className="mr-2 h-3.5 w-3.5" aria-hidden />
|
|
Archive
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
}
|
|
>
|
|
<div className="flex items-start gap-3">
|
|
<ListCardAvatar initials={deriveInitials(client.fullName)} />
|
|
<div className="min-w-0 flex-1">
|
|
<div className="flex items-start justify-between gap-2">
|
|
<h3 className="truncate text-base font-semibold tracking-tight text-foreground">
|
|
{client.fullName}
|
|
</h3>
|
|
<span aria-hidden className="block h-9 w-9 shrink-0" />
|
|
</div>
|
|
|
|
{primaryContactValue ? (
|
|
<p className="truncate text-sm text-muted-foreground">{primaryContactValue}</p>
|
|
) : null}
|
|
|
|
{metaItems.length > 0 ? (
|
|
<div className="mt-0.5 flex flex-wrap items-center gap-x-1.5 text-xs text-muted-foreground">
|
|
{metaItems.map((m, i) => (
|
|
<span key={m.key} className="inline-flex items-center gap-1">
|
|
{i > 0 ? <span aria-hidden>·</span> : null}
|
|
{m.node}
|
|
</span>
|
|
))}
|
|
</div>
|
|
) : null}
|
|
|
|
{interest ? (
|
|
<div className="mt-1 flex items-center gap-1.5 text-xs text-muted-foreground">
|
|
<span className="truncate">{interestBerthLabel}</span>
|
|
<span aria-hidden>·</span>
|
|
<span
|
|
className={`shrink-0 rounded-full px-1.5 py-0.5 text-xs font-medium ${interestStageBadge}`}
|
|
>
|
|
{interestStageLabel}
|
|
</span>
|
|
{extraInterests > 0 ? (
|
|
<span className="shrink-0 text-muted-foreground/80">+{extraInterests}</span>
|
|
) : null}
|
|
</div>
|
|
) : null}
|
|
|
|
{tags.length > 0 ? (
|
|
<div className="mt-2 flex flex-wrap gap-1">
|
|
{tags.slice(0, 2).map((tag) => (
|
|
<TagBadge key={tag.id} name={tag.name} color={tag.color} />
|
|
))}
|
|
{tags.length > 2 ? (
|
|
<span className="inline-flex items-center rounded-full bg-secondary px-2 py-0.5 text-xs text-secondary-foreground">
|
|
+{tags.length - 2}
|
|
</span>
|
|
) : null}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
</ListCard>
|
|
);
|
|
}
|