329 lines
8.6 KiB
HTML
329 lines
8.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Log Feeding - Baby Monitor</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
|
|
Cantarell, sans-serif;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
.container {
|
|
background: white;
|
|
border-radius: 12px;
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
|
|
padding: 40px;
|
|
max-width: 500px;
|
|
width: 100%;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
margin-bottom: 10px;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.subtitle {
|
|
color: #666;
|
|
margin-bottom: 30px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
color: #333;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
}
|
|
|
|
input,
|
|
select {
|
|
width: 100%;
|
|
padding: 12px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
input:focus,
|
|
select:focus {
|
|
outline: none;
|
|
border-color: #667eea;
|
|
}
|
|
|
|
.button {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
border: none;
|
|
padding: 12px 24px;
|
|
border-radius: 6px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition:
|
|
transform 0.2s,
|
|
box-shadow 0.2s;
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
|
|
}
|
|
|
|
.button:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.button:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
transform: none;
|
|
}
|
|
|
|
.button.secondary {
|
|
background: #6c757d;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.button.secondary:hover {
|
|
box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
|
|
}
|
|
|
|
.message {
|
|
padding: 12px;
|
|
border-radius: 6px;
|
|
margin-bottom: 20px;
|
|
display: none;
|
|
}
|
|
|
|
.message.show {
|
|
display: block;
|
|
}
|
|
|
|
.message.error {
|
|
background: #ffebee;
|
|
border-left: 4px solid #f44336;
|
|
color: #c62828;
|
|
}
|
|
|
|
.message.success {
|
|
background: #e8f5e9;
|
|
border-left: 4px solid #4caf50;
|
|
color: #2e7d32;
|
|
}
|
|
|
|
.help-text {
|
|
font-size: 12px;
|
|
color: #666;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.loading {
|
|
text-align: center;
|
|
padding: 20px;
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>🍼 Log Feeding</h1>
|
|
<p class="subtitle">Record a feeding session</p>
|
|
|
|
<div id="message" class="message"></div>
|
|
|
|
<div id="loadingChildren" class="loading">Loading children...</div>
|
|
|
|
<form id="logFeedingForm" style="display: none">
|
|
<div class="form-group">
|
|
<label for="childId">Child *</label>
|
|
<select id="childId" name="childId" required>
|
|
<option value="">Select a child</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="startTime">Start Time *</label>
|
|
<input
|
|
type="datetime-local"
|
|
id="startTime"
|
|
name="startTime"
|
|
required
|
|
/>
|
|
<p class="help-text">Defaults to current time</p>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="endTime">End Time</label>
|
|
<input type="datetime-local" id="endTime" name="endTime" />
|
|
<p class="help-text">Leave empty if feeding is ongoing</p>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="feedingType">Feeding Type *</label>
|
|
<select id="feedingType" name="feedingType" required>
|
|
<option value="">Select type</option>
|
|
<option value="left_breast">Left Breast</option>
|
|
<option value="right_breast">Right Breast</option>
|
|
<option value="bottle">Bottle</option>
|
|
</select>
|
|
</div>
|
|
|
|
<button type="submit" class="button" id="submitBtn">Log Feeding</button>
|
|
<button type="button" class="button secondary" onclick="goBack()">
|
|
Cancel
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
<script>
|
|
// Check if user is authenticated
|
|
const token = localStorage.getItem("access_token");
|
|
if (!token) {
|
|
window.location.href = "/login.html";
|
|
}
|
|
|
|
const form = document.getElementById("logFeedingForm");
|
|
const messageDiv = document.getElementById("message");
|
|
const submitBtn = document.getElementById("submitBtn");
|
|
const loadingDiv = document.getElementById("loadingChildren");
|
|
const childSelect = document.getElementById("childId");
|
|
|
|
// Set default start time to now
|
|
const now = new Date();
|
|
const localDateTime = new Date(
|
|
now.getTime() - now.getTimezoneOffset() * 60000,
|
|
)
|
|
.toISOString()
|
|
.slice(0, 16);
|
|
document.getElementById("startTime").value = localDateTime;
|
|
|
|
// Load user's children
|
|
async function loadChildren() {
|
|
try {
|
|
const response = await fetch("/api/children", {
|
|
headers: {
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
});
|
|
|
|
if (response.ok) {
|
|
const children = await response.json();
|
|
|
|
if (children.length === 0) {
|
|
showMessage(
|
|
"No children found. Please add a child first.",
|
|
"error",
|
|
);
|
|
setTimeout(() => {
|
|
window.location.href = "/add-child.html";
|
|
}, 2000);
|
|
return;
|
|
}
|
|
|
|
// Populate select dropdown
|
|
children.forEach((child) => {
|
|
const option = document.createElement("option");
|
|
option.value = child.id;
|
|
option.textContent = child.name;
|
|
childSelect.appendChild(option);
|
|
});
|
|
|
|
// Show form, hide loading
|
|
loadingDiv.style.display = "none";
|
|
form.style.display = "block";
|
|
} else {
|
|
showMessage("Failed to load children", "error");
|
|
}
|
|
} catch (error) {
|
|
showMessage("Network error loading children", "error");
|
|
}
|
|
}
|
|
|
|
loadChildren();
|
|
|
|
form.addEventListener("submit", async (e) => {
|
|
e.preventDefault();
|
|
|
|
const childId = parseInt(document.getElementById("childId").value);
|
|
const startTime = document.getElementById("startTime").value;
|
|
const endTimeValue = document.getElementById("endTime").value;
|
|
const feedingType = document.getElementById("feedingType").value;
|
|
|
|
// Disable button during request
|
|
submitBtn.disabled = true;
|
|
submitBtn.textContent = "Logging...";
|
|
messageDiv.classList.remove("show");
|
|
|
|
try {
|
|
const response = await fetch("/api/feedings", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
body: JSON.stringify({
|
|
child_id: childId,
|
|
start_time: startTime,
|
|
end_time: endTimeValue || null,
|
|
feeding_type: feedingType,
|
|
}),
|
|
});
|
|
|
|
const data = await response.json();
|
|
|
|
if (response.ok) {
|
|
showMessage("Feeding logged successfully!", "success");
|
|
// Redirect to home page after 1 second
|
|
setTimeout(() => {
|
|
window.location.href = "/";
|
|
}, 1000);
|
|
} else {
|
|
showMessage(
|
|
data.detail || "Failed to log feeding. Please try again.",
|
|
"error",
|
|
);
|
|
}
|
|
} catch (error) {
|
|
showMessage("Network error. Please try again.", "error");
|
|
} finally {
|
|
submitBtn.disabled = false;
|
|
submitBtn.textContent = "Log Feeding";
|
|
}
|
|
});
|
|
|
|
function showMessage(text, type) {
|
|
messageDiv.textContent = text;
|
|
messageDiv.className = `message ${type} show`;
|
|
}
|
|
|
|
function goBack() {
|
|
window.location.href = "/";
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|