12 Commits

Author SHA1 Message Date
Stef
bc6b95f781 Development (#13)
* Adjusted GUI of daily dashboard to better deal with float values

* Change password + New base (#10)

* created a new Base template to test with

* Changed out the base and added a new password page

* Password change works, UI needs redisgn

* Daily log now sums up amount per item in a day

* Quick fix for url name issues
2025-10-18 14:52:54 +02:00
312eda85df Can now set macro target 2025-10-10 19:50:18 +02:00
Stef
e934633370 Development (#12)
* Adjusted GUI of daily dashboard to better deal with float values

* Change password + New base (#10)

* created a new Base template to test with

* Changed out the base and added a new password page

* Password change works, UI needs redisgn

* Daily log now sums up amount per item in a day
2025-10-08 19:12:19 +02:00
Stef
88f553a08e New webpage structure, not yet finished. Change password implemented again (#11)
* Adjusted GUI of daily dashboard to better deal with float values

* Change password + New base (#10)

* created a new Base template to test with

* Changed out the base and added a new password page

* Password change works, UI needs redisgn
2025-10-08 15:38:40 +02:00
Stef
573437f4cf Adjusted GUI of daily dashboard to better deal with float values (#9) 2025-10-08 11:56:20 +02:00
4bc319c32a Revert "Update requirements.txt"
This reverts commit 24a1757166.
2025-08-21 17:05:32 +02:00
24a1757166 Update requirements.txt 2025-08-21 16:55:52 +02:00
5373d373ca Update find_item.html 2025-08-14 17:40:27 +02:00
Stef
dca3ff7efe Merge pull request #8 from StefBuwalda/development
Update find_item.html
2025-08-14 17:38:25 +02:00
7cedd8f74d Update find_item.html 2025-08-14 17:38:10 +02:00
Stef
faff1a60b8 Merge pull request #7 from StefBuwalda/development
Refactor add meal flow and remove v2 routes
2025-08-14 15:50:37 +02:00
73985b9b6d Refactor add meal flow and remove v2 routes
Migrated add_meal_v2 routes and templates to add_meal, renaming endpoints and updating references throughout the app. Removed legacy daily_log2 route and template, consolidating to daily_log. Moved macro_arr_to_json to utils.py for reuse. Updated navigation and redirect logic to use new routes. Improved item finding and barcode scanning UI.
2025-08-14 15:50:17 +02:00
19 changed files with 610 additions and 325 deletions

23
app.py
View File

@@ -1,8 +1,4 @@
from flask import (
redirect,
url_for,
send_from_directory,
)
from flask import redirect, url_for, send_from_directory, render_template
from flask_login import (
login_required,
current_user,
@@ -12,7 +8,7 @@ from application import db, app, login_manager
from application.admin.routes import admin_bp
from application.user.routes import user_bp
from application.auth.routes import bp as auth_bp
from application.add_meal_v2.routes import bp as add_meal_v2_bp
from application.add_meal.routes import bp as add_meal_bp
from typing import Optional
# Config
@@ -30,12 +26,17 @@ def load_user(user_id: int):
app.register_blueprint(admin_bp)
app.register_blueprint(user_bp)
app.register_blueprint(auth_bp)
app.register_blueprint(add_meal_v2_bp)
app.register_blueprint(add_meal_bp)
# @app.errorhandler(404)
# def page_not_found(e):
# return redirect("/")
# Routes
def default_return(next_page: Optional[str] = None):
return redirect(url_for("user.daily_log2"))
return redirect(url_for("user.daily_log"))
if next_page:
return redirect(next_page)
if current_user.is_admin:
@@ -49,6 +50,12 @@ def index():
return redirect(url_for("auth.login"))
@app.route("/test")
@login_required
def text():
return render_template("newBase.html")
@app.route("/favicon.ico")
def favicon():
return send_from_directory("static", "favicon.ico")

View File

@@ -17,9 +17,9 @@ from sqlalchemy.sql.elements import BinaryExpression
from typing import cast
bp = Blueprint(
"add_meal_v2",
"add_meal",
__name__,
url_prefix="/add_meal_v2",
url_prefix="/add_meal",
template_folder="templates",
)
@@ -27,14 +27,14 @@ bp = Blueprint(
def date_present(func):
def check_date():
if "selected_date" not in session:
return redirect(url_for("user.daily_log2"))
return redirect(url_for("user.daily_log"))
def item_selected(func):
def check_item():
if check_item():
if "item_id" not in session:
return redirect(url_for("add_meal_v2.get_barcode"))
return redirect(url_for("add_meal.find_item"))
@bp.before_request
@@ -44,14 +44,15 @@ def login_required():
@date_present
@bp.route("/get_barcode", methods=["GET"])
def get_barcode():
return render_template("scan_barcode_v2.html")
@bp.route("/find_item", methods=["GET"])
def find_item():
return render_template("find_item.html")
# TODO: Switch from this to query parameters / url args
@date_present
@bp.route("/add_existing/<string:input>", methods=["GET"])
def add_existing(input: str):
@bp.route("/select_item/<path:input>", methods=["GET"])
def select_item(input: str):
# Check if input is a barcode
if input.isdigit():
item = current_user.food_items.filter_by(barcode=input).first()
@@ -61,28 +62,28 @@ def add_existing(input: str):
if item is None:
# Does not exist, add item
return redirect(url_for("add_meal_v2.add_new", input=input))
return redirect(url_for("add_meal.add_new_item", input=input))
# Track item to add and continue to next step
session["item_id"] = item.id
return redirect(url_for("add_meal_v2.step4"))
return redirect(url_for("add_meal.step4"))
@date_present
@bp.route("/add_new/<string:input>", methods=["GET"])
def add_new(input: str):
@bp.route("/add_new_item/<path:input>", methods=["GET"])
def add_new_item(input: str):
form = FoodItemForm()
if input.isdigit():
form.barcode.data = input
else:
form.name.data = input
return render_template("add_item.html", form=form)
return render_template("add_new_item.html", form=form)
@date_present
@bp.route("/add_new/<string:input>", methods=["POST"])
def add_new_post(input: str):
@bp.route("/add_new_item/<path:input>", methods=["POST"])
def post_new_item(input: str):
form = FoodItemForm()
if form.validate_on_submit():
@@ -126,10 +127,10 @@ def add_new_post(input: str):
print(f"Item exists: {item.barcode} {item.name}")
# Item added or already present, return to step 3.
return redirect(url_for("add_meal_v2.add_existing", input=input))
return redirect(url_for("add_meal.select_item", input=input))
else:
print("[DEBUG] Form Invalid")
return redirect(url_for("add_meal_v2.add_new", input=input))
return redirect(url_for("add_meal.add_new_item", input=input))
@date_present
@@ -139,7 +140,7 @@ def step4():
form = FoodLogForm()
item = db.session.get(FoodItem, session["item_id"])
if not item:
return redirect(url_for("add_meal_v2.get_barcode"))
return redirect(url_for("add_meal.find_item"))
if form.validate_on_submit():
assert form.amount.data
@@ -156,9 +157,9 @@ def step4():
db.session.commit()
session.pop("item_id")
session.pop("selected_date")
return redirect(url_for("user.daily_log2"))
return redirect(url_for("user.daily_log"))
return render_template("step4.html", tod="idk", item=item, form=form)
return render_template("step4.html", item=item, form=form)
@date_present

View File

@@ -0,0 +1,126 @@
{% extends "base.html" %}
{% block content %}
<div class="container d-flex flex-column justify-content-start align-items-center py-4" style="min-height: 100vh;">
<div class="card shadow-sm w-100">
<div class="card-body d-flex flex-column">
<h5 class="card-title text-center mb-4">Item Scanner</h5>
<video id="camera" autoplay class="w-100 mb-3" muted></video>
<div class="mb-3">
<label for="manualSearch" class="form-label">Or search manually</label>
<input type="text" class="form-control" id="manualSearch" placeholder="Enter item name">
</div>
<ul class="list-group mb-3" id="searchResults"></ul>
<button class="btn btn-primary w-100" id="createItemBtn">Create New Item</button>
</div>
</div>
</div>
{% endblock%}
{% block scripts %}
<script>
const baseURL = "{{url_for('add_meal.select_item', input='!')}}";
const baseURL2 = "{{url_for('add_meal.add_new_item', input='!')}}";
</script>
<script type="module">
// Import barcode scanner
import { BrowserMultiFormatReader } from 'https://cdn.jsdelivr.net/npm/@zxing/library@0.21.3/+esm';
// constants
const codeReader = new BrowserMultiFormatReader();
const videoElement = document.getElementById('camera');
// Start async camera thingymibob
document.addEventListener('DOMContentLoaded', async () => {
console.log('[DEBUG] Page loaded, starting barcode scan');
try {
await navigator.mediaDevices.getUserMedia({ video: true });
} catch (err) {
alert("No camera found or no camera permission");
console.error("Could not access the camera:", err);
return;
}
console.log('[DEBUG] Permission given and at least one device present');
const devices = await codeReader.listVideoInputDevices();
console.log('[DEBUG] Cameras found:', devices);
const rearCamera = devices.find(device => device.label.toLowerCase().includes('back'))
|| devices.find(device => device.label.toLowerCase().includes('rear'))
|| devices[0]; // fallback
const selectedDeviceId = rearCamera?.deviceId;
await codeReader.decodeFromVideoDevice(selectedDeviceId, videoElement, async (result, err) => {
if (result) {
// Result found, redirect to the URL
console.log(result)
const codeText = result.getText();
window.location.href = baseURL.replace("!", encodeURIComponent(codeText));
}
});
});
</script>
<script>
const searchInput = document.getElementById('manualSearch');
const resultsList = document.getElementById('searchResults');
const createBtn = document.getElementById('createItemBtn');
let controller; // keeps track of the current fetch
// TODO: Debounce input, wait for user to stop typing (f.e. 300ms)
searchInput.addEventListener('input', () => {
const query = searchInput.value.toLowerCase();
// Check if there is enough input to fetch
if (query.length < 2) {
resultsList.innerHTML = '';
return;
}
if (controller) controller.abort(); // Abort previous fetch if still running
controller = new AbortController(); // new controller for this fetch
const signal = controller.signal; // Signal to fetch to listen for aborts
fetch(`{{url_for("add_meal.query")}}?q=${encodeURIComponent(query)}`, { signal })
.then(response => response.json())
.then(data => {
resultsList.innerHTML = ''; // clear before appending
data.forEach(item => {
// Create list item with button inside that changes the hidden form and submits it
const li = document.createElement('li');
li.className = 'list-group-item p-0';
const btn = document.createElement('button');
btn.className = 'list-group-item list-group-item-action m-0 border-0';
btn.style.width = '100%'; // make it fill the li
btn.textContent = item;
btn.addEventListener('click', () => {
window.location.href = baseURL.replace("!", encodeURIComponent(item));
});
li.appendChild(btn);
resultsList.appendChild(li);
});
}).catch(err => {
if (err.name == 'AbortError') {
console.log("Fetch aborted");
}
if (err.name !== 'AbortError') {
console.error('Fetch error:', err);
}
});
});
</script>
<script>
createBtn.addEventListener('click', () => {
const newItem = searchInput.value.trim()
window.location.href = newItem ? baseURL2.replace("!", encodeURIComponent(newItem)) : baseURL2;
});
</script>
{% endblock %}

View File

@@ -1,7 +1,6 @@
{% extends "base.html" %}
{% block content %}
<p>{{ tod }}</p>
<p>{{ item.name }}</p>
<form method="POST">

View File

@@ -1,134 +0,0 @@
{% extends "base.html" %}
{% block content %}
<div class="container py-5">
<!-- Header -->
<div class="text-center mb-4">
<h1 class="fw-bold">Barcode Scanner</h1>
<p class="text-muted">Use your camera to scan barcodes</p>
</div>
<!-- Video preview -->
<div class="d-flex justify-content-center mb-4">
<video id="video" class="border rounded shadow-sm" style="width: 100%; max-width: 500px;" autoplay
muted></video>
</div>
<!-- Start/Stop buttons -->
<div class="d-flex justify-content-center gap-3 mb-4">
<button id="startButton" class="btn btn-primary px-4">Start Scanning</button>
<button id="stopButton" class="btn btn-danger px-4">Stop</button>
</div>
<!-- Search box and suggestions -->
<div class="d-flex justify-content-center mt-4">
<div class="w-100 position-relative" style="max-width: 500px;">
<!-- Input group (search + go button) -->
<div class="input-group">
<input type="text" id="search-box" class="form-control" placeholder="Search..." autocomplete="off">
<button id="go-button" class="btn btn-success">Go</button>
</div>
<!-- Suggestions -->
<ul id="suggestions" class="list-group position-absolute w-100 mt-1" style="z-index: 1000;"></ul>
</div>
</div>
<!-- Suggestions list -->
<div class="d-flex justify-content-center">
<ul id="suggestions" class="list-group position-absolute mt-1 w-100" style="max-width: 500px; z-index: 1000;">
</ul>
</div>
</div>
<script>
const searchBox = document.getElementById('search-box');
const suggestionsBox = document.getElementById('suggestions');
const goButton = document.getElementById('go-button');
searchBox.addEventListener('input', function () {
const query = searchBox.value;
if (query.length < 2) {
suggestionsBox.innerHTML = '';
return;
}
fetch(`{{url_for("add_meal_v2.query")}}?q=${encodeURIComponent(query)}`)
.then(response => response.json())
.then(data => {
suggestionsBox.innerHTML = '';
data.forEach(item => {
const li = document.createElement('li');
li.textContent = item;
// Apply Bootstrap classes
li.classList.add('list-group-item', 'list-group-item-action', 'cursor-pointer');
// Add click behavior
li.addEventListener('click', () => {
searchBox.value = item;
suggestionsBox.innerHTML = '';
});
// Add to suggestions box
suggestionsBox.appendChild(li);
});
});
});
// ✅ Redirect when the "Go" button is clicked
goButton.addEventListener('click', () => {
const value = searchBox.value.trim();
if (value) {
const baseURL = "{{url_for('add_meal_v2.add_existing', input='!')}}";
window.location.href = baseURL.replace("!", encodeURIComponent(value));
}
});
</script>
<script type="module">
import { BrowserMultiFormatReader } from 'https://cdn.jsdelivr.net/npm/@zxing/library@0.21.3/+esm';
// constants
const codeReader = new BrowserMultiFormatReader();
const videoElement = document.getElementById('video');
// Start scanning for barcode
document.getElementById('startButton').addEventListener('click', async () => {
console.log('[DEBUG] Start button clicked')
try {
await navigator.mediaDevices.getUserMedia({ video: true });
} catch (err) {
alert("No camera found or no camera permission");
console.error("Could not access the camera:", err);
return;
}
console.log('[DEBUG] Permission given and at least one device present');
const devices = await codeReader.listVideoInputDevices();
console.log('[DEBUG] Cameras found:', devices);
const rearCamera = devices.find(device => device.label.toLowerCase().includes('back'))
|| devices.find(device => device.label.toLowerCase().includes('rear'))
|| devices[0]; // fallback
const selectedDeviceId = rearCamera?.deviceId;
await codeReader.decodeFromVideoDevice(selectedDeviceId, videoElement, async (result, err) => {
if (result) {
// Result found, this should post the barcode
const codeText = result.getText();
const baseURL = "{{url_for('add_meal_v2.add_existing', input='!')}}";
window.location.href = baseURL.replace("!", encodeURIComponent(codeText));
}
})
})
document.getElementById('stopButton').addEventListener('click', () => {
codeReader.reset();
});
</script>
{% endblock %}

View File

@@ -35,8 +35,8 @@ def login():
return render_template("login.html", form=form)
@bp.route("/change_password", methods=["GET", "POST"])
def change_password():
@bp.route("/change_pass", methods=["GET", "POST"])
def change_pass():
if not current_user.is_authenticated:
return redirect(url_for("auth.login"))
@@ -50,8 +50,9 @@ def change_password():
current_user.change_password(form.new_password.data)
current_user.set_pw_change(False)
db.session.commit()
logout_user()
return default_return()
return render_template("change_password.html", form=form)
return render_template("new_change_password.html", form=form)
@bp.route("/logout")

View File

@@ -0,0 +1,52 @@
{% extends "base.html" %}
{% block title %}Change Password{%endblock%}
{% block content %}
<style>
.card {
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
</style>
<div class="d-flex justify-content-center align-items-center">
<div class="card p-4" style="max-width: 400px; width: 90%">
<h1 class="text-center mb-4" style="font-size: 2rem;">Change Your Password</h1>
<form method="POST">
{{ form.hidden_tag() }}
<div class="mb-3">
<label for="current-password" class="form-label">Current Password</label>
{{ form.current_password(class="form-control", placeholder="") }}
{% if form.current_password.errors %}
<div class="text-danger small">
{{ form.current_password.errors[0] }}
</div>
{% endif %}
</div>
<div class="mb-3">
<label for="new-password" class="form-label">New Password</label>
{{ form.new_password(class="form-control", placeholder="Enter password") }}
{% if form.new_password.errors %}
<div class="text-danger small">
{{ form.new_password.errors[0] }}
</div>
{% endif %}
</div>
<div class="mb-3">
<label for="confirm-password" class="form-label">Confirm New Password</label>
{{ form.confirm_password(class="form-control", placeholder="Enter password") }}
{% if form.confirm_password.errors %}
<div class="text-danger small">
{{ form.confirm_password.errors[0] }}
</div>
{% endif %}
</div>
{{ form.submit(class="btn btn-primary w-100", label="Update Password") }}
</form>
<p class="text-center text-muted mt-3" style="font-size: 0.85rem;">
Make sure your password is at least 8 characters long and includes a mix of letters and numbers.
</p>
</div>
</div>
{% endblock %}

View File

@@ -10,74 +10,16 @@
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="bg-body-secondary">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark mb-4">
<div class="container-fluid">
<a class="navbar-brand" href="{{ url_for('index') }}">CalCounter</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<body class="bg-body-secondary" style="max-width: calc(100vh*9/16); margin: 0 auto;">
{% include "new_navbar.html" %}
<div class="collapse navbar-collapse" id="navbarNav">
<div class="d-flex w-100">
<ul class="navbar-nav flex-grow-1">
<li class="nav-item">
<a class="nav-link" href="{{ url_for('user.daily_log2') }}">Daily Log (new)</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ url_for('user.dashboard') }}">Dashboard</a>
</li>
</ul>
<ul class="navbar-nav">
{% if current_user.is_authenticated %}
<li class="nav-item">
<a class="nav-link" href="{{ url_for('auth.logout') }}">Logout</a>
</li>
{% else %}
<li class="nav-item">
<a class="nav-link" href="{{ url_for('auth.login') }}">Login</a>
</li>
{% endif %}
<li class="nav-item">
<button id="toggleTheme" class="btn btn-outline-light">Toggle Theme</button>
</li>
</ul>
</div>
</div>
</div>
</nav>
{% include "flash.html" %}
{% block content %}
{% endblock %}
<div class="container">
{% with messages = get_flashed_messages() %}
{% if messages %}
<div class="alert alert-info">
{% for message in messages %}
<p>{{ message }}</p>
{% endfor %}
</div>
{% endif %}
{% endwith %}
{% block content %}
{% endblock %}
</div>
<script>
const html = document.documentElement;
const savedTheme = localStorage.getItem("theme");
if (savedTheme) {
html.setAttribute("data-bs-theme", savedTheme);
}
document.getElementById("toggleTheme").addEventListener("click", () => {
const current = html.getAttribute("data-bs-theme");
const next = current === "dark" ? "light" : "dark";
html.setAttribute("data-bs-theme", next);
localStorage.setItem("theme", next);
});
</script>
{% block footer %}
{% endblock %}
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>

View File

@@ -0,0 +1,9 @@
{% with messages = get_flashed_messages() %}
{% if messages %}
<div class="alert alert-info">
{% for message in messages %}
<p>{{ message }}</p>
{% endfor %}
</div>
{% endif %}
{% endwith %}

View File

@@ -0,0 +1,48 @@
<nav class="navbar navbar-dark bg-dark mb-4">
<div class="container-fluid">
<a class="navbar-brand" href="{{ url_for('index') }}">CalCounter</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<div class="d-flex w-100">
<ul class="navbar-nav flex-grow-1">
<li class="nav-item">
<a class="nav-link" href="{{ url_for('user.daily_log') }}">Daily Log (new)</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ url_for('user.dashboard') }}">Dashboard</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="{{ url_for('auth.logout') }}">Logout</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ url_for('auth.logout') }}">Set</a>
</li>
<li class="nav-item">
<button id="toggleTheme" class="btn btn-outline-light">Toggle Theme</button>
</li>
</ul>
</div>
</div>
</div>
</nav>
<script>
const html = document.documentElement;
const savedTheme = localStorage.getItem("theme");
if (savedTheme) {
html.setAttribute("data-bs-theme", savedTheme);
}
document.getElementById("toggleTheme").addEventListener("click", () => {
const current = html.getAttribute("data-bs-theme");
const next = current === "dark" ? "light" : "dark";
html.setAttribute("data-bs-theme", next);
localStorage.setItem("theme", next);
});
</script>

View File

@@ -0,0 +1,61 @@
<!-- Navbar -->
<nav class="navbar bg-body shadow-sm mb-2">
<div class="container">
<a class="navbar-brand" href="#">TaskManager</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="{{ url_for('user.daily_log') }}">Daily Overview</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ url_for('user.dashboard') }}">Dashboard</a>
</li>
</ul>
<ul class="navbar-nav ms-auto">
{% if current_user.is_authenticated %}
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="accountDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Account
</a>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="accountDropdown">
<li><a class="dropdown-item" href='{{ url_for("auth.change_pass") }}'>Change Password</a></li>
<li><a class="dropdown-item" href='{{ url_for("user.set_macros") }}'>Set macros</a></li>
<li><a class="dropdown-item" href="#">Profile</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href='{{ url_for("auth.logout") }}'>Logout</a></li>
</ul>
</li>
{% else %}
<li class="nav-item">
<a class="nav-link" href="#">Login</a>
</li>
{% endif %}
<li class="nav-item">
<button id="toggleTheme" class="btn btn-body-secondary bg-dark-subtle">Toggle Theme</button>
</li>
</ul>
</div>
</div>
</nav>
<script>
const html = document.documentElement;
const savedTheme = localStorage.getItem("theme");
if (savedTheme) {
html.setAttribute("data-bs-theme", savedTheme);
}
document.getElementById("toggleTheme").addEventListener("click", () => {
const current = html.getAttribute("data-bs-theme");
const next = current === "dark" ? "light" : "dark";
html.setAttribute("data-bs-theme", next);
localStorage.setItem("theme", next);
});
</script>

View File

@@ -9,12 +9,13 @@ from flask import (
)
from flask_login import current_user
from application import db
from forms import FoodItemForm
from forms import FoodItemForm, MacroForm
from models import FoodItem, FoodLog
from datetime import datetime
from application.utils import login_required
from application.utils import login_required, macro_arr_to_json
from numpy import array
from zoneinfo import ZoneInfo
from sqlalchemy import func
user_bp = Blueprint(
"user",
@@ -22,58 +23,6 @@ user_bp = Blueprint(
template_folder="templates",
)
def macro_arr_to_json(data: list[float]):
assert len(data) == 4
cal = data[0]
pro = data[3]
car = data[2]
fat = data[1]
macros = [
{
"name": "Calories",
"current": cal,
"target": 2000,
"bar_width": 100 - abs(cal / 20 - 100),
"bar_width_overflow": max(0, cal / 20 - 100),
"unit": " kcal",
"color": "bg-calories",
"overflow_color": "bg-calories-dark",
},
{
"name": "Protein",
"current": pro,
"target": 150,
"bar_width": 100 - abs(pro / 1.5 - 100),
"bar_width_overflow": max(0, pro / 1.5 - 100),
"unit": "g",
"color": "bg-protein",
"overflow_color": "bg-protein-dark",
},
{
"name": "Carbs",
"current": car,
"target": 250,
"bar_width": 100 - abs(car / 2.5 - 100),
"bar_width_overflow": max(0, car / 2.5 - 100),
"unit": "g",
"color": "bg-carbs",
"overflow_color": "bg-carbs-dark",
},
{
"name": "Fat",
"current": fat,
"target": 70,
"bar_width": 100 - abs(fat / 0.7 - 100),
"bar_width_overflow": max(0, fat / 0.7 - 100),
"unit": "g",
"color": "bg-fat",
"overflow_color": "bg-fat-dark",
},
]
return macros
user_bp.before_request(login_required)
@@ -83,6 +32,44 @@ def dashboard():
return render_template("dashboard.html", items=items)
@user_bp.route("/daily_log", methods=["GET"])
def daily_log():
# Get today's date according to user's timezone
today = datetime.now(ZoneInfo(current_user.timezone)).date()
# Save date in session
session["selected_date"] = today.isoformat()
# Get logs from today
logs_today = (
current_user.food_logs.join(
FoodItem, FoodItem.id == FoodLog.food_item_id
)
.filter(FoodLog.date_ == today)
.group_by(FoodItem.id)
.with_entities(
FoodItem, # the full object
func.sum(FoodLog.amount).label("total_amount"),
)
.all()
)
# calculate macros
macros = array((0.0, 0.0, 0.0, 0.0))
for food_item, amount in logs_today:
macros += array(food_item.macros()) / 100 * amount
macros = macro_arr_to_json(macros.tolist())
# Render HTML
return render_template(
"daily_log.html",
macros=macros,
logs=logs_today,
today=today.strftime("%d/%m/%Y"),
min=min,
)
@user_bp.route("/delete_food_item/<int:id>", methods=["POST"])
def delete_food_item(id: int):
item = FoodItem.query.get(id)
@@ -119,35 +106,6 @@ def edit_food_item(id: int):
return redirect(url_for("user.dashboard"))
@user_bp.route("/daily_log2", methods=["GET"])
def daily_log2():
# Get today's date according to user's timezone
today = datetime.now(ZoneInfo(current_user.timezone)).date()
# Save date in session
session["selected_date"] = today.isoformat()
# Get logs from today
logs_today = current_user.food_logs.filter_by(
date_=today.isoformat()
).all()
# calculate macros
macros = array((0.0, 0.0, 0.0, 0.0))
for log in logs_today:
macros += array(log.food_item.macros()) / 100 * log.amount
macros = macro_arr_to_json(macros.tolist())
# Render HTML
return render_template(
"daily_log2.html",
macros=macros,
logs=logs_today,
today=today.strftime("%d/%m/%Y"),
min=min,
)
@user_bp.route("/remove_log/<int:id>", methods=["POST"])
def remove_log(id: int):
log = db.session.get(FoodLog, id)
@@ -158,4 +116,21 @@ def remove_log(id: int):
# Delete log
db.session.delete(log)
db.session.commit()
return redirect(url_for("user.daily_log2"))
return redirect(url_for("user.daily_log"))
@user_bp.route("/set_macros", methods=["GET", "POST"])
def set_macros():
form = MacroForm()
if form.validate_on_submit():
current_user.set_macros(
form.protein.data,
form.carbohydrates.data,
form.fat.data,
form.calories.data,
)
db.session.commit()
return redirect(url_for("user.daily_log"))
return render_template("settings.html", form=form)

View File

@@ -11,14 +11,14 @@
<h5>Macros</h5>
{% for macro in macros %}
<div class="mb-2">
<span class="macro-text">{{ macro.name }}: {{ macro.current }} / {{ macro.target }}</span>
<span class="macro-text">{{ macro.name }}: {{ macro.current | int }} / {{ macro.target }}</span>
<div class="progress rounded" style="height: 24px;">
<div class="progress-bar bg-danger macro-bar" role="progressbar"
style="width: {{ macro.bar_width_overflow }}%">
{{ (macro.current - macro.target) }}{{ macro.unit }}
{{ (macro.current - macro.target) | int}}{{ macro.unit }}
</div>
<div class="progress-bar bg-success macro-bar" role="progressbar" style="width: {{ macro.bar_width }}%">
{{ min(macro.current, macro.target) }}{{ macro.unit }}
{{ min(macro.current, macro.target) | int }}{{ macro.unit }}
</div>
</div>
</div>
@@ -29,16 +29,32 @@
<div class="card p-3">
<h5>Items Eaten Today</h5>
<div class="list-group list-group-flush">
{% for log in logs %}
<div class="list-group-item item-row d-flex justify-content-between align-items-center">
<span>({{ log.amount }}g) {{ log.food_item.name }}</span>
<span>{{ log.food_item.energy_100 * log.amount / 100 }} kcal</span>
{% for food_item, amount in logs %}
<div class="list-group-item d-flex align-items-center">
<!-- Weight: fixed width, right-aligned -->
<span class="text-end" style="width: 6ch; flex-shrink: 0;">
({{ amount | int }}g)
</span>
<!-- Food name: flexible, truncates if too long -->
<span class="text-truncate flex-grow-1"
style="min-width: 0; margin-left: 0.5rem; margin-right: 0.5rem;">
{{ food_item.name }}
</span>
<!-- kcal: fixed width, right-aligned, pushed to the right -->
<span class="d-inline-block text-end ms-auto" style="width: 9ch; flex-shrink: 0;">
{{ (food_item.energy_100 * amount / 100) | int }} kcal
</span>
</div>
{% endfor %}
</div>
</div>
</div>
<!-- Bottom Navigation Buttons -->
@@ -50,7 +66,7 @@
</a>
<!-- Center Button (highlighted) -->
<a id="set_link_date" href="{{ url_for('add_meal_v2.get_barcode') }}"
<a id="set_link_date" href="{{ url_for('add_meal.find_item') }}"
class="btn btn-success flex-fill mx-2 fw-bold rounded-pill">
Add Item
</a>

View File

@@ -0,0 +1,30 @@
{% extends "base.html"%}
{% block title %} Daily Macro Settings {% endblock %}
{% block content %}
<div class="container py-5">
<h2 class="mb-4 text-center">Set Your Daily Macro Targets</h2>
<form action="{{ url_for('user.set_macros') }}" method="POST" class="card p-4 shadow-sm bg-body-secondary">
{{ form.hidden_tag() }}
<div class="mb-3">
<label for="protein" class="form-label">Protein (g)</label>
{{form.protein(class="form-control")}}
</div>
<div class="mb-3">
<label for="carbs" class="form-label">Carbohydrates (g)</label>
{{form.carbohydrates(class="form-control")}}
</div>
<div class="mb-3">
<label for="fat" class="form-label">Fat (g)</label>
{{form.fat(class="form-control")}}
</div>
<div class="mb-3">
<label for="calories" class="form-label">Calories (kcal)</label>
{{form.calories(class="form-control")}}
</div>
{{form.submit(class="btn btn-primary")}}
</form>
</div>
{% endblock %}

View File

@@ -14,7 +14,7 @@ def login_required():
def default_return(next_page: Optional[str] = None):
return redirect(url_for("user.daily_log2"))
return redirect(url_for("user.daily_log"))
if next_page:
return redirect(next_page)
if current_user.is_admin:
@@ -29,3 +29,61 @@ def is_valid_timezone(tz: str) -> bool:
print(Exception)
return False
return True
def macro_arr_to_json(data: list[float]):
assert len(data) == 4
cal = data[0]
pro = data[3]
car = data[2]
fat = data[1]
macros = [
{
"name": "Calories",
"current": cal,
"target": current_user.calories,
"bar_width": 100 - abs(cal * 100 / current_user.calories - 100),
"bar_width_overflow": max(
0, cal * 100 / current_user.calories - 100
),
"unit": " kcal",
"color": "bg-calories",
"overflow_color": "bg-calories-dark",
},
{
"name": "Protein",
"current": pro,
"target": current_user.protein,
"bar_width": 100 - abs(pro * 100 / current_user.protein - 100),
"bar_width_overflow": max(
0, pro * 100 / current_user.protein - 100
),
"unit": "g",
"color": "bg-protein",
"overflow_color": "bg-protein-dark",
},
{
"name": "Carbs",
"current": car,
"target": current_user.carbohydrates,
"bar_width": 100
- abs(car * 100 / current_user.carbohydrates - 100),
"bar_width_overflow": max(
0, car * 100 / current_user.carbohydrates - 100
),
"unit": "g",
"color": "bg-carbs",
"overflow_color": "bg-carbs-dark",
},
{
"name": "Fat",
"current": fat,
"target": current_user.fat,
"bar_width": 100 - abs(fat * 100 / current_user.fat - 100),
"bar_width_overflow": max(0, fat * 100 / current_user.fat - 100),
"unit": "g",
"color": "bg-fat",
"overflow_color": "bg-fat-dark",
},
]
return macros

View File

@@ -68,6 +68,30 @@ class FoodItemForm(FlaskForm):
submit = SubmitField("Add Item")
class MacroForm(FlaskForm):
protein = FloatField(
"Protein (g)",
validators=[InputRequired()],
render_kw={"inputmode": "decimal"},
)
carbohydrates = FloatField(
"Carbohydrates (g)",
validators=[InputRequired()],
render_kw={"inputmode": "decimal"},
)
fat = FloatField(
"Fat (g)",
validators=[InputRequired()],
render_kw={"inputmode": "decimal"},
)
calories = FloatField(
"Calories (kcal)",
validators=[InputRequired()],
render_kw={"inputmode": "decimal"},
)
submit = SubmitField("Update macros")
class FoodLogForm(FlaskForm):
amount = FloatField("amount of food (g/ml)", validators=[DataRequired()])
submit = SubmitField("Log Item")

View File

@@ -0,0 +1,56 @@
"""empty message
Revision ID: 21ec41b645e9
Revises: 65eaeafb0904
Create Date: 2025-10-10 19:26:21.718736
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = "21ec41b645e9"
down_revision = "65eaeafb0904"
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table("user", schema=None) as batch_op:
batch_op.add_column(
sa.Column(
"protein", sa.Float(), nullable=False, server_default="100"
)
)
batch_op.add_column(
sa.Column(
"carbohydrates",
sa.Float(),
nullable=False,
server_default="250",
)
)
batch_op.add_column(
sa.Column("fat", sa.Float(), nullable=False, server_default="60")
)
batch_op.add_column(
sa.Column(
"calories", sa.Float(), nullable=False, server_default="2000"
)
)
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table("user", schema=None) as batch_op:
batch_op.drop_column("calories")
batch_op.drop_column("fat")
batch_op.drop_column("carbohydrates")
batch_op.drop_column("protein")
# ### end Alembic commands ###

View File

@@ -16,6 +16,11 @@ class User(UserMixin, db.Model):
is_admin = db.Column(db.Boolean, nullable=False, default=False)
must_change_password = db.Column(db.Boolean, nullable=False, default=False)
protein = db.Column(db.Float, nullable=False)
carbohydrates = db.Column(db.Float, nullable=False)
fat = db.Column(db.Float, nullable=False)
calories = db.Column(db.Float, nullable=False)
food_items = db.relationship("FoodItem", lazy="dynamic", backref="user")
food_logs = db.relationship("FoodLog", lazy="dynamic", backref="user")
@@ -32,6 +37,15 @@ class User(UserMixin, db.Model):
self.is_admin = is_admin
self.must_change_password = must_change_password
def set_macros(
self, protein: float, carbs: float, fat: float, calories: float
):
self.protein = protein
self.carbohydrates = carbs
self.fat = fat
self.calories = calories
return
def check_password(self, password: str) -> bool:
return check_password_hash(pwhash=self.password, password=password)