O que o supervisor encontra agora:
Na fila de manutenção (:3001), novo botão "Relatório de turno" no header.
Página /maintenance/report com:
Atalhos Manhã / Tarde / Noite / Hoje + seletor de dia + Personalizado (date-time livre)
Label sempre visível com a janela ativa ("Turno da Manhã — 30/05 06:00 → 14:00")
6 cartões de métricas: pedidos, resolvidos, em aberto, tempo médio de resposta, tempo médio de resolução, pior resposta
Tabela por posto e resumo por área
Lista "Em aberto à hora do relatório" (ou "Nada em aberto. ✓")
Botão Imprimir → PDF via browser; CSS @media print limpa botões/nav
Verificações verdes:
report-smoke.ts — 17/17 (totals, responseMs, resolutionMs, byWorkstation, byArea, stillOpen, window edge cases)
E2E MAI CALL happy-path — 1/1 (dados de seed extra não interferem)
TypeScript — limpo nos pacotes tocados (@repo/api, @repo/admin-web)
Seed cria 6 pedidos de exemplo: relatório "Hoje" nunca começa vazio
+
Resumo da revisão do v0.3
Conformidade com o plano: alta. Shape de output exato, ctx.db (tenant-scoped), requireRole, helper de turnos com o caso da noite, seed com 6 pedidos, UI completa + impressão. Tudo no sítio.
Dois defeitos reais que escaparam ao typecheck e ao E2E — corrigidos:
# Problema Correção
🔴 1 Fetch storm no modo "Hoje" (default): computeWindow recalculava to = new Date() a cada render → nova query key → loop de fetch contínuo. useMemo([windowState]) estabiliza a janela em report-view.tsx:101. Reclicar "Hoje" refresca. Também limpei estado morto (customFrom/customTo).
🔴 2 Smoke não cumpria o AC: re-implementava a agregação à mão em vez de chamar a procedure, e não testava to <= from → BAD_REQUEST (exigido pelo AC do Passo 1). Reescrito report-smoke.ts no padrão createCallerFactory — agora exercita a procedure real: agregação, BAD_REQUEST (to≤from e >31d), janela futura vazia, e FORBIDDEN para operador.
Verificações finais (todas verdes):
tsc --noEmit admin-web — limpo
report-smoke.ts — 22/22 (agora contra a procedure real)
E2E MAI CALL — 1 passed
422 lines
17 KiB
TypeScript
422 lines
17 KiB
TypeScript
'use client';
|
|
|
|
import { useMemo, useState } from 'react';
|
|
import Link from 'next/link';
|
|
import { ArrowLeft, Printer, AlertCircle } from 'lucide-react';
|
|
import { trpc } from '@/lib/trpc/client';
|
|
import { SHIFTS, shiftWindow, todayWindow, type ShiftKey } from '@/lib/shifts';
|
|
|
|
// ── Duration helper ─────────────────────────────────────────────────────────
|
|
|
|
function formatDuration(ms: number | null): string {
|
|
if (ms === null) return '—';
|
|
const totalMin = Math.round(ms / 60_000);
|
|
if (totalMin < 1) return '< 1 min';
|
|
if (totalMin < 60) return `${totalMin} min`;
|
|
const h = Math.floor(totalMin / 60);
|
|
const m = totalMin % 60;
|
|
return m > 0 ? `${h} h ${m} min` : `${h} h`;
|
|
}
|
|
|
|
function formatDateTime(d: Date | string): string {
|
|
const dt = new Date(d);
|
|
return dt.toLocaleString('pt-PT', {
|
|
day: '2-digit',
|
|
month: '2-digit',
|
|
hour: '2-digit',
|
|
minute: '2-digit',
|
|
});
|
|
}
|
|
|
|
function formatDate(d: Date | string): string {
|
|
return new Date(d).toLocaleDateString('pt-PT', { day: '2-digit', month: '2-digit' });
|
|
}
|
|
|
|
// ── Window label ─────────────────────────────────────────────────────────────
|
|
|
|
function windowLabel(from: Date, to: Date): string {
|
|
return `${formatDateTime(from)} → ${formatDateTime(to)}`;
|
|
}
|
|
|
|
// ── Metric card ──────────────────────────────────────────────────────────────
|
|
|
|
function MetricCard({ label, value, sub }: { label: string; value: string; sub?: string }) {
|
|
return (
|
|
<div className="rounded-xl border border-border bg-card p-4 print:border-gray-300">
|
|
<p className="text-xs font-medium uppercase tracking-wide text-muted-foreground print:text-gray-500">
|
|
{label}
|
|
</p>
|
|
<p className="mt-1 text-2xl font-bold">{value}</p>
|
|
{sub && <p className="mt-0.5 text-xs text-muted-foreground print:text-gray-500">{sub}</p>}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const STATUS_LABEL: Record<'OPEN' | 'CLAIMED', string> = {
|
|
OPEN: 'Aberto',
|
|
CLAIMED: 'Em curso',
|
|
};
|
|
|
|
const STATUS_CLASS: Record<'OPEN' | 'CLAIMED', string> = {
|
|
OPEN: 'bg-orange-100 text-orange-700',
|
|
CLAIMED: 'bg-blue-100 text-blue-700',
|
|
};
|
|
|
|
// ── Main component ───────────────────────────────────────────────────────────
|
|
|
|
type WindowState =
|
|
| { type: 'shift'; key: ShiftKey; day: Date }
|
|
| { type: 'today' }
|
|
| { type: 'custom'; from: Date; to: Date };
|
|
|
|
function computeWindow(state: WindowState): { from: Date; to: Date } {
|
|
const now = new Date();
|
|
if (state.type === 'today') return todayWindow(now);
|
|
if (state.type === 'shift') return shiftWindow(state.key, state.day);
|
|
return { from: state.from, to: state.to };
|
|
}
|
|
|
|
function localDateStr(d: Date): string {
|
|
const y = d.getFullYear();
|
|
const m = String(d.getMonth() + 1).padStart(2, '0');
|
|
const day = String(d.getDate()).padStart(2, '0');
|
|
return `${y}-${m}-${day}`;
|
|
}
|
|
|
|
function localDateTimeStr(d: Date): string {
|
|
return `${localDateStr(d)}T${String(d.getHours()).padStart(2, '0')}:${String(d.getMinutes()).padStart(2, '0')}`;
|
|
}
|
|
|
|
export function ReportView() {
|
|
const [windowState, setWindowState] = useState<WindowState>({ type: 'today' });
|
|
const [dayInput, setDayInput] = useState(() => localDateStr(new Date()));
|
|
const [customActive, setCustomActive] = useState(false);
|
|
const [customPending, setCustomPending] = useState(() => {
|
|
const now = new Date();
|
|
const midnight = new Date(now);
|
|
midnight.setHours(0, 0, 0, 0);
|
|
return { from: localDateTimeStr(midnight), to: localDateTimeStr(now) };
|
|
});
|
|
|
|
// Stabilise the window so the query key only changes when the user picks a
|
|
// new window. Without this, the 'today' mode recomputes `to = new Date()` on
|
|
// every render → new query key → fetch loop. Re-selecting "Hoje" refreshes.
|
|
const win = useMemo(() => computeWindow(windowState), [windowState]);
|
|
|
|
const { data, isLoading, error } = trpc.maintenanceRequest.report.useQuery(
|
|
{ from: win.from, to: win.to },
|
|
{ staleTime: 30_000 },
|
|
);
|
|
|
|
function selectShift(key: ShiftKey) {
|
|
const day = new Date(dayInput + 'T00:00:00');
|
|
setCustomActive(false);
|
|
setWindowState({ type: 'shift', key, day });
|
|
}
|
|
|
|
function selectToday() {
|
|
setCustomActive(false);
|
|
setWindowState({ type: 'today' });
|
|
}
|
|
|
|
function applyCustom() {
|
|
const from = new Date(customPending.from);
|
|
const to = new Date(customPending.to);
|
|
if (isNaN(from.getTime()) || isNaN(to.getTime()) || to <= from) return;
|
|
setWindowState({ type: 'custom', from, to });
|
|
}
|
|
|
|
const activeShift =
|
|
windowState.type === 'shift' ? windowState.key : null;
|
|
|
|
return (
|
|
<div className="min-h-screen bg-background print:bg-white">
|
|
{/* ── Header (hidden in print) ── */}
|
|
<header className="sticky top-0 z-10 border-b border-border bg-card px-4 py-3 print:hidden">
|
|
<div className="mx-auto flex max-w-4xl items-center justify-between gap-4">
|
|
<div className="flex items-center gap-3">
|
|
<Link
|
|
href="/maintenance"
|
|
className="flex items-center gap-1.5 text-sm text-muted-foreground hover:text-foreground"
|
|
>
|
|
<ArrowLeft className="h-4 w-4" />
|
|
Fila
|
|
</Link>
|
|
<span className="text-muted-foreground">/</span>
|
|
<h1 className="text-lg font-bold">Relatório de turno</h1>
|
|
</div>
|
|
<button
|
|
onClick={() => window.print()}
|
|
className="flex items-center gap-1.5 rounded-lg bg-muted px-3 py-1.5 text-sm font-medium hover:bg-accent"
|
|
>
|
|
<Printer className="h-4 w-4" />
|
|
Imprimir
|
|
</button>
|
|
</div>
|
|
</header>
|
|
|
|
{/* ── Print header (only in print) ── */}
|
|
<div className="hidden print:block px-8 pt-6 pb-2">
|
|
<p className="text-lg font-bold">FieldOps — Relatório de manutenção</p>
|
|
<p className="text-sm text-gray-600">{windowLabel(win.from, win.to)}</p>
|
|
</div>
|
|
|
|
{/* ── Window selector (hidden in print) ── */}
|
|
<div className="border-b border-border bg-muted/30 px-4 py-3 print:hidden">
|
|
<div className="mx-auto max-w-4xl space-y-3">
|
|
{/* Shift shortcuts + day picker */}
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<button
|
|
onClick={selectToday}
|
|
className={`rounded-full px-3 py-1 text-sm font-medium transition-colors ${
|
|
windowState.type === 'today'
|
|
? 'bg-primary text-primary-foreground'
|
|
: 'bg-card border border-border hover:bg-accent'
|
|
}`}
|
|
>
|
|
Hoje
|
|
</button>
|
|
{(Object.keys(SHIFTS) as ShiftKey[]).map((key) => (
|
|
<button
|
|
key={key}
|
|
onClick={() => selectShift(key)}
|
|
className={`rounded-full px-3 py-1 text-sm font-medium transition-colors ${
|
|
activeShift === key
|
|
? 'bg-primary text-primary-foreground'
|
|
: 'bg-card border border-border hover:bg-accent'
|
|
}`}
|
|
>
|
|
{SHIFTS[key].label}
|
|
</button>
|
|
))}
|
|
|
|
<input
|
|
type="date"
|
|
value={dayInput}
|
|
onChange={(e) => {
|
|
setDayInput(e.target.value);
|
|
if (windowState.type === 'shift') {
|
|
const day = new Date(e.target.value + 'T00:00:00');
|
|
setWindowState({ type: 'shift', key: windowState.key, day });
|
|
}
|
|
}}
|
|
className="rounded-lg border border-border bg-card px-2 py-1 text-sm"
|
|
/>
|
|
|
|
<button
|
|
onClick={() => setCustomActive((v) => !v)}
|
|
className={`rounded-full px-3 py-1 text-sm font-medium transition-colors ${
|
|
customActive || windowState.type === 'custom'
|
|
? 'bg-primary text-primary-foreground'
|
|
: 'bg-card border border-border hover:bg-accent'
|
|
}`}
|
|
>
|
|
Personalizado
|
|
</button>
|
|
</div>
|
|
|
|
{/* Custom range inputs */}
|
|
{customActive && (
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<input
|
|
type="datetime-local"
|
|
value={customPending.from}
|
|
onChange={(e) => setCustomPending((p) => ({ ...p, from: e.target.value }))}
|
|
className="rounded-lg border border-border bg-card px-2 py-1 text-sm"
|
|
/>
|
|
<span className="text-sm text-muted-foreground">até</span>
|
|
<input
|
|
type="datetime-local"
|
|
value={customPending.to}
|
|
onChange={(e) => setCustomPending((p) => ({ ...p, to: e.target.value }))}
|
|
className="rounded-lg border border-border bg-card px-2 py-1 text-sm"
|
|
/>
|
|
<button
|
|
onClick={applyCustom}
|
|
className="rounded-lg bg-primary px-3 py-1 text-sm font-medium text-primary-foreground hover:opacity-90"
|
|
>
|
|
Aplicar
|
|
</button>
|
|
</div>
|
|
)}
|
|
|
|
{/* Active window label */}
|
|
<p className="text-xs text-muted-foreground">
|
|
{windowState.type === 'shift'
|
|
? `Turno d${windowState.key === 'manha' ? 'a Manhã' : windowState.key === 'tarde' ? 'a Tarde' : 'a Noite'} — `
|
|
: windowState.type === 'today'
|
|
? 'Hoje — '
|
|
: 'Personalizado — '}
|
|
{windowLabel(win.from, win.to)}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
{/* ── Body ── */}
|
|
<main className="mx-auto max-w-4xl px-4 py-6 print:px-8 print:py-4">
|
|
{isLoading && (
|
|
<p className="py-16 text-center text-muted-foreground">A carregar…</p>
|
|
)}
|
|
|
|
{error && (
|
|
<div className="flex items-center gap-2 rounded-xl border border-destructive/30 bg-destructive/10 p-4 text-destructive">
|
|
<AlertCircle className="h-5 w-5 shrink-0" />
|
|
<p className="text-sm">{error.message}</p>
|
|
</div>
|
|
)}
|
|
|
|
{data && data.totals.created === 0 && (
|
|
<div className="py-16 text-center text-muted-foreground">
|
|
<p className="text-lg">Sem pedidos nesta janela.</p>
|
|
</div>
|
|
)}
|
|
|
|
{data && data.totals.created > 0 && (
|
|
<div className="space-y-8 print:space-y-6">
|
|
{/* Summary cards */}
|
|
<section>
|
|
<h2 className="mb-3 text-sm font-semibold uppercase tracking-wide text-muted-foreground print:text-gray-500">
|
|
Resumo
|
|
</h2>
|
|
<div className="grid grid-cols-2 gap-3 sm:grid-cols-3 print:grid-cols-3">
|
|
<MetricCard label="Pedidos" value={String(data.totals.created)} />
|
|
<MetricCard label="Resolvidos" value={String(data.totals.resolved)} />
|
|
<MetricCard
|
|
label="Em aberto"
|
|
value={String(data.totals.open + data.totals.claimed)}
|
|
sub={
|
|
data.totals.open > 0 || data.totals.claimed > 0
|
|
? `${data.totals.open} aberto · ${data.totals.claimed} em curso`
|
|
: undefined
|
|
}
|
|
/>
|
|
<MetricCard
|
|
label="Resposta média"
|
|
value={formatDuration(data.responseMs.avg)}
|
|
sub={
|
|
data.responseMs.count > 0
|
|
? `sobre ${data.responseMs.count} pedido${data.responseMs.count > 1 ? 's' : ''}`
|
|
: 'sem dados'
|
|
}
|
|
/>
|
|
<MetricCard
|
|
label="Resolução média"
|
|
value={formatDuration(data.resolutionMs.avg)}
|
|
sub={
|
|
data.resolutionMs.count > 0
|
|
? `sobre ${data.resolutionMs.count} pedido${data.resolutionMs.count > 1 ? 's' : ''}`
|
|
: 'sem dados'
|
|
}
|
|
/>
|
|
<MetricCard
|
|
label="Pior resposta"
|
|
value={formatDuration(data.responseMs.max)}
|
|
/>
|
|
</div>
|
|
</section>
|
|
|
|
{/* By workstation */}
|
|
{data.byWorkstation.length > 0 && (
|
|
<section>
|
|
<h2 className="mb-3 text-sm font-semibold uppercase tracking-wide text-muted-foreground print:text-gray-500">
|
|
Por posto
|
|
</h2>
|
|
<div className="overflow-hidden rounded-xl border border-border print:border-gray-300">
|
|
<table className="w-full text-sm">
|
|
<thead>
|
|
<tr className="border-b border-border bg-muted/50 text-left print:bg-gray-50 print:border-gray-300">
|
|
<th className="px-4 py-2 font-medium">Código</th>
|
|
<th className="px-4 py-2 font-medium">Nome</th>
|
|
<th className="px-4 py-2 font-medium">Área</th>
|
|
<th className="px-4 py-2 text-right font-medium">Pedidos</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{data.byWorkstation.map((ws, i) => (
|
|
<tr
|
|
key={ws.workstationId}
|
|
className={`border-b border-border last:border-0 print:border-gray-200 ${
|
|
i % 2 === 0 ? '' : 'bg-muted/20'
|
|
}`}
|
|
>
|
|
<td className="px-4 py-2 font-mono text-xs">{ws.code}</td>
|
|
<td className="px-4 py-2">{ws.name}</td>
|
|
<td className="px-4 py-2 text-muted-foreground print:text-gray-500">
|
|
{ws.area}
|
|
</td>
|
|
<td className="px-4 py-2 text-right font-medium">{ws.count}</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
)}
|
|
|
|
{/* By area */}
|
|
{data.byArea.length > 1 && (
|
|
<section>
|
|
<h2 className="mb-3 text-sm font-semibold uppercase tracking-wide text-muted-foreground print:text-gray-500">
|
|
Por área
|
|
</h2>
|
|
<div className="flex flex-wrap gap-3">
|
|
{data.byArea.map((a) => (
|
|
<div
|
|
key={a.area}
|
|
className="rounded-lg border border-border bg-card px-4 py-2 print:border-gray-300"
|
|
>
|
|
<span className="font-medium">{a.area}</span>
|
|
<span className="ml-2 text-muted-foreground print:text-gray-500">
|
|
{a.count}
|
|
</span>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</section>
|
|
)}
|
|
|
|
{/* Still open */}
|
|
<section>
|
|
<h2 className="mb-3 text-sm font-semibold uppercase tracking-wide text-muted-foreground print:text-gray-500">
|
|
Em aberto à hora do relatório
|
|
</h2>
|
|
{data.stillOpen.length === 0 ? (
|
|
<p className="text-sm text-green-600">Nada em aberto neste turno. ✓</p>
|
|
) : (
|
|
<div className="space-y-2">
|
|
{data.stillOpen.map((r) => (
|
|
<div
|
|
key={r.id}
|
|
className="flex flex-col gap-1 rounded-xl border border-border bg-card px-4 py-3 print:border-gray-300 sm:flex-row sm:items-center sm:gap-4"
|
|
>
|
|
<div className="min-w-0 flex-1">
|
|
<p className="font-medium">
|
|
{r.code} — {r.name}{' '}
|
|
<span className="text-xs text-muted-foreground print:text-gray-500">
|
|
· {r.area}
|
|
</span>
|
|
</p>
|
|
<p className="mt-0.5 line-clamp-1 text-sm text-muted-foreground print:text-gray-500">
|
|
{r.description}
|
|
</p>
|
|
<p className="mt-0.5 text-xs text-muted-foreground print:text-gray-500">
|
|
Reportado por {r.reportedByEmail} · {formatDate(r.createdAt)}
|
|
</p>
|
|
</div>
|
|
<span
|
|
className={`shrink-0 rounded-full px-2.5 py-0.5 text-xs font-medium print:border print:bg-transparent ${STATUS_CLASS[r.status]}`}
|
|
>
|
|
{STATUS_LABEL[r.status]}
|
|
</span>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</section>
|
|
</div>
|
|
)}
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|