feat: global exercise-name autocomplete

Autocomplete now draws from every user's logged exercises, not
just the requesting user's history. New users get suggestions from
day one.

- db.get_all_exercise_names(): case-insensitive grouping, ordered
  by usage count desc, alphabetical tiebreak, excludes names that
  only appear in soft-deleted workouts.
- server.api_get_exercise_names simplified to a one-liner.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Danny 2026-04-19 13:56:53 +02:00
parent 3209136189
commit 0e4bf65d5b
3 changed files with 65 additions and 13 deletions

18
db.py
View file

@ -252,6 +252,24 @@ def get_workout_count(user_id: int) -> int:
return row["cnt"]
def get_all_exercise_names() -> list[str]:
"""Return exercise names across all users (for autocomplete), ordered by
popularity (most-used first), then alphabetically. Case-insensitive
grouping each distinct name is returned once in its most-used casing.
"""
with get_db() as conn:
rows = conn.execute(
"""SELECT e.name, COUNT(*) AS n
FROM exercises e
JOIN superset_groups sg ON sg.id = e.superset_group_id
JOIN workouts w ON w.id = sg.workout_id
WHERE w.deleted_at IS NULL
GROUP BY LOWER(e.name)
ORDER BY n DESC, LOWER(e.name) ASC""",
).fetchall()
return [r["name"] for r in rows]
def get_stats_sql(user_id: int) -> dict:
"""Compute stats entirely in SQL."""
with get_db() as conn: