feature/auto-populate-suggestions #1
@@ -14,6 +14,7 @@ from sqlmodel import Session
|
|||||||
from app.database import get_db_session
|
from app.database import get_db_session
|
||||||
from app.models.user import User
|
from app.models.user import User
|
||||||
from app.services.log_service import LogService
|
from app.services.log_service import LogService
|
||||||
|
from app.services.progression_service import ProgressionService
|
||||||
from app.services.workout_session_service import WorkoutSessionService
|
from app.services.workout_session_service import WorkoutSessionService
|
||||||
from app.utils.auth import get_current_admin_user, get_active_profile_id
|
from app.utils.auth import get_current_admin_user, get_active_profile_id
|
||||||
|
|
||||||
@@ -80,6 +81,10 @@ async def log_set(
|
|||||||
logs = log_service.list_logs_for_exercise(ws.id, exercise_id)
|
logs = log_service.list_logs_for_exercise(ws.id, exercise_id)
|
||||||
next_set = len(logs) + 1
|
next_set = len(logs) + 1
|
||||||
|
|
||||||
|
# Fetch suggestion for pre-filling the next set form
|
||||||
|
progression = ProgressionService(session)
|
||||||
|
suggestion = progression.get_suggestion(active_profile_id, exercise_id)
|
||||||
|
|
||||||
templates = request.app.state.templates
|
templates = request.app.state.templates
|
||||||
return templates.TemplateResponse("partials/log_entry.html", {
|
return templates.TemplateResponse("partials/log_entry.html", {
|
||||||
"request": request,
|
"request": request,
|
||||||
@@ -88,6 +93,8 @@ async def log_set(
|
|||||||
"workout_day_id": workout_day_id,
|
"workout_day_id": workout_day_id,
|
||||||
"next_set": next_set,
|
"next_set": next_set,
|
||||||
"session_id": ws.id,
|
"session_id": ws.id,
|
||||||
|
"suggested_reps": suggestion.get("suggested_reps"),
|
||||||
|
"suggested_weight": suggestion.get("suggested_weight"),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
@@ -124,6 +131,13 @@ async def edit_log(
|
|||||||
logs = log_service.list_logs_for_exercise(log.session_id, log.exercise_id)
|
logs = log_service.list_logs_for_exercise(log.session_id, log.exercise_id)
|
||||||
next_set = len(logs) + 1
|
next_set = len(logs) + 1
|
||||||
|
|
||||||
|
# Fetch suggestion for pre-filling the next set form
|
||||||
|
active_profile_id = get_active_profile_id(request)
|
||||||
|
suggestion = {}
|
||||||
|
if active_profile_id:
|
||||||
|
progression = ProgressionService(session)
|
||||||
|
suggestion = progression.get_suggestion(active_profile_id, log.exercise_id)
|
||||||
|
|
||||||
templates = request.app.state.templates
|
templates = request.app.state.templates
|
||||||
return templates.TemplateResponse("partials/log_entry.html", {
|
return templates.TemplateResponse("partials/log_entry.html", {
|
||||||
"request": request,
|
"request": request,
|
||||||
@@ -132,6 +146,8 @@ async def edit_log(
|
|||||||
"workout_day_id": 0,
|
"workout_day_id": 0,
|
||||||
"next_set": next_set,
|
"next_set": next_set,
|
||||||
"session_id": log.session_id,
|
"session_id": log.session_id,
|
||||||
|
"suggested_reps": suggestion.get("suggested_reps"),
|
||||||
|
"suggested_weight": suggestion.get("suggested_weight"),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
@@ -164,6 +180,13 @@ async def delete_log(
|
|||||||
logs = log_service.list_logs_for_exercise(session_id, exercise_id)
|
logs = log_service.list_logs_for_exercise(session_id, exercise_id)
|
||||||
next_set = len(logs) + 1
|
next_set = len(logs) + 1
|
||||||
|
|
||||||
|
# Fetch suggestion for pre-filling the next set form
|
||||||
|
active_profile_id = get_active_profile_id(request)
|
||||||
|
suggestion = {}
|
||||||
|
if active_profile_id:
|
||||||
|
progression = ProgressionService(session)
|
||||||
|
suggestion = progression.get_suggestion(active_profile_id, exercise_id)
|
||||||
|
|
||||||
templates = request.app.state.templates
|
templates = request.app.state.templates
|
||||||
return templates.TemplateResponse("partials/log_entry.html", {
|
return templates.TemplateResponse("partials/log_entry.html", {
|
||||||
"request": request,
|
"request": request,
|
||||||
@@ -172,6 +195,8 @@ async def delete_log(
|
|||||||
"workout_day_id": 0,
|
"workout_day_id": 0,
|
||||||
"next_set": next_set,
|
"next_set": next_set,
|
||||||
"session_id": session_id,
|
"session_id": session_id,
|
||||||
|
"suggested_reps": suggestion.get("suggested_reps"),
|
||||||
|
"suggested_weight": suggestion.get("suggested_weight"),
|
||||||
})
|
})
|
||||||
|
|
||||||
return HTMLResponse("")
|
return HTMLResponse("")
|
||||||
|
|||||||
@@ -32,6 +32,10 @@
|
|||||||
<!-- Inline logging (Phase 4) -->
|
<!-- Inline logging (Phase 4) -->
|
||||||
{% if active_profile %}
|
{% if active_profile %}
|
||||||
<div id="logs-exercise-{{ exercise.id }}">
|
<div id="logs-exercise-{{ exercise.id }}">
|
||||||
|
{% if suggestions and suggestions[exercise.id] %}
|
||||||
|
{% set suggested_reps = suggestions[exercise.id].suggested_reps %}
|
||||||
|
{% set suggested_weight = suggestions[exercise.id].suggested_weight %}
|
||||||
|
{% endif %}
|
||||||
{% if existing_logs and existing_logs[exercise.id] %}
|
{% if existing_logs and existing_logs[exercise.id] %}
|
||||||
{% set logs = existing_logs[exercise.id] %}
|
{% set logs = existing_logs[exercise.id] %}
|
||||||
{% set exercise_id = exercise.id %}
|
{% set exercise_id = exercise.id %}
|
||||||
|
|||||||
@@ -11,9 +11,11 @@
|
|||||||
<small style="white-space:nowrap; opacity:0.7;">Set {{ next_set|default(1) }}</small>
|
<small style="white-space:nowrap; opacity:0.7;">Set {{ next_set|default(1) }}</small>
|
||||||
<input type="number" name="reps" placeholder="Reps"
|
<input type="number" name="reps" placeholder="Reps"
|
||||||
min="0" max="100" required
|
min="0" max="100" required
|
||||||
|
{% if suggested_reps %}value="{{ suggested_reps }}"{% endif %}
|
||||||
style="width:5rem; margin-bottom:0;">
|
style="width:5rem; margin-bottom:0;">
|
||||||
<input type="text" name="weight" placeholder="Weight (lbs)"
|
<input type="text" name="weight" placeholder="Weight (lbs)"
|
||||||
required
|
required
|
||||||
|
{% if suggested_weight %}value="{{ suggested_weight }}"{% endif %}
|
||||||
style="width:8rem; margin-bottom:0;">
|
style="width:8rem; margin-bottom:0;">
|
||||||
<label style="display:flex; align-items:center; gap:0.3rem; margin-bottom:0; white-space:nowrap;">
|
<label style="display:flex; align-items:center; gap:0.3rem; margin-bottom:0; white-space:nowrap;">
|
||||||
<input type="checkbox" name="felt_easy" role="switch" style="margin-bottom:0;">
|
<input type="checkbox" name="felt_easy" role="switch" style="margin-bottom:0;">
|
||||||
|
|||||||
Reference in New Issue
Block a user