'use client'; import { useEffect, useState } from 'react'; import { useTranslations } from 'next-intl'; import { Button } from '@/components/ui/shared/Button'; import { Checkbox } from '@/components/ui/shared/Checkbox'; import { Dropdown } from '@/components/ui/shared/Dropdown'; import { FORM_SELECT_CLASS } from '@/components/ui/shared/formSelectStyles'; import { SearchBar } from '@/components/ui/shared/SearchBar'; import { CaseSentLabel } from '@/components/ui/treatment/CaseSentLabel'; import { LabCaseCommentsPanel } from '@/components/ui/lab/LabCaseCommentsPanel'; import { treatmentTypeLabelFromCatalog } from '@/components/ui/treatment/treatmentTypeDisplay'; import { treatmentsApi } from '@/lib/api/treatments'; import { prosthesisCatalogApi } from '@/lib/api/prosthesis-catalog'; import type { ProsthesisCatalogEntry, TreatmentCatalogEntry } from '@/types/treatment-catalog'; import type { LabCaseDraft, LinkedOrganizationOption, TreatmentDetailDraft } from '@/types/treatment'; interface LabCasesDispatchPanelProps { details: TreatmentDetailDraft[]; activeDetailId: string; labCases: LabCaseDraft[]; labDependentCodes: Set; treatmentCatalog: TreatmentCatalogEntry[]; activeLabCaseId: string | null; onActiveLabCaseChange: (id: string) => void; onLabCasesChange: (labCases: LabCaseDraft[]) => void; disabled: boolean; canEdit: boolean; orgs: LinkedOrganizationOption[]; organizationSearch: string; onOrganizationSearchChange: (value: string) => void; recentOrganizationIds: string[]; onRecentOrganizationPick: (orgId: string) => void; sendBusyId: string | null; onAddLabCase: () => void; onSendLabCase: (labCase: LabCaseDraft) => void; onCommentError?: (message: string) => void; } function sentDetailClientIds(labCases: LabCaseDraft[]): Set { const ids = new Set(); for (const lc of labCases) { if (!lc.sentAt) continue; for (const id of lc.detailClientIds) ids.add(id); } return ids; } function detailInOtherDraftShipment( detailClientId: string, labCases: LabCaseDraft[], activeLabCaseClientId: string, ): boolean { return labCases.some( (lc) => !lc.sentAt && lc.clientId !== activeLabCaseClientId && lc.detailClientIds.includes(detailClientId), ); } function selectableDetailsForDraftShipment( details: TreatmentDetailDraft[], labCases: LabCaseDraft[], labDependentCodes: Set, activeLabCase: LabCaseDraft, ): TreatmentDetailDraft[] { const sent = sentDetailClientIds(labCases); return details.filter((d) => { if (!labDependentCodes.has(d.treatmentType)) return false; if (sent.has(d.clientId)) return false; if (activeLabCase.detailClientIds.includes(d.clientId)) return true; return !detailInOtherDraftShipment(d.clientId, labCases, activeLabCase.clientId); }); } function prosthesisTeethRows( labCase: LabCaseDraft, details: TreatmentDetailDraft[], scopeDetailClientId?: string, ): Array<{ detailClientId: string; tooth: string; detailNumber: number }> { const rows: Array<{ detailClientId: string; tooth: string; detailNumber: number }> = []; for (const clientId of labCase.detailClientIds) { if (scopeDetailClientId && clientId !== scopeDetailClientId) continue; const detail = details.find((d) => d.clientId === clientId); if (!detail || detail.treatmentType !== 'prosthesis') continue; const detailNumber = details.findIndex((d) => d.clientId === clientId) + 1; for (const tooth of detail.teeth) { rows.push({ detailClientId: clientId, tooth, detailNumber }); } } return rows; } function isProsthesisMapComplete( labCase: LabCaseDraft, details: TreatmentDetailDraft[], scopeDetailClientId?: string, ): boolean { const rows = prosthesisTeethRows(labCase, details, scopeDetailClientId); if (rows.length === 0) return true; return rows.every((row) => labCase.toothProsthesis.some( (tp) => tp.detailClientId === row.detailClientId && tp.tooth === row.tooth && Boolean(tp.prosthesisTypeCode), ), ); } export function LabCasesDispatchPanel({ details, activeDetailId, labCases, labDependentCodes, treatmentCatalog, activeLabCaseId, onActiveLabCaseChange, onLabCasesChange, disabled, canEdit, orgs, organizationSearch, onOrganizationSearchChange, recentOrganizationIds, onRecentOrganizationPick, sendBusyId, onAddLabCase, onSendLabCase, onCommentError, }: LabCasesDispatchPanelProps) { const t = useTranslations('treatment'); const [prosthesisOptions, setProsthesisOptions] = useState([]); const [applyAllProsthesis, setApplyAllProsthesis] = useState(''); const activeLinkedOrganizations = orgs.filter((o) => o.active); const filteredOrganizations = (() => { const q = organizationSearch.trim().toLowerCase(); if (!q) return activeLinkedOrganizations; return activeLinkedOrganizations.filter((o) => o.name.toLowerCase().includes(q)); })(); const recentOrganizations = recentOrganizationIds .map((id) => activeLinkedOrganizations.find((o) => o.id === id)) .filter(Boolean) as LinkedOrganizationOption[]; const activeDetail = details.find((d) => d.clientId === activeDetailId) ?? null; const isLabDependentDetail = Boolean( activeDetail && labDependentCodes.has(activeDetail.treatmentType), ); const labCaseForActiveDetail = labCases.find((lc) => lc.detailClientIds.includes(activeDetailId)) ?? null; const activeLabCase = labCaseForActiveDetail ?? (activeLabCaseId ? labCases.find((lc) => lc.clientId === activeLabCaseId) : null); const detailAlreadyInShipment = Boolean(labCaseForActiveDetail); const canAddLabShipment = !detailAlreadyInShipment && !detailInOtherDraftShipment(activeDetailId, labCases, '') && !sentDetailClientIds(labCases).has(activeDetailId); const sent = Boolean(activeLabCase?.sentAt); const activeLabOrgName = activeLabCase?.destinationOrganizationId ? orgs.find((o) => o.id === activeLabCase.destinationOrganizationId)?.name : null; const prosthesisRows = activeLabCase ? prosthesisTeethRows(activeLabCase, details, activeDetailId) : []; const prosthesisComplete = activeLabCase ? isProsthesisMapComplete(activeLabCase, details, activeDetailId) : true; useEffect(() => { if (!activeLabCase?.destinationOrganizationId) { setProsthesisOptions([]); return; } let cancelled = false; void prosthesisCatalogApi .list(activeLabCase.destinationOrganizationId) .then((res) => { if (!cancelled) setProsthesisOptions(res.data); }) .catch(() => { if (!cancelled) setProsthesisOptions([]); }); return () => { cancelled = true; }; }, [activeLabCase?.destinationOrganizationId]); // Hide dispatch when the selected treatment detail is not lab-dependent. if (!activeDetail || !isLabDependentDetail) { return null; } function detailNumber(d: TreatmentDetailDraft) { const idx = details.findIndex((row) => row.clientId === d.clientId); return idx >= 0 ? idx + 1 : 0; } function detailSummary(d: TreatmentDetailDraft) { const typeLabel = treatmentTypeLabelFromCatalog(d.treatmentType, treatmentCatalog); const teeth = d.teeth.length ? d.teeth.join(', ') : t('teethNone'); return `${t('detailLabel', { n: detailNumber(d) })} · ${typeLabel} · ${teeth}`; } function updateActiveLabCase(patch: Partial) { if (!activeLabCase) return; onLabCasesChange( labCases.map((lc) => (lc.clientId === activeLabCase.clientId ? { ...lc, ...patch } : lc)), ); } function setToothProsthesis( detailClientId: string, tooth: string, prosthesisTypeCode: string, ) { if (!activeLabCase) return; const rest = activeLabCase.toothProsthesis.filter( (tp) => !(tp.detailClientId === detailClientId && tp.tooth === tooth), ); const next = prosthesisTypeCode ? [...rest, { detailClientId, tooth, prosthesisTypeCode }] : rest; updateActiveLabCase({ toothProsthesis: next }); } function applyProsthesisToAll(code: string) { if (!activeLabCase || !code) return; const next = prosthesisRows.map((row) => ({ detailClientId: row.detailClientId, tooth: row.tooth, prosthesisTypeCode: code, })); updateActiveLabCase({ toothProsthesis: next }); } function toggleDetailInActiveLabCase(detailClientId: string, checked: boolean) { if (!activeLabCase || sent) return; onLabCasesChange( labCases.map((lc) => { if (lc.sentAt) return lc; if (lc.clientId === activeLabCase.clientId) { const set = new Set(lc.detailClientIds); if (checked) set.add(detailClientId); else set.delete(detailClientId); const keptProsthesis = lc.toothProsthesis.filter((tp) => [...set].includes(tp.detailClientId), ); return { ...lc, detailClientIds: [...set], toothProsthesis: keptProsthesis }; } if (checked) { return { ...lc, detailClientIds: lc.detailClientIds.filter((id) => id !== detailClientId), }; } return lc; }), ); } const includedInActiveShipment = activeLabCase ? [activeDetail] : []; const pickableForActiveDraft = activeLabCase && !sent ? selectableDetailsForDraftShipment(details, labCases, labDependentCodes, activeLabCase).filter( (d) => d.clientId === activeDetailId, ) : []; return (

{t('labDispatchTitle')}

{t('labDispatchSubtitle')} {t('labDispatchSendHint')}

{canAddLabShipment && ( )}
{!detailAlreadyInShipment ? (

{t('labDispatchEmpty')}

) : activeLabCase ? (
{sent ? ( <>

{t('labShipmentIncludedDetails')}

{includedInActiveShipment.length === 0 ? (

{t('labShipmentNoIncludedDetails')}

) : (
    {includedInActiveShipment.map((d) => (
  • {detailSummary(d)}
  • ))}
)}
{activeLabCase.id ? ( { const r = await treatmentsApi.listLabCaseComments(activeLabCase.id!); return r.data; }} onPost={async () => { throw new Error('Read-only'); }} onError={onCommentError} /> ) : null} {activeLabOrgName ? (

{t('selectLab')}

{activeLabOrgName}

) : null} ) : ( <>

{t('includeDetails')}

{pickableForActiveDraft.length === 0 ? (

{t('labShipmentNoDetailsAvailable')}

) : (
{pickableForActiveDraft.map((d) => { const checked = activeLabCase.detailClientIds.includes(d.clientId); return ( toggleDetailInActiveLabCase(d.clientId, next)} label={detailSummary(d)} /> ); })}
)}
{activeLabCase.id ? ( { const r = await treatmentsApi.listLabCaseComments(activeLabCase.id!); return r.data; }} onPost={async (body) => { const r = await treatmentsApi.addLabCaseComment(activeLabCase.id!, { body }); return r.data; }} onError={onCommentError} /> ) : null}

{t('selectLab')}

{recentOrganizations.length > 0 && (
{t('recent')} {recentOrganizations.map((o) => ( ))}
)} { const nextOrgId = e.target.value || null; updateActiveLabCase({ destinationOrganizationId: nextOrgId, toothProsthesis: [], }); setApplyAllProsthesis(''); }} disabled={disabled || filteredOrganizations.length === 0} > {filteredOrganizations.map((o) => ( ))} {filteredOrganizations.length === 0 && (

{t('noOrgMatch')}

)}
{prosthesisRows.length > 0 && activeLabCase.destinationOrganizationId ? (

{t('prosthesisTypesTitle')}

{prosthesisRows.map((row) => { const current = activeLabCase.toothProsthesis.find( (tp) => tp.detailClientId === row.detailClientId && tp.tooth === row.tooth, )?.prosthesisTypeCode ?? ''; return ( ); })}
{t('prosthesisColTooth')} {t('prosthesisColDetail')} {t('prosthesisColType')}
{row.tooth} {t('detailLabel', { n: row.detailNumber })}
) : null}
)}
) : null}
); }