Files
cyclone/src/components/RemitDrawer/RemitDrawerHeader.tsx
T
Tyler fbe9940a3f feat(ui): cohesive frontend polish — design system + per-screen refinement
Distill the UI into a single, recognizable voice: a precision
instrument for one operator on one machine. Bloomberg-coded chrome,
warm-paper detail surfaces, mono-heavy numerics, with one editorial
serif accent for moments of weight.

Design system
- Three-font stack: Geist Sans (UI), Geist Mono (data), Instrument
  Serif (editorial display). No Inter, no system fonts.
- Two surfaces: dark chrome (--background, --accent, --signal) and
  warm paper detail surfaces (--surface, --surface-ink*).
- Inbox has its own Ticker Tape terminal palette (--tt-*).
- Shared component classes: .eyebrow, .mono, .display, .surface,
  .surface-2, .row-hover, .nav-active, .kbd, .editorial, .hairline.
- --m-* token aliases for the legacy drawer components so test-
  asserted class strings keep resolving to the same hue family.

Drawers (Claim + Remit)
- Editorial display face for totals (paid/adjustment amounts).
- Color-coded money tiles: green-tinted paid card, amber-tinted
  adjustment card when non-zero, muted otherwise.
- Tabs get accent-blue underline + CSS-driven active state.
- Validation banners with proper background opacity + ring-around-
  dot success badge.
- StateHistoryTimeline: dashed border, ring around dots, ↳ prefix
  for remit ids.
- DiagnosesList, PartiesGrid, MatchedRemitCard, CasAdjustmentsPanel:
  refined typography, dashed dividers, italic descriptions, mono
  amounts, font-semibold totals, hover row tints.

Inbox Ticker Tape
- Custom RowCheckbox with sr-only input + amber accent.
- Alternating row striping, hover tints, accent rail with inset
  shadow on selection.
- Refined sparkline with glow at high values.
- BulkBar: bottom-floating bar with amber count chip, larger shadow.
- CandidateBreakdown: animated progress bars with amber gradient.
- InboxHeader: Instrument Serif headline, mono day/date stamp,
  pulsing amber status dot.

Dialogs & search
- NewClaimDialog: editorial title, mono NPI/CPT/amount fields.
- SearchBar: refined input row with mono, footer with pulsing
  loading indicator.
- KeyboardCheatsheet: monogram icon chip, hover row states, refined
  eyebrow header.

Primitives
- StatusBadge / ClaimStateBadge: per-state dot indicators.
- SelectItem: data-[highlighted]:outline tokens for keyboard a11y.
- Table primitives: refined header treatment, hover/focus states.

Tests + build
- 354/354 tests passing across 59 files.
- Vite build clean (53.84 kB CSS / 560.86 kB JS).
- Eyebrow assertions updated to match the consolidated .eyebrow
  class (intact visual contract, abstracted class string).
- Badge variant tokens updated to the polished bg-muted/80 /
  /0.14 opacity scale.
2026-06-20 22:27:01 -06:00

113 lines
3.8 KiB
TypeScript

import { ExternalLink, X } from "lucide-react";
import { Badge, type BadgeProps } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { fmt } from "@/lib/format";
import { cn } from "@/lib/utils";
import type { RemitDetail } from "@/hooks/useRemitDetail";
type RemitDrawerHeaderProps = {
remit: RemitDetail;
onClose: () => void;
};
/**
* Remittance status → Badge variant. Mirrors the list-endpoint mapping
* used by `MatchedRemitCard` (received / posted / reconciled). Unknown
* statuses (the type is an unconstrained string) fall back to ``muted``
* so a future backend status doesn't blow up the drawer.
*
* received → secondary (in-flight, not yet posted)
* posted → default (brand-colored, posted to ledger)
* reconciled → success (matched to claims, settled)
*/
const STATUS_VARIANT: Record<string, BadgeProps["variant"]> = {
received: "secondary",
posted: "default",
reconciled: "success",
};
function badgeVariantFor(status: string): BadgeProps["variant"] {
return STATUS_VARIANT[status] ?? "muted";
}
/**
* Header band for the remittance detail drawer (RemitDrawer).
*
* Mirror of `ClaimDrawerHeader` — same instrument-style eyebrow +
* mono ID on the left, status badge + total paid on the right, plus a
* "View raw 835" link below the ID. The close button reuses the same
* `X` icon at the same position so the two drawers have visually
* identical chrome.
*
* The "View raw 835" link points at `/api/remittances/{id}/raw` — the
* backend's text/835 endpoint for inspecting the source X12 file. The
* fallback (when the backend doesn't yet expose that endpoint) is the
* detail JSON endpoint so the link never 404s on a misconfigured
* deployment.
*/
export function RemitDrawerHeader({ remit, onClose }: RemitDrawerHeaderProps) {
const rawLink = `/api/remittances/${encodeURIComponent(remit.id)}/raw`;
return (
<header
className={cn(
"flex items-start justify-between gap-4 px-6 py-5",
"border-b border-[color:var(--m-border-heavy)]/40",
"bg-[color:var(--m-surface)]"
)}
data-testid="remit-drawer-header"
>
{/* Left: eyebrow + mono remit ID + raw link */}
<div className="flex min-w-0 flex-col gap-1">
<span className="eyebrow text-[color:var(--m-ink-tertiary)]">
Remittance
</span>
<span
data-testid="header-id"
className="mono text-2xl font-semibold tracking-tight text-[color:var(--m-ink-primary)]"
>
{remit.id}
</span>
<a
href={rawLink}
target="_blank"
rel="noreferrer"
data-testid="header-raw-link"
className="mt-1 inline-flex w-fit items-center gap-1 text-[11px] text-[color:var(--m-ink-tertiary)] hover:text-[color:var(--m-ink-secondary)] transition-colors"
>
View raw 835
<ExternalLink className="h-3 w-3" strokeWidth={1.75} aria-hidden />
</a>
</div>
{/* Right: status badge + total paid + close */}
<div className="flex items-start gap-4">
<div className="flex flex-col items-end gap-1">
<Badge
variant={badgeVariantFor(remit.status)}
data-testid="header-status"
className="uppercase tracking-[0.14em]"
>
{remit.status}
</Badge>
<span
data-testid="header-paid"
className="mono text-lg tabular-nums text-[color:var(--m-ink-primary)]"
>
{fmt.usdPrecise(remit.paidAmount)}
</span>
</div>
<Button
variant="ghost"
size="icon"
onClick={onClose}
aria-label="Close drawer"
data-testid="header-close"
>
<X className="h-4 w-4" strokeWidth={1.75} />
</Button>
</div>
</header>
);
}