File size: 7,309 Bytes
9e4583c | 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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | "use client";
import { useState, useEffect, useCallback, useMemo } from "react";
import Card from "./Card";
import { CardSkeleton } from "./Loading";
import { fmtCompact as fmt, fmtFull, fmtCost } from "@/shared/utils/formatting";
import {
StatCard,
ActivityHeatmap,
DailyTrendChart,
AccountDonut,
ApiKeyDonut,
ApiKeyTable,
MostActiveDay7d,
WeeklySquares7d,
ModelTable,
ProviderCostDonut,
ModelOverTimeChart,
ProviderTable,
} from "./analytics";
// ============================================================================
// Main Component
// ============================================================================
export default function UsageAnalytics() {
const [range, setRange] = useState("30d");
const [analytics, setAnalytics] = useState<any>(null);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const fetchAnalytics = useCallback(async () => {
try {
setLoading(true);
const res = await fetch(`/api/usage/analytics?range=${range}`);
if (!res.ok) throw new Error("Failed to fetch");
const data = await res.json();
setAnalytics(data);
setError(null);
} catch (err) {
setError((err as any).message);
} finally {
setLoading(false);
}
}, [range]);
useEffect(() => {
fetchAnalytics();
}, [fetchAnalytics]);
const ranges = [
{ value: "1d", label: "1D" },
{ value: "7d", label: "7D" },
{ value: "30d", label: "30D" },
{ value: "90d", label: "90D" },
{ value: "ytd", label: "YTD" },
{ value: "all", label: "All" },
];
const topModel = useMemo(() => {
const models = analytics?.byModel || [];
return models.length > 0 ? models[0].model : "β";
}, [analytics]);
const topProvider = useMemo(() => {
const providers = analytics?.byProvider || [];
return providers.length > 0 ? providers[0].provider : "β";
}, [analytics]);
const busiestDay = useMemo(() => {
const wp = analytics?.weeklyPattern || [];
if (!wp.length) return "β";
const max = wp.reduce((a, b) => (a.avgTokens > b.avgTokens ? a : b), wp[0]);
return max.avgTokens > 0 ? max.day : "β";
}, [analytics]);
const providerCount = useMemo(() => {
return (analytics?.byProvider || []).length;
}, [analytics]);
if (loading && !analytics) return <CardSkeleton />;
if (error) return <Card className="p-6 text-center text-red-500">Error: {error}</Card>;
const s = analytics?.summary || {};
// ββ Derived insight values ββ
const avgTokensPerReq = s.totalRequests > 0 ? Math.round(s.totalTokens / s.totalRequests) : 0;
const costPerReq = s.totalRequests > 0 ? s.totalCost / s.totalRequests : 0;
const ioRatio = s.completionTokens > 0 ? (s.promptTokens / s.completionTokens).toFixed(1) : "β";
return (
<div className="flex flex-col gap-5">
{/* Header + Time Range */}
<div className="flex items-center justify-between">
<h2 className="text-xl font-semibold flex items-center gap-2">
<span className="material-symbols-outlined text-primary text-[22px]">analytics</span>
Usage Analytics
</h2>
<div className="flex items-center gap-1 bg-black/[0.03] dark:bg-white/[0.03] rounded-lg p-1 border border-black/5 dark:border-white/5">
{ranges.map((r) => (
<button
key={r.value}
onClick={() => setRange(r.value)}
className={`px-3 py-1 rounded-md text-xs font-semibold transition-all ${
range === r.value
? "bg-primary text-white shadow-sm"
: "text-text-muted hover:text-text-main hover:bg-black/5 dark:hover:bg-white/5"
}`}
>
{r.label}
</button>
))}
</div>
</div>
{/* Summary Cards β Row 1: Core metrics */}
<div className="grid grid-cols-2 md:grid-cols-7 gap-3">
<StatCard
icon="generating_tokens"
label="Total Tokens"
value={fmt(s.totalTokens)}
subValue={`${fmtFull(s.totalRequests)} requests`}
/>
<StatCard
icon="input"
label="Input Tokens"
value={fmt(s.promptTokens)}
color="text-primary"
/>
<StatCard
icon="output"
label="Output Tokens"
value={fmt(s.completionTokens)}
color="text-emerald-500"
/>
<StatCard
icon="payments"
label="Est. Cost"
value={fmtCost(s.totalCost)}
color="text-amber-500"
/>
<StatCard icon="group" label="Accounts" value={s.uniqueAccounts || 0} />
<StatCard icon="vpn_key" label="API Keys" value={s.uniqueApiKeys || 0} />
<StatCard icon="model_training" label="Models" value={s.uniqueModels || 0} />
</div>
{/* Summary Cards β Row 2: Derived insights */}
<div className="grid grid-cols-2 md:grid-cols-7 gap-3">
<StatCard
icon="speed"
label="Avg Tokens/Req"
value={fmt(avgTokensPerReq)}
color="text-cyan-500"
/>
<StatCard
icon="request_quote"
label="Cost/Request"
value={fmtCost(costPerReq)}
color="text-orange-500"
/>
<StatCard
icon="compare_arrows"
label="I/O Ratio"
value={`${ioRatio}x`}
color="text-violet-500"
/>
<StatCard icon="star" label="Top Model" value={topModel} color="text-pink-500" />
<StatCard icon="cloud" label="Top Provider" value={topProvider} color="text-teal-500" />
<StatCard icon="today" label="Busiest Day" value={busiestDay} color="text-rose-500" />
<StatCard icon="dns" label="Providers" value={providerCount} color="text-indigo-500" />
</div>
{/* Activity Heatmap + Weekly Widgets */}
<div
style={{ display: "grid", gridTemplateColumns: "2fr 1fr", gap: 16, alignItems: "stretch" }}
>
<ActivityHeatmap activityMap={analytics?.activityMap} />
<div style={{ display: "flex", flexDirection: "column", gap: 16 }}>
<MostActiveDay7d activityMap={analytics?.activityMap} />
<WeeklySquares7d activityMap={analytics?.activityMap} />
</div>
</div>
{/* Token & Cost Trend + Provider Cost Donut */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<DailyTrendChart dailyTrend={analytics?.dailyTrend} />
<ProviderCostDonut byProvider={analytics?.byProvider} />
</div>
{/* Model Usage Over Time (stacked area) */}
<ModelOverTimeChart
dailyByModel={analytics?.dailyByModel}
modelNames={analytics?.modelNames}
/>
{/* Account Donut + API Key Donut */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<AccountDonut byAccount={analytics?.byAccount} />
<ApiKeyDonut byApiKey={analytics?.byApiKey} />
</div>
{/* Provider Breakdown Table */}
<ProviderTable byProvider={analytics?.byProvider} />
{/* API Key Table */}
<ApiKeyTable byApiKey={analytics?.byApiKey} />
{/* Model Breakdown Table */}
<ModelTable byModel={analytics?.byModel} summary={s} />
</div>
);
}
|