Major UI refresh on the nav-design-improvements branch. Drops 2013-era
inline styles and consolidates patterns behind shared primitives.
Foundation
- New Wulf brand layer in app/styles/brand.css repointing --primary to
the standards-guide blue (#0075AD) with utility classes for numerics
(.num / .num-lg / .num-xl), metric labels, surface tints, and the
wolf-mark watermark
- Switch primary face to IBM Plex Sans + IBM Plex Mono via next/font;
Helvetica/Arial stays in the fallback chain for brand fidelity
- Wordmark subtitle changed from "PSA Management System" to
"Operations console" everywhere it appeared
- Tagline footer ("Don't be afraid to cry") on every non-mobile page
Status moved out of /dashboard
- New /status route with integration tiles grouped by category, sync
health table, worker pulse cards (analyzer / RMM / sync scheduler),
token-expiry section, conditional alert banner
- Top-bar StatusIndicator polls integration health every 60s and links
to /status
- INTEGRATIONS_DISABLED env var suppresses operator-disabled
integrations (e.g. SentinelOne) — no failure noise from broken-on-
purpose entries. Aliases supported (sentinelone → s1, etc.)
Dashboard rebuilt around KPIs
- /api/dashboard/overview adds today snapshot (opened, resolved, open
total, SLA breaches) with delta math
- /api/dashboard/trends backs queue × priority heatmap, 30-day volume
area chart, 30-day mean resolution time line chart, today's active
engineers leaderboard
Components
- StatusBadge driven by lib/status-registry.ts (priority, ticket
status, classification, source, company type, publish, active /
yes-no / billable / approved registries)
- StatusLight (8px geometric square, five states, three sizes)
- EmptyState (shared dashed panel with icon + headline + optional CTA)
- KpiCard with delta indicator and tonal left border
- WulfMark (mark / wordmark variants from /public/branding)
- Skeleton helpers (SkeletonRow / Rows / Card / Chart / Header / Table)
Navigation
- Admin flat link → dropdown with seven shortcuts
- New UserMenu (initials avatar, role badge, settings + sign-out)
- Active-route highlight is now a 2px Wulf-blue underline echoing the
PageHeader rule (consistent across flat links and submenu triggers);
active children inside dropdowns use bg-primary/10
- Submenu width is content-driven (min-w 320 / max-w 440, single col)
- Mobile hamburger via Sheet, reuses the same nav config
Pages migrated
- 16 admin sub-pages adopt PageHeader (with accent prop)
- /addigy-devices: shadcn Table + Checkbox; PageHeader; status badges
- 10 raw <table> blocks across admin/sync/* migrated to shadcn Table
- /veeam-analysis migrated to shadcn Table (kept its expansion logic)
- Detail routes (analyzer ticket, analyzer analysis) get breadcrumbs
DataTable
- Rewritten on @tanstack/react-table v8 in manual mode; external API
unchanged so all 10+ data-browser pages keep working
- New optional props for drill-down rows: getRowCanExpand + renderSubRow
Mobile
- Multi-select Popover gets max-w-[calc(100vw-1rem)] and
collisionPadding so dropdowns can't overflow narrow viewports
- CI filter bar wraps and shrinks; stat pill flows below
Docs
- New ARCHITECTURE.md (load-bearing reference for runtime, data flow,
workers, analyzer pipeline, auth, deployment, gotchas)
- New DESIGN.md (tokens, layout, navigation IA, component vocabulary,
rolling backlog of remaining cleanup)
- CLAUDE.md refreshed with pointers to the two new docs and the
INTEGRATIONS_DISABLED operator config note
- shadcn registry registered as project-level MCP server (.mcp.json)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
73 lines
2.3 KiB
TypeScript
73 lines
2.3 KiB
TypeScript
/* ActiveEngineers — top engineers today by hours logged.
|
|
*
|
|
* Compact list: name + ticket count + hours bar. Sorted by hours
|
|
* desc upstream. Empty when no time has been logged yet today. */
|
|
|
|
'use client';
|
|
|
|
import { Activity } from 'lucide-react';
|
|
import { EmptyState } from '@/components/ui/empty-state';
|
|
|
|
interface Engineer {
|
|
resourceId: string;
|
|
name: string;
|
|
hours: number;
|
|
ticketsTouched: number;
|
|
}
|
|
|
|
interface ActiveEngineersProps {
|
|
data: Engineer[];
|
|
}
|
|
|
|
export function ActiveEngineers({ data }: ActiveEngineersProps) {
|
|
if (data.length === 0) {
|
|
return (
|
|
<EmptyState
|
|
icon={Activity}
|
|
title="No time logged today"
|
|
description="Engineers will appear here as they post time entries."
|
|
size="sm"
|
|
/>
|
|
);
|
|
}
|
|
|
|
const max = data.reduce((m, e) => Math.max(m, e.hours), 0) || 1;
|
|
const totalHours = data.reduce((s, e) => s + e.hours, 0);
|
|
const totalTickets = data.reduce((s, e) => s + e.ticketsTouched, 0);
|
|
|
|
return (
|
|
<div className="space-y-1">
|
|
{data.map((e) => {
|
|
const pct = (e.hours / max) * 100;
|
|
return (
|
|
<div key={e.resourceId} className="grid grid-cols-[1fr_auto] items-center gap-3 py-1">
|
|
<div className="min-w-0">
|
|
<div className="text-sm font-medium truncate">{e.name}</div>
|
|
<div className="relative h-1 w-full bg-muted rounded-sm mt-1 overflow-hidden">
|
|
<div
|
|
className="absolute inset-y-0 left-0 bg-primary/70"
|
|
style={{ width: `${pct}%` }}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="text-right shrink-0">
|
|
<div className="num text-sm">{e.hours.toFixed(1)}h</div>
|
|
<div className="text-xs text-muted-foreground">
|
|
<span className="num">{e.ticketsTouched}</span>{' '}
|
|
ticket{e.ticketsTouched === 1 ? '' : 's'}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
})}
|
|
<div className="border-t pt-2 mt-2 flex justify-between text-xs text-muted-foreground">
|
|
<span>Total today</span>
|
|
<span>
|
|
<span className="num">{totalHours.toFixed(1)}h</span>{' '}
|
|
across <span className="num">{totalTickets}</span>{' '}
|
|
ticket{totalTickets === 1 ? '' : 's'}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|