perf(fitness/history): slim session list projection

List endpoint previously returned full session documents minus GPS
tracks — two months × up to 200 sessions means ~60 KB of payload per
month with a lot of fields (notes, templateId/Name, mode,
activityType, endTime, session-level gpsPreview) that SessionCard
never reads.

Narrow the projection to exactly what the history page + SessionCard
use, and switch the query to .lean() so we skip the Mongoose document
overhead on deserialisation.

Detail view (/fitness/history/[id]) hits a separate endpoint that
keeps the full document.
This commit is contained in:
2026-04-23 15:40:27 +02:00
parent 076c6efb38
commit 87bf5d100e
3 changed files with 17 additions and 5 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ Order = impact. Font items + app.html preload intentionally skipped.
- [x] 8. Calendar payload trim — `yearDays` narrowed to `{iso, color}` (needle lookup only), new pre-filtered `feastDots` array carries feast-specific metadata. Also fixed a stray double `locals.session ?? (locals.session ?? …)` in both calendar page loaders.
- [ ] 9. History sessions endpoint — slim exercise payload for list view
- [ ] 10. `Cache-Control` headers on stable API endpoints (all_brief, calendar, exercises metadata)
- [ ] 11. Search — debounce 200 ms + server-side pre-normalized `_searchKey`
- [ ] 11. Search — debounce 100 ms + server-side pre-normalized `_searchKey`
## Features
[x] on /fitness/measure, fill "Past measurements" in SSR only for the last 10 measurements. anything further should be fetched client side on mount to decreae initial page load time. use a "show more" button and paginate measurments.
@@ -24,7 +24,7 @@ Order = impact. Font items + app.html preload intentionally skipped.
[x] BF graph (with trend line like weight graph) on /fitness/stats page. Emphasize relative changes, not absolute numbers in design (as we cannot trust those) (e.g., use start day of overview as 0% and then show +/- x % on the graph)
[x] Workshop better names than "Measure" for the /fitness/measure route. It's about body data points (i.e., non-food related). What's a better, short name than "Measure" to capture the logging of weight, body composition, body part measurements, and period tracking?
[x] on /fitness/stats/histoy/<part> for body measurement graphs, make the range reasonable. e.g., if we have 1 cm change, do not fill the entire y-height with 1 cm. Use reasonable padding for low ranges (i think we do something like htis already on the weight graph?)
[ ] Make the Period ended button a lot more prominent
[ ] on /fitness/check-in, Make the Period ended button a lot more prominent in the period tracker component.
[ ] swap heart emoji on recipe favorites to lucide icon
[ ] coop and migros cards on shopping list for scanning
[ ] login icon from lucide in header
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "homepage",
"version": "1.46.22",
"version": "1.46.23",
"private": true,
"type": "module",
"scripts": {
+14 -2
View File
@@ -37,9 +37,21 @@ export const GET: RequestHandler = async ({ url, locals }) => {
query.startTime = { $gte: start, $lt: end };
}
// Projection matches what SessionCard + the history page actually read.
// Drops notes, templateId/Name, mode, activityType, endTime, gpsTrack(s),
// and session-level gpsPreview — the list view uses only the per-exercise
// gpsPreview for its polyline. Detail view hits a separate endpoint
// (/api/fitness/sessions/[id]) which keeps the full document.
const [sessions, total] = await Promise.all([
WorkoutSession.find(query).select('-exercises.gpsTrack -gpsTrack')
.sort({ startTime: -1 }).limit(limit).skip(offset),
WorkoutSession.find(query)
.select(
'name startTime duration totalVolume totalDistance prs kcalEstimate ' +
'exercises.exerciseId exercises.totalDistance exercises.gpsPreview exercises.sets'
)
.sort({ startTime: -1 })
.limit(limit)
.skip(offset)
.lean(),
WorkoutSession.countDocuments(query)
]);