Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | import { useState, useMemo } from "react"; import { useQuery } from "@tanstack/react-query"; import { fetchDashboardStats } from "../../api"; import { LoadingSpinner } from "../shared/LoadingSpinner"; import { MetricsCards } from "./MetricsCards"; import { BreakdownTable } from "./BreakdownTable"; import { RunsTable } from "./RunsTable"; function toLocalDateString(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 defaultDateRange(): { start: string; end: string } { const end = new Date(); const start = new Date(); start.setDate(start.getDate() - 14); return { start: toLocalDateString(start), end: toLocalDateString(end), }; } export function DashboardPage() { const defaults = useMemo(() => defaultDateRange(), []); const [startDate, setStartDate] = useState(defaults.start); const [endDate, setEndDate] = useState(defaults.end); const [scope, setScope] = useState<"workspace" | "global">("workspace"); // Build ISO end-of-day so the backend includes the end date. const endDateParam = `${endDate}T23:59:59`; const statsQuery = useQuery({ queryKey: ["dashboard-stats", startDate, endDateParam, scope], queryFn: () => fetchDashboardStats({ start_date: startDate, end_date: endDateParam, scope, }), staleTime: 15_000, }); return ( <div className="dashboard-page"> <div className="dashboard-page__inner"> {/* ── Controls ──────────────────────────────── */} <div className="dashboard-controls"> <div className="dashboard-controls__dates"> <label className="dashboard-date-label"> From <input type="date" className="dashboard-date-input" value={startDate} onChange={(e) => setStartDate(e.target.value)} /> </label> <label className="dashboard-date-label"> To <input type="date" className="dashboard-date-input" value={endDate} onChange={(e) => setEndDate(e.target.value)} /> </label> </div> <div className="dashboard-controls__scope"> <button type="button" className={`btn btn--sm ${scope === "workspace" ? "btn--active" : ""}`} onClick={() => setScope("workspace")} > Workspace </button> <button type="button" className={`btn btn--sm ${scope === "global" ? "btn--active" : ""}`} onClick={() => setScope("global")} > Global </button> </div> </div> {/* ── L1: Overview KPIs ─────────────────────── */} {statsQuery.isLoading ? ( <div className="dashboard-loading"> <LoadingSpinner size="lg" /> </div> ) : statsQuery.isError ? ( <div className="dashboard-error"> Failed to load dashboard data. Please try again. </div> ) : statsQuery.data ? ( <> <MetricsCards overview={statsQuery.data.overview} daily={statsQuery.data.daily} /> {/* ── L2: Breakdown ──────────────────────── */} <BreakdownTable breakdown={statsQuery.data.breakdown} /> </> ) : null} {/* ── L3: All Runs Table ─────────────────────── */} <RunsTable startDate={startDate} endDate={endDateParam} scope={scope} /> </div> </div> ); } |