diff --git a/frontend/src/pages/DashboardPage.jsx b/frontend/src/pages/DashboardPage.jsx index a39db7f..14cb395 100644 --- a/frontend/src/pages/DashboardPage.jsx +++ b/frontend/src/pages/DashboardPage.jsx @@ -1,5 +1,5 @@ import { Link, useNavigate } from 'react-router-dom' -import { useQuery, useMutation } from '@tanstack/react-query' +import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query' import { useMemo, useState, useEffect, useRef } from 'react' import { BarChart, Bar, AreaChart, Area, Cell, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, @@ -20,6 +20,7 @@ import { BB_INFERRED_COLOR, BB_INFERRED_LABEL, bbLevelColor, inferBBType } from const Grid = WidthProvider(GridLayout) const MEDALS = { 1: '🥇', 2: '🥈', 3: '🥉' } +const tooltipStyle = { background: '#111827', border: '1px solid #374151', borderRadius: 8, fontSize: 12, color: '#fff' } const HRV_PALETTE = { balanced: 'text-green-400 bg-green-400/10 border-green-400/30', @@ -28,31 +29,59 @@ const HRV_PALETTE = { poor: 'text-red-400 bg-red-400/10 border-red-400/30', } -// Widget registry + default grid positions (12-col grid). minW/minH keep widgets usable. -const WIDGETS = [ - { id: 'stats', default: { x: 0, y: 0, w: 12, h: 1 }, minW: 4, minH: 1 }, - { id: 'weekly', default: { x: 0, y: 1, w: 6, h: 3 }, minW: 4, minH: 2 }, - { id: 'bodyBattery', default: { x: 6, y: 1, w: 3, h: 3 }, minW: 3, minH: 2 }, - { id: 'vo2max', default: { x: 9, y: 1, w: 3, h: 3 }, minW: 2, minH: 2 }, - { id: 'sleep', default: { x: 0, y: 4, w: 5, h: 3 }, minW: 3, minH: 2 }, - { id: 'hrv', default: { x: 5, y: 4, w: 3, h: 2 }, minW: 2, minH: 2 }, - { id: 'featured', default: { x: 0, y: 7, w: 8, h: 5 }, minW: 4, minH: 3 }, - { id: 'recent', default: { x: 8, y: 7, w: 4, h: 5 }, minW: 3, minH: 3 }, - { id: 'prs', default: { x: 0, y: 12, w: 12, h: 2 }, minW: 4, minH: 2 }, -] - -// Merge a saved layout with the registry: keep saved positions for known widgets, -// fall back to defaults for any widget the saved layout doesn't include (e.g. new ones). -function buildLayout(saved) { - const byId = Object.fromEntries((saved || []).map(l => [l.i, l])) - return WIDGETS.map(w => { - const s = byId[w.id] - const pos = s ? { x: s.x, y: s.y, w: s.w, h: s.h } : w.default - return { i: w.id, ...pos, minW: w.minW, minH: w.minH } - }) +// Compact single-stat widgets. val(health, ytdStats) → display string. +const STAT_DEFS = { + stat_steps: { label: 'Steps today', accent: 'green', sub: 'goal 10,000', val: h => h.steps != null ? h.steps.toLocaleString() : '--' }, + stat_resting_hr: { label: 'Resting HR', accent: 'red', val: h => formatHeartRate(h.resting_hr) }, + stat_sleep: { label: 'Sleep', accent: 'default', val: h => formatSleep(h.sleep_duration_s) }, + stat_vo2max: { label: 'VO₂ max', accent: 'blue', val: h => h.vo2max != null ? h.vo2max.toFixed(1) : '--', sub: h => h.fitness_age != null ? `fitness age ${h.fitness_age}` : undefined }, + stat_hrv: { label: 'HRV status', accent: 'purple', val: h => h.hrv_nightly_avg != null ? `${Math.round(h.hrv_nightly_avg)} ms` : '--', sub: h => h.hrv_status || undefined }, + stat_running: { label: 'Running this year', accent: 'blue', val: (h, y) => y ? `${y.running_km.toFixed(0)} km` : '--' }, + stat_cycling: { label: 'Cycling this year', accent: 'orange', val: (h, y) => y ? `${y.cycling_km.toFixed(0)} km` : '--' }, + stat_stress: { label: 'Stress', accent: 'purple', val: h => h.avg_stress != null ? Math.round(h.avg_stress) : '--' }, + stat_calories: { label: 'Active calories', accent: 'orange', val: h => h.active_calories != null ? Math.round(h.active_calories).toLocaleString() : '--' }, + stat_floors: { label: 'Floors climbed', accent: 'green', val: h => h.floors_climbed != null ? h.floors_climbed : '--' }, } -// ── Widgets ────────────────────────────────────────────────────────────────── +// Full widget registry: size defaults + palette label. Stats inherit from STAT_DEFS. +const WIDGETS = { + ...Object.fromEntries(Object.entries(STAT_DEFS).map(([id, d]) => [id, { label: d.label, w: 2, h: 1, minW: 2, minH: 1 }])), + weekly: { label: 'Weekly distance', w: 6, h: 3, minW: 4, minH: 2 }, + bodyBattery: { label: 'Body Battery', w: 4, h: 3, minW: 3, minH: 2 }, + vo2maxTrend: { label: 'VO₂ max trend', w: 3, h: 3, minW: 2, minH: 2 }, + sleepDetail: { label: 'Sleep stages', w: 5, h: 3, minW: 3, minH: 2 }, + weight: { label: 'Weight trend', w: 3, h: 3, minW: 2, minH: 2 }, + featured: { label: 'Latest activity', w: 8, h: 5, minW: 4, minH: 3 }, + recent: { label: 'Recent activities', w: 4, h: 5, minW: 3, minH: 3 }, + prs: { label: 'Running PRs', w: 12, h: 2, minW: 4, minH: 2 }, +} + +// Default arrangement (used for new users and to migrate pre-redesign layouts). +const DEFAULT_LAYOUT = [ + { i: 'stat_steps', x: 0, y: 0, w: 2, h: 1 }, + { i: 'stat_resting_hr', x: 2, y: 0, w: 2, h: 1 }, + { i: 'stat_sleep', x: 4, y: 0, w: 2, h: 1 }, + { i: 'stat_vo2max', x: 6, y: 0, w: 2, h: 1 }, + { i: 'stat_hrv', x: 8, y: 0, w: 2, h: 1 }, + { i: 'stat_running', x: 10, y: 0, w: 2, h: 1 }, + { i: 'weekly', x: 0, y: 1, w: 6, h: 3 }, + { i: 'bodyBattery', x: 6, y: 1, w: 4, h: 3 }, + { i: 'featured', x: 0, y: 4, w: 8, h: 5 }, + { i: 'recent', x: 8, y: 4, w: 4, h: 5 }, + { i: 'prs', x: 0, y: 9, w: 12, h: 2 }, +] + +const attachMins = (lay) => + lay.filter(l => WIDGETS[l.i]).map(l => ({ ...l, minW: WIDGETS[l.i].minW, minH: WIDGETS[l.i].minH })) + +function buildLayout(saved) { + const known = (saved || []).filter(l => WIDGETS[l.i]) + // Migrate old layouts (no stat_* widgets) or empty/missing to the new default. + const hasStats = known.some(l => l.i.startsWith('stat_')) + return attachMins(known.length && hasStats ? known : DEFAULT_LAYOUT) +} + +// ── Reusable card shell ────────────────────────────────────────────────────── function Card({ title, viewHref, children, className = '' }) { return ( @@ -77,25 +106,15 @@ function Stat({ label, value }) { ) } -function StatsRow({ health, ytdStats }) { - return ( -
- - - - - -
- ) -} +// ── Chart widgets ──────────────────────────────────────────────────────────── -function MiniBodyBattery({ bb, hires, sleepStart, sleepEnd }) { - const raw = (hires?.length ? hires : bb?.values || []).map(([ts, level]) => ({ ts, level })) +function BodyBatteryToday({ bb, hires, sleepStart, sleepEnd }) { + const raw = (hires?.length ? hires : bb?.values || []).map(([ts, level]) => ({ t: ts, level })) const sleepStartMs = sleepStart ? new Date(sleepStart).getTime() : null const sleepEndMs = sleepEnd ? new Date(sleepEnd).getTime() : null const data = raw.map((d, i) => ({ ...d, - type: inferBBType(d.ts, d.level, i > 0 ? raw[i - 1].level : null, sleepStartMs, sleepEndMs), + type: inferBBType(d.t, d.level, i > 0 ? raw[i - 1].level : null, sleepStartMs, sleepEndMs), })) const charged = bb?.charged, drained = bb?.drained, end_level = bb?.end_level const peak = data.length ? Math.max(...data.map(d => d.level)) : end_level @@ -104,84 +123,114 @@ function MiniBodyBattery({ bb, hires, sleepStart, sleepEnd }) { return ( -
- {peak != null && ( - {Math.round(peak)} +
+
+ {peak != null && {Math.round(peak)}} + {charged != null && +{charged}} + {drained != null && -{drained}} + {end_level != null && now {Math.round(end_level)}} +
+ {hasGraph ? ( + <> +
+ + + format(new Date(ts), 'HH:mm')} + interval={Math.max(1, Math.floor(data.length / 6))} /> + + format(new Date(ts), 'HH:mm')} formatter={v => [`${Math.round(v)}%`, 'Battery']} /> + + {data.map((d, i) => )} + + + +
+
+ {presentTypes.map(type => ( +
+
+ {BB_INFERRED_LABEL[type]} +
+ ))} +
+ + ) : ( +

No body battery data today

)} - {charged != null && +{charged}} - {drained != null && -{drained}} - {end_level != null && now {Math.round(end_level)}}
- {hasGraph ? ( - <> -
- - - - format(new Date(ts), 'HH:mm')} - formatter={v => [`${Math.round(v)}%`, 'Battery']} - /> - - {data.map((d, i) => )} - - - -
-
- {presentTypes.map(type => ( -
-
- {BB_INFERRED_LABEL[type]} -
- ))} -
- - ) : ( -

No body battery data today

- )} ) } -function Vo2MaxWidget({ health, recentHealth }) { +function Sparkline({ data, dataKey, color, gradId, fmt }) { + return ( + + + + + + + + + + format(new Date(d), 'MMM d')} + formatter={v => [fmt ? fmt(v) : v, '']} /> + + + + ) +} + +function Vo2MaxTrend({ health, recentHealth }) { const series = useMemo( - () => [...(recentHealth || [])] - .filter(d => d.vo2max != null) + () => [...(recentHealth || [])].filter(d => d.vo2max != null) .sort((a, b) => new Date(a.date) - new Date(b.date)) .map(d => ({ date: d.date, v: d.vo2max })), [recentHealth], ) return ( -
- {health.vo2max != null ? health.vo2max.toFixed(1) : '--'} - ml/kg/min -
- {health.fitness_age != null && ( -

Fitness age {health.fitness_age}

- )} - {series.length >= 2 && ( -
- - - - - - - - - - format(new Date(d), 'MMM d')} formatter={v => [v.toFixed(1), 'VOâ‚‚ max']} /> - - - +
+
+ {health.vo2max != null ? health.vo2max.toFixed(1) : '--'} + ml/kg/min
- )} + {health.fitness_age != null &&

Fitness age {health.fitness_age}

} +
+ {series.length >= 2 + ? v.toFixed(1)} /> + :

Not enough history

} +
+
+ + ) +} + +function WeightMini({ recentHealth }) { + const series = useMemo( + () => [...(recentHealth || [])].filter(d => d.weight_kg != null) + .sort((a, b) => new Date(a.date) - new Date(b.date)) + .map(d => ({ date: d.date, w: +d.weight_kg.toFixed(2) })), + [recentHealth], + ) + const latest = series.length ? series[series.length - 1].w : null + return ( + +
+
+ {latest != null ? latest.toFixed(1) : '--'} + kg +
+
+ {series.length >= 2 + ? `${v.toFixed(1)} kg`} /> + :

Not enough history

} +
+
) } @@ -193,7 +242,7 @@ const SLEEP_STAGES = [ { key: 'sleep_awake_s', label: 'Awake', color: '#6b7280' }, ] -function SleepMini({ health }) { +function SleepDetail({ health }) { const total = SLEEP_STAGES.reduce((s, st) => s + (health[st.key] || 0), 0) return ( @@ -229,60 +278,39 @@ function SleepMini({ health }) { ) } -function HrvWidget({ health }) { - const status = health.hrv_status - const cls = status ? (HRV_PALETTE[status.toLowerCase()] || 'text-gray-400 bg-gray-400/10 border-gray-400/30') : null - return ( - -
-
- {health.hrv_nightly_avg != null ? Math.round(health.hrv_nightly_avg) : '--'} - ms -
- {status - ? {status} - : No HRV status} -
-
- ) -} - function WeeklyChart({ activities }) { const navigate = useNavigate() - if (!activities?.length) return ( -
No activities yet
- ) - const now = new Date() - const weeks = eachWeekOfInterval({ start: subWeeks(startOfWeek(now), 7), end: startOfWeek(now) }) - const data = weeks.map(weekStart => { - const weekEnd = addDays(weekStart, 7) - const km = activities - .filter(a => { const t = new Date(a.start_time); return t >= weekStart && t < weekEnd }) - .reduce((s, a) => s + (a.distance_m || 0) / 1000, 0) - return { - week: format(weekStart, 'MMM d'), - km: parseFloat(km.toFixed(2)), - weekStartISO: format(weekStart, 'yyyy-MM-dd'), - weekEndISO: format(weekEnd, 'yyyy-MM-dd'), - } - }) - const handleBarClick = (entry) => { - const p = entry?.activePayload?.[0]?.payload - if (p) navigate(`/activities?from=${p.weekStartISO}&to=${p.weekEndISO}`) - } + const data = useMemo(() => { + if (!activities?.length) return [] + const now = new Date() + const weeks = eachWeekOfInterval({ start: subWeeks(startOfWeek(now), 7), end: startOfWeek(now) }) + return weeks.map(weekStart => { + const weekEnd = addDays(weekStart, 7) + const km = activities + .filter(a => { const t = new Date(a.start_time); return t >= weekStart && t < weekEnd }) + .reduce((s, a) => s + (a.distance_m || 0) / 1000, 0) + return { week: format(weekStart, 'MMM d'), km: parseFloat(km.toFixed(2)), weekStartISO: format(weekStart, 'yyyy-MM-dd'), weekEndISO: format(weekEnd, 'yyyy-MM-dd') } + }) + }, [activities]) + return ( - - - - - `${v.toFixed(0)}`} /> - [`${v.toFixed(1)} km`, 'Distance']} cursor={{ fill: 'rgba(59,130,246,0.1)' }} /> - - - + + {data.length ? ( + + { const p = e?.activePayload?.[0]?.payload; if (p) navigate(`/activities?from=${p.weekStartISO}&to=${p.weekEndISO}`) }} + style={{ cursor: 'pointer' }}> + + + `${v.toFixed(0)}`} /> + [`${v.toFixed(1)} km`, 'Distance']} cursor={{ fill: 'rgba(59,130,246,0.1)' }} /> + + + + ) : ( +
No activities yet
+ )} +
) } @@ -296,9 +324,7 @@ function FeaturedActivity({ activity, segments }) {
{sportIcon(activity.sport_type)}
- - {activity.name} - + {activity.name}

{formatDate(activity.start_time)}

@@ -330,15 +356,11 @@ function FeaturedActivity({ activity, segments }) { return (
{seg.name} - - {formatDuration(seg.duration_s)} - + {formatDuration(seg.duration_s)} - {isPodium - ? {MEDALS[seg.rank]} - : delta != null - ? +{formatDuration(delta)} - : --} + {isPodium ? {MEDALS[seg.rank]} + : delta != null ? +{formatDuration(delta)} + : --}
) @@ -369,9 +391,7 @@ function RecentActivities({ activities }) { ))} {!activities?.length && ( -

- No activities yet — import some data -

+

No activities yet — import some data

)}
@@ -404,18 +424,14 @@ export default function DashboardPage() { queryKey: ['activities-recent'], queryFn: () => api.get('/activities/', { params: { per_page: 10 } }).then(r => r.data), }) - const { data: allActivities } = useQuery({ queryKey: ['activities-all-chart'], - queryFn: () => - api.get('/activities/', { params: { per_page: 100, from_date: subDays(new Date(), 60).toISOString() } }).then(r => r.data), + queryFn: () => api.get('/activities/', { params: { per_page: 100, from_date: subDays(new Date(), 60).toISOString() } }).then(r => r.data), }) - const { data: recentHealth } = useQuery({ queryKey: ['health-metrics', 'dash'], queryFn: () => api.get('/health-metrics/', { params: { limit: 365 } }).then(r => r.data), }) - const { data: profile } = useQuery({ queryKey: ['profile'], queryFn: () => api.get('/profile/').then(r => r.data), @@ -431,7 +447,6 @@ export default function DashboardPage() { sleep_duration_s: pick('sleep_duration_s'), sleep_start: latest.sleep_start ?? null, sleep_end: latest.sleep_end ?? null, - // Sleep stages + score for the latest night (same row as sleep_start). sleep_deep_s: latest.sleep_deep_s ?? null, sleep_rem_s: latest.sleep_rem_s ?? null, sleep_light_s: latest.sleep_light_s ?? null, @@ -443,6 +458,8 @@ export default function DashboardPage() { vo2max: pick('vo2max'), fitness_age: pick('fitness_age'), avg_stress: pick('avg_stress'), + active_calories: pick('active_calories'), + floors_climbed: pick('floors_climbed'), } }, [recentHealth]) @@ -451,17 +468,14 @@ export default function DashboardPage() { queryFn: () => api.get('/health-metrics/intraday', { params: { date: health.date } }).then(r => r.data), enabled: !!health.date, }) - const { data: records } = useQuery({ queryKey: ['records-running'], queryFn: () => api.get('/records/', { params: { sport_type: 'running' } }).then(r => r.data), }) - const { data: ytdStats } = useQuery({ queryKey: ['ytd-stats'], queryFn: () => api.get('/activities/stats/ytd').then(r => r.data), }) - const featured = recentActivities?.[0] const { data: featuredSegments } = useQuery({ queryKey: ['activity-segments', featured?.id], @@ -471,11 +485,11 @@ export default function DashboardPage() { // ── Layout state ────────────────────────────────────────────────────────── const [editMode, setEditMode] = useState(false) + const [addOpen, setAddOpen] = useState(false) const [layout, setLayout] = useState(() => buildLayout(null)) const saveTimer = useRef(null) const loadedRef = useRef(false) - // Apply the saved layout once the profile loads. useEffect(() => { if (profile && !loadedRef.current) { loadedRef.current = true @@ -483,48 +497,84 @@ export default function DashboardPage() { } }, [profile]) + const qc = useQueryClient() + const stripLayout = (lay) => lay.map(({ i, x, y, w, h }) => ({ i, x, y, w, h })) const saveLayout = useMutation({ - mutationFn: (lay) => - api.put('/profile/dashboard-layout', { layout: lay.map(({ i, x, y, w, h }) => ({ i, x, y, w, h })) }), + mutationFn: (lay) => api.put('/profile/dashboard-layout', { layout: stripLayout(lay) }), + // Keep the cached profile in sync so re-mounting the page doesn't revert the layout. + onSuccess: (_d, lay) => qc.setQueryData(['profile'], p => (p ? { ...p, dashboard_layout: stripLayout(lay) } : p)), }) + const persist = (lay) => { clearTimeout(saveTimer.current); saveLayout.mutate(lay) } + const handleLayoutChange = (next) => { - setLayout(next) + const withMins = attachMins(next) + setLayout(withMins) if (editMode) { clearTimeout(saveTimer.current) - saveTimer.current = setTimeout(() => saveLayout.mutate(next), 700) + saveTimer.current = setTimeout(() => saveLayout.mutate(withMins), 700) } } - const finishEditing = () => { - clearTimeout(saveTimer.current) - saveLayout.mutate(layout) - setEditMode(false) + const addWidget = (id) => { + if (layout.some(l => l.i === id)) { setAddOpen(false); return } + const maxY = layout.reduce((m, l) => Math.max(m, l.y + l.h), 0) + const def = WIDGETS[id] + const next = attachMins([...layout, { i: id, x: 0, y: maxY, w: def.w, h: def.h }]) + setLayout(next); persist(next); setAddOpen(false) + } + const removeWidget = (id) => { const next = layout.filter(l => l.i !== id); setLayout(next); persist(next) } + + const finishEditing = () => { persist(layout); setEditMode(false); setAddOpen(false) } + const resetLayout = () => { const def = attachMins(DEFAULT_LAYOUT); setLayout(def); persist(def) } + + const renderWidget = (id) => { + if (STAT_DEFS[id]) { + const d = STAT_DEFS[id] + return + } + switch (id) { + case 'weekly': return + case 'bodyBattery': return + case 'vo2maxTrend': return + case 'sleepDetail': return + case 'weight': return + case 'featured': return + case 'recent': return + case 'prs': return + default: return null + } } - const resetLayout = () => { - const def = buildLayout(null) - setLayout(def) - saveLayout.mutate(def) - } - - const WIDGET_CONTENT = { - stats: , - weekly: , - bodyBattery: , - vo2max: , - sleep: , - hrv: , - featured: , - recent: , - prs: , - } + const presentIds = new Set(layout.map(l => l.i)) + const available = Object.keys(WIDGETS).filter(id => !presentIds.has(id)) return (

Dashboard

+ {editMode && ( +
+ + {addOpen && ( +
+ {available.length === 0 + ?

All widgets are on the dashboard

+ : available.map(id => ( + + ))} +
+ )} +
+ )} {editMode && ( )} @@ -540,7 +590,7 @@ export default function DashboardPage() {
{editMode && ( -

Drag widgets to move them, or drag a corner to resize. Changes save automatically.

+

Drag to move, drag a corner to resize, or remove a widget with ✕. Add widgets from the menu. Changes save automatically.

)} - {WIDGETS.map(w => ( -
+ {layout.filter(l => WIDGETS[l.i]).map(l => ( +
+ {editMode && ( + + )}
- {WIDGET_CONTENT[w.id]} + {renderWidget(l.i)}
))}