- DetailModal: thread tz through resolveLabel(...) module helper + default export's 3 inline date/time calls. - IntegrationStatusTabs: thread tz through fmtDate helper + VeeamTab sub-component prop. - SyncScheduler: thread tz into closure-scoped formatDate helper. - audit-log-table, user-table, user-sessions, active-sessions: inline toLocale calls in component body. - analysis-view: useUserTimezone in AnalysisView; thread tz into 4 toLocaleString calls. - resolution-trend, volume-trend (recharts): module-scope fmtDate(iso) → fmtDate(iso, tz); useUserTimezone in named export; thread tz into axis tickFormatter + tooltip labelFormatter. - ticket-detail-modal: thread tz into formatDate arrow inside TicketDetailModal. - TimelineView: useUserTimezone; thread tz into 4 toLocale*String calls (hour/day/month/event-time formatters). - ScoreCard: useUserTimezone in AggregateScoreCard; thread tz into the date-range latest call. - addigy-tab: useUserTimezone in AddigyTab; thread tz into 2 inline calls. - activity-sparkline: module-scope fmtHour(iso) → fmtHour(iso, tz); useUserTimezone in ActivitySparkline; update 3 callsites in title/aria. - compliance-detail-table: thread tz from ComplianceDetailTable into ContractCoverageModal sub-component (2 inline date calls). - company-backup-detail: module-scope formatDate(d) → formatDate(d, tz); useUserTimezone in CompanyBackupDetail; update 3 callsites. Migrates 31 of 81 audit leak callsites.
77 lines
2.1 KiB
TypeScript
77 lines
2.1 KiB
TypeScript
/* ResolutionTrend — line chart of average resolution hours per day completed,
|
|
* last 30 days. Single series, Wulf Blue stroke. */
|
|
|
|
'use client';
|
|
|
|
import {
|
|
CartesianGrid,
|
|
Line,
|
|
LineChart,
|
|
ResponsiveContainer,
|
|
Tooltip,
|
|
XAxis,
|
|
YAxis,
|
|
} from 'recharts';
|
|
import { useUserTimezone } from '@/lib/hooks/use-user-timezone';
|
|
|
|
interface ResolutionPoint {
|
|
date: string;
|
|
avgHours: number | null;
|
|
}
|
|
|
|
interface ResolutionTrendProps {
|
|
data: ResolutionPoint[];
|
|
height?: number;
|
|
}
|
|
|
|
function fmtDate(iso: string, tz: string) {
|
|
return new Date(iso).toLocaleDateString(undefined, { month: 'short', day: 'numeric', timeZone: tz });
|
|
}
|
|
|
|
export function ResolutionTrend({ data, height = 180 }: ResolutionTrendProps) {
|
|
const tz = useUserTimezone();
|
|
return (
|
|
<ResponsiveContainer width="100%" height={height}>
|
|
<LineChart data={data} margin={{ top: 4, right: 8, bottom: 4, left: 0 }}>
|
|
<CartesianGrid stroke="var(--border)" strokeDasharray="2 4" vertical={false} />
|
|
<XAxis
|
|
dataKey="date"
|
|
tickFormatter={(iso: string) => fmtDate(iso, tz)}
|
|
interval="preserveStartEnd"
|
|
minTickGap={48}
|
|
tick={{ fontSize: 11, fill: 'var(--muted-foreground)' }}
|
|
axisLine={false}
|
|
tickLine={false}
|
|
/>
|
|
<YAxis
|
|
tick={{ fontSize: 11, fill: 'var(--muted-foreground)' }}
|
|
axisLine={false}
|
|
tickLine={false}
|
|
width={32}
|
|
tickFormatter={(v: number) => `${v}h`}
|
|
/>
|
|
<Tooltip
|
|
contentStyle={{
|
|
background: 'var(--popover)',
|
|
border: '1px solid var(--border)',
|
|
borderRadius: 6,
|
|
fontSize: 12,
|
|
}}
|
|
labelFormatter={(value) => fmtDate(String(value), tz)}
|
|
formatter={(value) =>
|
|
value == null ? ['—', 'avg'] : [`${Number(value).toFixed(1)} h`, 'avg']
|
|
}
|
|
/>
|
|
<Line
|
|
type="monotone"
|
|
dataKey="avgHours"
|
|
stroke="var(--primary)"
|
|
strokeWidth={2}
|
|
dot={false}
|
|
connectNulls
|
|
isAnimationActive={false}
|
|
/>
|
|
</LineChart>
|
|
</ResponsiveContainer>
|
|
);
|
|
}
|