feat: Sprint 1 — staffing assign, dashboard cache, bulk ops, notifications
Staffing "Assign" Button: - Inline assignment form on each suggestion card in StaffingPanel - Pre-fills project, dates, hours from search criteria - 1-click confirm creates allocation with PROPOSED status - Success/error toasts, removes assigned suggestions from list Dashboard Redis Caching: - New cache utility (packages/api/src/lib/cache.ts) with get/set/invalidate - All 5 dashboard queries wrapped with 60s TTL cache-aside pattern - Auto-invalidation on allocation + project mutations (fire-and-forget) - Graceful fallthrough to DB if Redis unavailable Bulk Operations: - CSV export for selected resources and projects (apps/web/src/lib/csv-export.ts) - Project batch delete mutation with cascade (assignments, demands, rules) - Export/Delete buttons added to BatchActionBar on both list pages Budget Overrun Notifications: - checkBudgetThresholds() alerts at 80% (HIGH) and 100% (URGENT) - Called after every allocation mutation, duplicate-safe - Targets ADMIN + MANAGER users with SSE delivery Estimate Approval Reminders: - checkPendingEstimateReminders() finds SUBMITTED versions > 3 days old - Cron endpoint: GET /api/cron/estimate-reminders (optional CRON_SECRET auth) - Creates in-app REMINDER notifications, duplicate-safe Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
@@ -10,6 +10,7 @@ import Image from "next/image";
|
||||
import { clsx } from "clsx";
|
||||
import { motion } from "framer-motion";
|
||||
import { trpc } from "~/lib/trpc/client.js";
|
||||
import { generateCsv, downloadCsv } from "~/lib/csv-export.js";
|
||||
import { ProjectModal } from "~/components/projects/ProjectModal.js";
|
||||
import { ProjectWizard } from "~/components/projects/ProjectWizard.js";
|
||||
import { useSelection } from "~/hooks/useSelection.js";
|
||||
@@ -183,6 +184,7 @@ export function ProjectsClient() {
|
||||
const [openStatusProjectId, setOpenStatusProjectId] = useState<string | null>(null);
|
||||
const [batchStatusPicker, setBatchStatusPicker] = useState(false);
|
||||
const [confirmBatchStatus, setConfirmBatchStatus] = useState<{ ids: string[]; status: string } | null>(null);
|
||||
const [confirmBatchDelete, setConfirmBatchDelete] = useState<string[] | null>(null);
|
||||
|
||||
const selection = useSelection();
|
||||
const utils = trpc.useUtils();
|
||||
@@ -195,6 +197,13 @@ export function ProjectsClient() {
|
||||
},
|
||||
});
|
||||
|
||||
const batchDeleteMutation = trpc.project.batchDelete.useMutation({
|
||||
onSuccess: async () => {
|
||||
await utils.project.listWithCosts.invalidate();
|
||||
selection.clear();
|
||||
},
|
||||
});
|
||||
|
||||
// ─── Favorites ──────────────────────────────────────────────────────────
|
||||
const { data: favoriteIds } = trpc.user.getFavoriteProjectIds.useQuery(undefined, { staleTime: 30_000 });
|
||||
const favSet = useMemo(() => new Set(favoriteIds ?? []), [favoriteIds]);
|
||||
@@ -336,6 +345,25 @@ export function ProjectsClient() {
|
||||
function closeModal() { setModalOpen(false); setEditingProject(null); }
|
||||
function clearAll() { setSearch(""); setStatusFilter(""); setOrderTypeFilter(""); }
|
||||
|
||||
const exportSelectedCsv = useCallback(() => {
|
||||
const selected = projects.filter((p) => selection.selectedIds.has(p.id));
|
||||
if (selected.length === 0) return;
|
||||
const csv = generateCsv(selected, [
|
||||
{ header: "Short Code", accessor: (p) => p.shortCode },
|
||||
{ header: "Name", accessor: (p) => p.name },
|
||||
{ header: "Status", accessor: (p) => p.status },
|
||||
{ header: "Order Type", accessor: (p) => p.orderType },
|
||||
{ header: "Start Date", accessor: (p) => formatDate(p.startDate) },
|
||||
{ header: "End Date", accessor: (p) => formatDate(p.endDate) },
|
||||
{ header: "Budget (cents)", accessor: (p) => p.budgetCents },
|
||||
{ header: "Win Probability", accessor: (p) => p.winProbability },
|
||||
{ header: "Total Cost (cents)", accessor: (p) => p.totalCostCents },
|
||||
{ header: "Person Days", accessor: (p) => p.totalPersonDays },
|
||||
{ header: "Utilization %", accessor: (p) => p.utilizationPercent },
|
||||
]);
|
||||
downloadCsv(csv, `projects-export-${new Date().toISOString().slice(0, 10)}.csv`);
|
||||
}, [projects, selection.selectedIds]);
|
||||
|
||||
const chips = [
|
||||
...(search ? [{ label: `Search: "${search}"`, onRemove: () => setSearch("") }] : []),
|
||||
...(statusFilter ? [{ label: `Status: ${statusFilter}`, onRemove: () => setStatusFilter("") }] : []),
|
||||
@@ -682,12 +710,34 @@ export function ProjectsClient() {
|
||||
/>
|
||||
)}
|
||||
|
||||
{/* Confirm batch delete */}
|
||||
{confirmBatchDelete && (
|
||||
<ConfirmDialog
|
||||
title="Delete Projects"
|
||||
message={`Permanently delete ${confirmBatchDelete.length} project${confirmBatchDelete.length !== 1 ? "s" : ""}? This will also remove all associated allocations and demands. This action cannot be undone.`}
|
||||
confirmLabel="Delete All"
|
||||
variant="danger"
|
||||
onConfirm={() => {
|
||||
batchDeleteMutation.mutate({ ids: confirmBatchDelete });
|
||||
setConfirmBatchDelete(null);
|
||||
}}
|
||||
onCancel={() => setConfirmBatchDelete(null)}
|
||||
/>
|
||||
)}
|
||||
|
||||
{/* Batch Action Bar */}
|
||||
<BatchActionBar
|
||||
count={selection.count}
|
||||
onClear={selection.clear}
|
||||
actions={[
|
||||
{ label: "Set Status…", onClick: () => setBatchStatusPicker(true) },
|
||||
{ label: "Export Selected", onClick: exportSelectedCsv },
|
||||
{ label: "Set Status...", onClick: () => setBatchStatusPicker(true) },
|
||||
{
|
||||
label: `Delete (${selection.count})`,
|
||||
variant: "danger" as const,
|
||||
onClick: () => setConfirmBatchDelete(selection.selectedArray),
|
||||
disabled: batchDeleteMutation.isPending,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
|
||||
@@ -8,6 +8,7 @@ import { RESOURCE_COLUMNS } from "@planarchy/shared";
|
||||
import { BlueprintTarget, ResourceType } from "@planarchy/shared";
|
||||
import { trpc } from "~/lib/trpc/client.js";
|
||||
import { formatMoney } from "~/lib/format.js";
|
||||
import { generateCsv, downloadCsv } from "~/lib/csv-export.js";
|
||||
import dynamic from "next/dynamic";
|
||||
import { ResourceModal } from "~/components/resources/ResourceModal.js";
|
||||
import { BulkEditModal } from "~/components/resources/BulkEditModal.js";
|
||||
@@ -508,6 +509,22 @@ export function ResourcesClient() {
|
||||
return "Departed: no";
|
||||
}, [departedFilter]);
|
||||
|
||||
const exportSelectedCsv = useCallback(() => {
|
||||
const selected = displayedResources.filter((r) => selection.selectedIds.has(r.id));
|
||||
if (selected.length === 0) return;
|
||||
const csv = generateCsv(selected, [
|
||||
{ header: "EID", accessor: (r) => r.eid },
|
||||
{ header: "Name", accessor: (r) => r.displayName },
|
||||
{ header: "Email", accessor: (r) => r.email },
|
||||
{ header: "Chapter", accessor: (r) => r.chapter ?? "" },
|
||||
{ header: "LCR (cents)", accessor: (r) => r.lcrCents },
|
||||
{ header: "Currency", accessor: (r) => r.currency },
|
||||
{ header: "Chargeability Target", accessor: (r) => r.chargeabilityTarget },
|
||||
{ header: "Active", accessor: (r) => r.isActive ? "Yes" : "No" },
|
||||
]);
|
||||
downloadCsv(csv, `resources-export-${new Date().toISOString().slice(0, 10)}.csv`);
|
||||
}, [displayedResources, selection.selectedIds]);
|
||||
|
||||
const chips = [
|
||||
...(search ? [{ label: `Search: "${search}"`, onRemove: () => setSearch("") }] : []),
|
||||
...(chapterFilter.length > 0
|
||||
@@ -1429,10 +1446,15 @@ export function ResourcesClient() {
|
||||
count={selection.count}
|
||||
onClear={selection.clear}
|
||||
actions={[
|
||||
{
|
||||
label: "Export Selected",
|
||||
variant: "default" as const,
|
||||
onClick: exportSelectedCsv,
|
||||
},
|
||||
...(filterableFields.length > 0
|
||||
? [
|
||||
{
|
||||
label: "Edit Custom Fields",
|
||||
label: "Bulk Edit",
|
||||
variant: "default" as const,
|
||||
onClick: () => setModal({ type: "bulkEdit" }),
|
||||
disabled: false,
|
||||
|
||||
Reference in New Issue
Block a user