"use client"; import { useState, useEffect, useMemo } from "react"; import { formatDate } from "~/lib/format.js"; import { trpc } from "~/lib/trpc/client.js"; import { AllocationModal } from "./AllocationModal.js"; import type { AllocationLike, AllocationReadModel, AllocationWithDetails, ColumnDef } from "@planarchy/shared"; import { AllocationStatus, ALLOCATION_COLUMNS } from "@planarchy/shared"; import { useSelection } from "~/hooks/useSelection.js"; import { BatchActionBar } from "~/components/ui/BatchActionBar.js"; import { ConfirmDialog } from "~/components/ui/ConfirmDialog.js"; import { FilterBar } from "~/components/ui/FilterBar.js"; import { FilterChips } from "~/components/ui/FilterChips.js"; import { ResourceCombobox } from "~/components/ui/ResourceCombobox.js"; import { ProjectCombobox } from "~/components/ui/ProjectCombobox.js"; import { ColumnTogglePanel } from "~/components/ui/ColumnTogglePanel.js"; import { SortableColumnHeader } from "~/components/ui/SortableColumnHeader.js"; import { useTableSort } from "~/hooks/useTableSort.js"; import { usePermissions } from "~/hooks/usePermissions.js"; import { useColumnConfig } from "~/hooks/useColumnConfig.js"; import { useViewPrefs } from "~/hooks/useViewPrefs.js"; import { getPlanningEntryMutationId } from "~/lib/planningEntryIds.js"; const STATUS_BADGE: Record = { ACTIVE: "bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400", PROPOSED: "bg-yellow-100 text-yellow-700 dark:bg-yellow-900/30 dark:text-yellow-400", CONFIRMED: "bg-blue-100 text-blue-700 dark:bg-blue-900/30 dark:text-blue-400", COMPLETED: "bg-gray-100 text-gray-600 dark:bg-gray-700 dark:text-gray-400", CANCELLED: "bg-red-100 text-red-600 dark:bg-red-900/30 dark:text-red-400", }; const ALL_ALLOC_STATUSES = [ { value: "PROPOSED", label: "Proposed" }, { value: "CONFIRMED", label: "Confirmed" }, { value: "ACTIVE", label: "Active" }, { value: "COMPLETED", label: "Completed" }, { value: "CANCELLED", label: "Cancelled" }, ] as const; type AllocationAssignmentsView = AllocationReadModel; type DemandRow = AllocationWithDetails & { sourceAllocationId?: string; requestedHeadcount?: number; unfilledHeadcount?: number; }; export function AllocationsClient() { const [modalOpen, setModalOpen] = useState(false); const [editingAllocation, setEditingAllocation] = useState(null); const [filterProjectId, setFilterProjectId] = useState(""); const [filterResourceId, setFilterResourceId] = useState(""); const [filterStatus, setFilterStatus] = useState(""); const [hidePastProjects, setHidePastProjects] = useState(true); const [hideCompletedProjects, setHideCompletedProjects] = useState(true); const [hideDraftProjects, setHideDraftProjects] = useState(false); const [confirmDelete, setConfirmDelete] = useState<{ single?: AllocationWithDetails; ids?: string[] } | null>(null); const [batchStatusPicker, setBatchStatusPicker] = useState(false); const [confirmBatchStatus, setConfirmBatchStatus] = useState<{ ids: string[]; status: string } | null>(null); const selection = useSelection(); const utils = trpc.useUtils(); const { canViewCosts } = usePermissions(); // ─── Column visibility ──────────────────────────────────────────────────── const baseColumns = useMemo( () => (canViewCosts ? ALLOCATION_COLUMNS : ALLOCATION_COLUMNS.filter((c) => c.key !== "cost")), [canViewCosts], ); const { allColumns, visibleColumns, visibleKeys, setVisible } = useColumnConfig("allocations", baseColumns); const defaultKeys = useMemo(() => baseColumns.filter((c) => c.defaultVisible).map((c) => c.key), [baseColumns]); const { data: allocationView, isLoading } = trpc.allocation.listView.useQuery( { projectId: filterProjectId || undefined, resourceId: filterResourceId || undefined, status: (filterStatus as AllocationStatus) || undefined, }, // eslint-disable-next-line @typescript-eslint/no-explicit-any { placeholderData: (prev: any) => prev, staleTime: 15_000 }, ) as { data: AllocationAssignmentsView | undefined; isLoading: boolean }; const deleteDemandMutation = trpc.allocation.deleteDemandRequirement.useMutation({ onSuccess: async () => { await utils.allocation.list.invalidate(); await utils.allocation.listView.invalidate(); }, }); const deleteAssignmentMutation = trpc.allocation.deleteAssignment.useMutation({ onSuccess: async () => { await utils.allocation.list.invalidate(); await utils.allocation.listView.invalidate(); }, }); const batchDeleteMutation = trpc.allocation.batchDelete.useMutation({ onSuccess: async () => { await utils.allocation.list.invalidate(); await utils.allocation.listView.invalidate(); selection.clear(); }, }); const batchStatusMutation = trpc.allocation.batchUpdateStatus.useMutation({ onSuccess: async () => { await utils.allocation.list.invalidate(); await utils.allocation.listView.invalidate(); selection.clear(); }, }); useEffect(() => { selection.clear(); // eslint-disable-next-line react-hooks/exhaustive-deps }, [filterProjectId, filterResourceId, filterStatus, hidePastProjects, hideCompletedProjects, hideDraftProjects]); function openCreate() { setEditingAllocation(null); setModalOpen(true); } function openEdit(alloc: AllocationWithDetails) { setEditingAllocation(alloc); setModalOpen(true); } function closeModal() { setModalOpen(false); setEditingAllocation(null); } const assignmentList = (allocationView?.assignments ?? []) as unknown as AllocationWithDetails[]; const demandList = (allocationView?.demands ?? []) as unknown as DemandRow[]; const today = new Date(); today.setHours(0, 0, 0, 0); const filteredAllocations = assignmentList.filter((alloc) => { if (hidePastProjects && alloc.project?.endDate && new Date(alloc.project.endDate) < today) return false; if (hideCompletedProjects && alloc.project?.status && ["COMPLETED", "CANCELLED"].includes(alloc.project.status)) return false; if (hideDraftProjects && alloc.project?.status === "DRAFT") return false; return true; }); const filteredDemands = demandList.filter((alloc) => { if (filterResourceId) return false; if (hidePastProjects && alloc.project?.endDate && new Date(alloc.project.endDate) < today) return false; if (hideCompletedProjects && alloc.project?.status && ["COMPLETED", "CANCELLED"].includes(alloc.project.status)) return false; if (hideDraftProjects && alloc.project?.status === "DRAFT") return false; return true; }); const allocViewPrefs = useViewPrefs("allocations"); const { sorted, sortField, sortDir, toggle } = useTableSort(filteredAllocations, { initialField: allocViewPrefs.savedSort?.field ?? null, initialDir: allocViewPrefs.savedSort?.dir ?? null, onSortChange: (field, dir) => { allocViewPrefs.setSavedSort(field && dir ? { field, dir } : null); }, }); const allocationIds = sorted.map((a) => a.id); const allocationMutationIdsByDisplayId = useMemo( () => new Map( sorted.map((allocation) => [allocation.id, getPlanningEntryMutationId(allocation)]), ), [sorted], ); const selectedMutationIds = useMemo( () => selection.selectedArray.flatMap((displayId) => { const mutationId = allocationMutationIdsByDisplayId.get(displayId); return mutationId ? [mutationId] : []; }), [allocationMutationIdsByDisplayId, selection.selectedArray], ); function handleSort(field: string) { if (field === "resource") { toggle("resource", (a) => a.resource?.displayName ?? null); } else if (field === "project") { toggle("project", (a) => a.project?.name ?? null); } else { toggle(field); } } function clearAll() { setFilterProjectId(""); setFilterResourceId(""); setFilterStatus(""); setHidePastProjects(false); setHideCompletedProjects(false); setHideDraftProjects(false); } const chips = [ ...(filterProjectId ? [{ label: `Project filter active`, onRemove: () => setFilterProjectId("") }] : []), ...(filterResourceId ? [{ label: `Resource filter active`, onRemove: () => setFilterResourceId("") }] : []), ...(filterStatus ? [{ label: `Status: ${filterStatus}`, onRemove: () => setFilterStatus("") }] : []), ...(hidePastProjects ? [{ label: "Hiding past projects", onRemove: () => setHidePastProjects(false) }] : []), ...(hideCompletedProjects ? [{ label: "Hiding completed/cancelled", onRemove: () => setHideCompletedProjects(false) }] : []), ...(hideDraftProjects ? [{ label: "Hiding draft projects", onRemove: () => setHideDraftProjects(false) }] : []), ]; function formatPeriod(alloc: AllocationWithDetails) { return formatDate(alloc.startDate) + " \u2192 " + formatDate(alloc.endDate); } function handleSingleDelete(allocation: AllocationWithDetails) { const id = getPlanningEntryMutationId(allocation); if (!allocation.resourceId) { deleteDemandMutation.mutate({ id }); return; } deleteAssignmentMutation.mutate({ id }); } const singleDeletePending = deleteDemandMutation.isPending || deleteAssignmentMutation.isPending; return (
{/* Page header */}

Allocations

{isLoading ? "Loading…" : `${filteredAllocations.length} assignment${filteredAllocations.length !== 1 ? "s" : ""}${filteredDemands.length > 0 ? ` · ${filteredDemands.length} open demand${filteredDemands.length !== 1 ? "s" : ""}` : ""}`}

↓ PDF ↓ XLS
{/* Filters */} setFilterProjectId(id ?? "")} placeholder="Filter by project…" className="min-w-[280px]" /> setFilterResourceId(id ?? "")} placeholder="Filter by resource…" className="min-w-[180px]" /> {/* Filter chips */} {chips.length > 0 && (
)} {/* Table */}
{visibleColumns.map((col) => { const tooltips: Record = { role: { tip: "The role this allocation was created for. May differ from the resource's primary role." }, hoursPerDay: { tip: "Planned working hours per calendar day for this allocation." }, cost: { tip: "Resource LCR × hours per day. Reflects the cost of one day of work for this allocation." }, status: { tip: "PROPOSED = requested · CONFIRMED = approved · ACTIVE = ongoing · COMPLETED = finished · CANCELLED = removed.", width: "w-72" }, }; const t = tooltips[col.key]; const fieldMap: Record = { dates: "startDate", hoursPerDay: "hoursPerDay", cost: "dailyCostCents" }; return ( ); })} {isLoading && ( )} {!isLoading && sorted.length === 0 && ( )} {!isLoading && sorted.map((alloc) => { const isSelected = selection.selectedIds.has(alloc.id); return ( {visibleColumns.map((col) => { switch (col.key) { case "resource": return ; case "project": return ( ); case "role": return ; case "dates": return ; case "hoursPerDay": return ; case "cost": return ; case "status": return ( ); default: return ; } })} ); })}
{ if (el) el.indeterminate = selection.isIndeterminate(allocationIds); }} onChange={() => selection.toggleAll(allocationIds)} className="rounded border-gray-300 dark:border-gray-600" />
Loading allocations…
No assignments found.
selection.toggle(alloc.id)} className="rounded border-gray-300 dark:border-gray-600" /> {alloc.resource?.displayName ?? "—"} {alloc.project ? ( <>{alloc.project.shortCode} {alloc.project.name} ) : "—"} {alloc.role}{formatPeriod(alloc)}{alloc.hoursPerDay}h{(alloc.dailyCostCents / 100).toFixed(0)} € {alloc.status}
{!isLoading && filteredDemands.length > 0 && (

Open Demands

Placeholder demand rows not yet assigned to a resource.

{filteredDemands.length} item{filteredDemands.length !== 1 ? "s" : ""}
{filteredDemands.map((demand) => (
{demand.project ? ( <>{demand.project.shortCode} {demand.project.name} ) : "Unknown project"}
{(demand.role ?? "Placeholder role")} · {formatPeriod(demand)} · {demand.hoursPerDay}h/day
Unfilled
{demand.unfilledHeadcount ?? demand.headcount} / {demand.requestedHeadcount ?? demand.headcount}
))}
)} {/* Batch Status Picker */} {batchStatusPicker && (
setBatchStatusPicker(false)}>
e.stopPropagation()}>

Set status for {selection.count} allocations

{ALL_ALLOC_STATUSES.map((s) => ( ))}
)} {/* Confirm single delete */} {confirmDelete?.single && ( { handleSingleDelete(confirmDelete.single!); setConfirmDelete(null); }} onCancel={() => setConfirmDelete(null)} /> )} {/* Confirm batch delete */} {confirmDelete?.ids && ( { batchDeleteMutation.mutate({ ids: confirmDelete.ids! }); setConfirmDelete(null); }} onCancel={() => setConfirmDelete(null)} /> )} {/* Confirm batch status */} {confirmBatchStatus && ( { batchStatusMutation.mutate({ ids: confirmBatchStatus.ids, status: confirmBatchStatus.status as never }); setConfirmBatchStatus(null); }} onCancel={() => setConfirmBatchStatus(null)} /> )} {/* Batch Action Bar */} setBatchStatusPicker(true), disabled: batchStatusMutation.isPending, }, { label: `Delete (${selection.count})`, variant: "danger", onClick: () => setConfirmDelete({ ids: selectedMutationIds }), disabled: batchDeleteMutation.isPending, }, ]} /> {/* Modal */} {modalOpen && ( )}
); }