Autosave: 20260126-182305
This commit is contained in:
parent
2398ceeaca
commit
97db9d0ec1
133
api/analyze.php
Normal file
133
api/analyze.php
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
<?php
|
||||||
|
header('Content-Type: application/json');
|
||||||
|
require_once __DIR__ . '/../ai/LocalAIApi.php';
|
||||||
|
|
||||||
|
$debugFile = __DIR__ . '/analyze_debug.log';
|
||||||
|
function debugLog($msg) {
|
||||||
|
global $debugFile;
|
||||||
|
file_put_contents($debugFile, "[" . date('Y-m-d H:i:s') . "] " . $msg . "\n", FILE_APPEND);
|
||||||
|
}
|
||||||
|
|
||||||
|
$rawInput = file_get_contents('php://input');
|
||||||
|
$data = json_decode($rawInput, true);
|
||||||
|
$image = $data['image'] ?? null;
|
||||||
|
$barcode = $data['barcode'] ?? null;
|
||||||
|
|
||||||
|
debugLog("Request received. Barcode: " . ($barcode ?? 'none') . ", Image size: " . ($image ? strlen($image) : 0));
|
||||||
|
|
||||||
|
if (!$image && !$barcode) {
|
||||||
|
debugLog("Error: No image or barcode provided");
|
||||||
|
echo json_encode(['success' => false, 'error' => 'No image or barcode provided']);
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
$productData = null;
|
||||||
|
$errorDetails = null;
|
||||||
|
|
||||||
|
// Try Barcode Lookup via Open Food Facts if barcode is present
|
||||||
|
if ($barcode) {
|
||||||
|
debugLog("Attempting Open Food Facts lookup for $barcode");
|
||||||
|
$url = "https://world.openfoodfacts.org/api/v0/product/" . urlencode($barcode) . ".json";
|
||||||
|
$ch = curl_init();
|
||||||
|
curl_setopt($ch, CURLOPT_URL, $url);
|
||||||
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||||
|
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
|
||||||
|
curl_setopt($ch, CURLOPT_USERAGENT, 'HomePantryTracker/1.0');
|
||||||
|
$response = curl_exec($ch);
|
||||||
|
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
||||||
|
curl_close($ch);
|
||||||
|
|
||||||
|
if ($httpCode === 200 && $response) {
|
||||||
|
$offData = json_decode($response, true);
|
||||||
|
if (isset($offData['status']) && $offData['status'] == 1) {
|
||||||
|
$p = $offData['product'];
|
||||||
|
$productData = [
|
||||||
|
'name' => $p['product_name'] ?? ($p['product_name_en'] ?? 'Unknown Product'),
|
||||||
|
'category' => 'Pantry', // Default
|
||||||
|
'quantity' => $p['quantity'] ?? '',
|
||||||
|
'expiration_date' => null
|
||||||
|
];
|
||||||
|
debugLog("Barcode found: " . $productData['name']);
|
||||||
|
|
||||||
|
// Try to map category
|
||||||
|
if (!empty($p['categories_tags'])) {
|
||||||
|
$tags = implode(' ', $p['categories_tags']);
|
||||||
|
if (stripos($tags, 'dairy') !== false || stripos($tags, 'milk') !== false) $productData['category'] = 'Dairy';
|
||||||
|
elseif (stripos($tags, 'meat') !== false) $productData['category'] = 'Meat';
|
||||||
|
elseif (stripos($tags, 'bakery') !== false || stripos($tags, 'bread') !== false) $productData['category'] = 'Bakery';
|
||||||
|
elseif (stripos($tags, 'fruit') !== false || stripos($tags, 'vegetable') !== false) $productData['category'] = 'Produce';
|
||||||
|
elseif (stripos($tags, 'frozen') !== false) $productData['category'] = 'Frozen';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
debugLog("Barcode not found in Open Food Facts");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
debugLog("Open Food Facts API error: $httpCode");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If barcode lookup failed or we have an image, use AI
|
||||||
|
if (!$productData) {
|
||||||
|
debugLog("Using AI for identification...");
|
||||||
|
$prompt = "You are a professional pantry organizer. Identify the product from the image provided.
|
||||||
|
Return ONLY a valid JSON object.
|
||||||
|
Keys:
|
||||||
|
- name: Specific brand and product name.
|
||||||
|
- category: Dairy, Meat, Bakery, Produce, Pantry, Frozen.
|
||||||
|
- quantity: e.g., '1.5 L', '500g'.
|
||||||
|
- expiration_date: Look for 'Best Before', 'Use By', or 'EXP' date in YYYY-MM-DD format, or null.
|
||||||
|
If the package is not in English, translate name/category to English.";
|
||||||
|
|
||||||
|
if ($image) {
|
||||||
|
// Use "Simple" approach: data URL directly in the content string
|
||||||
|
$content = $prompt . "\nAnalyze this image: " . $image;
|
||||||
|
$messages = [
|
||||||
|
['role' => 'user', 'content' => $content]
|
||||||
|
];
|
||||||
|
} else {
|
||||||
|
$messages = [
|
||||||
|
['role' => 'user', 'content' => $prompt . " Product barcode: $barcode"]
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
$resp = LocalAIApi::createResponse([
|
||||||
|
'input' => $messages,
|
||||||
|
'temperature' => 0.1
|
||||||
|
]);
|
||||||
|
|
||||||
|
if (!empty($resp['success'])) {
|
||||||
|
debugLog("AI response successful");
|
||||||
|
$result = LocalAIApi::decodeJsonFromResponse($resp);
|
||||||
|
if ($result) {
|
||||||
|
$productData = $result;
|
||||||
|
} else {
|
||||||
|
$text = LocalAIApi::extractText($resp);
|
||||||
|
debugLog("AI returned text instead of JSON. Extracting...");
|
||||||
|
if (preg_match('/\{.*\}/s', $text, $matches)) {
|
||||||
|
$productData = json_decode($matches[0], true);
|
||||||
|
} else {
|
||||||
|
$errorDetails = "AI returned text instead of JSON: " . substr($text, 0, 100);
|
||||||
|
debugLog("Error: $errorDetails");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$errorDetails = $resp['error'] ?? $resp['message'] ?? 'AI request failed';
|
||||||
|
$httpStatus = $resp['status'] ?? 'unknown';
|
||||||
|
debugLog("AI Request failed. Status: $httpStatus, Error: $errorDetails");
|
||||||
|
|
||||||
|
if (isset($resp['response'])) {
|
||||||
|
debugLog("Full proxy response: " . json_encode($resp['response']));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($productData) {
|
||||||
|
if (isset($productData['expiration_date']) && ($productData['expiration_date'] === 'null' || $productData['expiration_date'] === '')) {
|
||||||
|
$productData['expiration_date'] = null;
|
||||||
|
}
|
||||||
|
debugLog("Returning success for " . ($productData['name'] ?? 'unknown'));
|
||||||
|
echo json_encode(['success' => true, 'data' => $productData]);
|
||||||
|
} else {
|
||||||
|
debugLog("Returning failure: " . ($errorDetails ?? 'Could not identify product'));
|
||||||
|
echo json_encode(['success' => false, 'error' => $errorDetails ?: 'Could not identify product']);
|
||||||
|
}
|
||||||
4
api/analyze_debug.log
Normal file
4
api/analyze_debug.log
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
[2026-01-26 18:22:50] Request received. Barcode: none, Image size: 32143
|
||||||
|
[2026-01-26 18:22:50] Using AI for identification...
|
||||||
|
[2026-01-26 18:22:51] AI Request failed. Status: 500, Error: the server responded with status 400
|
||||||
|
[2026-01-26 18:22:51] Returning failure: the server responded with status 400
|
||||||
@ -1,346 +1,117 @@
|
|||||||
|
/* Custom styles for Home Pantry Tracker */
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--color-bg: #ffffff;
|
--primary-color: #2c3e50;
|
||||||
--color-text: #1a1a1a;
|
--accent-color: #27ae60;
|
||||||
--color-primary: #2563EB; /* Vibrant Blue */
|
--danger-color: #c53030;
|
||||||
--color-secondary: #000000;
|
--warning-color: #f6ad55;
|
||||||
--color-accent: #A3E635; /* Lime Green */
|
--bg-light: #f8fafc;
|
||||||
--color-surface: #f8f9fa;
|
|
||||||
--font-heading: 'Space Grotesk', sans-serif;
|
|
||||||
--font-body: 'Inter', sans-serif;
|
|
||||||
--border-width: 2px;
|
|
||||||
--shadow-hard: 5px 5px 0px #000;
|
|
||||||
--shadow-hover: 8px 8px 0px #000;
|
|
||||||
--radius-pill: 50rem;
|
|
||||||
--radius-card: 1rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: var(--font-body);
|
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
||||||
background-color: var(--color-bg);
|
background-color: var(--bg-light);
|
||||||
color: var(--color-text);
|
color: var(--primary-color);
|
||||||
overflow-x: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6, .navbar-brand {
|
|
||||||
font-family: var(--font-heading);
|
|
||||||
letter-spacing: -0.03em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Utilities */
|
|
||||||
.text-primary { color: var(--color-primary) !important; }
|
|
||||||
.bg-black { background-color: #000 !important; }
|
|
||||||
.text-white { color: #fff !important; }
|
|
||||||
.shadow-hard { box-shadow: var(--shadow-hard); }
|
|
||||||
.border-2-black { border: var(--border-width) solid #000; }
|
|
||||||
.py-section { padding-top: 5rem; padding-bottom: 5rem; }
|
|
||||||
|
|
||||||
/* Navbar */
|
|
||||||
.navbar {
|
.navbar {
|
||||||
background: rgba(255, 255, 255, 0.9);
|
background-color: white;
|
||||||
backdrop-filter: blur(10px);
|
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
||||||
border-bottom: var(--border-width) solid transparent;
|
|
||||||
transition: all 0.3s;
|
|
||||||
padding-top: 1rem;
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar.scrolled {
|
.navbar-brand {
|
||||||
border-bottom-color: #000;
|
|
||||||
padding-top: 0.5rem;
|
|
||||||
padding-bottom: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.brand-text {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: 800;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-link {
|
|
||||||
font-weight: 500;
|
|
||||||
color: var(--color-text);
|
|
||||||
margin-left: 1rem;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-link:hover, .nav-link.active {
|
|
||||||
color: var(--color-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Buttons */
|
|
||||||
.btn {
|
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-family: var(--font-heading);
|
color: var(--primary-color);
|
||||||
padding: 0.8rem 2rem;
|
|
||||||
border-radius: var(--radius-pill);
|
|
||||||
border: var(--border-width) solid #000;
|
|
||||||
transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
|
|
||||||
box-shadow: var(--shadow-hard);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn:hover {
|
.card {
|
||||||
transform: translate(-2px, -2px);
|
border: none;
|
||||||
box-shadow: var(--shadow-hover);
|
border-radius: 12px;
|
||||||
|
box-shadow: 0 4px 6px rgba(0,0,0,0.02);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn:active {
|
.table thead th {
|
||||||
transform: translate(2px, 2px);
|
background-color: #f1f5f9;
|
||||||
box-shadow: 0 0 0 #000;
|
text-transform: uppercase;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
font-weight: 700;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table tbody td {
|
||||||
|
vertical-align: middle;
|
||||||
|
padding: 1rem 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.badge-fresh { background-color: #e6fffa; color: #234e52; }
|
||||||
|
.badge-warning { background-color: #fffaf0; color: #7b341e; }
|
||||||
|
.badge-expired { background-color: #fff5f5; color: #822727; }
|
||||||
|
|
||||||
|
.status-expired { background-color: #fff5f5; }
|
||||||
|
.status-warning { background-color: #fffaf0; }
|
||||||
|
|
||||||
|
#reader {
|
||||||
|
background: #000;
|
||||||
|
border: 2px solid #e2e8f0;
|
||||||
|
min-height: 250px;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#reader video {
|
||||||
|
border-radius: 8px;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Camera mode viewfinder look */
|
||||||
|
#reader.camera-mode::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
left: 20px;
|
||||||
|
right: 20px;
|
||||||
|
bottom: 20px;
|
||||||
|
border: 1px solid rgba(255,255,255,0.3);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ai-loading {
|
||||||
|
background: rgba(255,255,255,0.9);
|
||||||
|
border-radius: 8px;
|
||||||
|
margin-top: 10px;
|
||||||
|
border: 1px solid #e2e8f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
background-color: var(--color-primary);
|
background-color: var(--accent-color);
|
||||||
border-color: #000;
|
border-color: var(--accent-color);
|
||||||
color: #fff;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary:hover {
|
.btn-primary:hover {
|
||||||
background-color: #1d4ed8;
|
background-color: #229954;
|
||||||
border-color: #000;
|
border-color: #229954;
|
||||||
color: #fff;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-outline-dark {
|
/* Shutter effect for photo capture */
|
||||||
background-color: #fff;
|
.shutter-flash {
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-cta {
|
|
||||||
background-color: var(--color-accent);
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-cta:hover {
|
|
||||||
background-color: #8cc629;
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Hero Section */
|
|
||||||
.hero-section {
|
|
||||||
min-height: 100vh;
|
|
||||||
padding-top: 80px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.background-blob {
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border-radius: 50%;
|
top: 0;
|
||||||
filter: blur(80px);
|
left: 0;
|
||||||
opacity: 0.6;
|
right: 0;
|
||||||
z-index: 1;
|
bottom: 0;
|
||||||
}
|
background: white;
|
||||||
|
|
||||||
.blob-1 {
|
|
||||||
top: -10%;
|
|
||||||
right: -10%;
|
|
||||||
width: 600px;
|
|
||||||
height: 600px;
|
|
||||||
background: radial-gradient(circle, var(--color-accent), transparent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.blob-2 {
|
|
||||||
bottom: 10%;
|
|
||||||
left: -10%;
|
|
||||||
width: 500px;
|
|
||||||
height: 500px;
|
|
||||||
background: radial-gradient(circle, var(--color-primary), transparent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.highlight-text {
|
|
||||||
background: linear-gradient(120deg, transparent 0%, transparent 40%, var(--color-accent) 40%, var(--color-accent) 100%);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: 100% 40%;
|
|
||||||
background-position: 0 88%;
|
|
||||||
padding: 0 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dot { color: var(--color-primary); }
|
|
||||||
|
|
||||||
.badge-pill {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0.5rem 1rem;
|
|
||||||
border: 2px solid #000;
|
|
||||||
border-radius: 50px;
|
|
||||||
font-weight: 700;
|
|
||||||
background: #fff;
|
|
||||||
box-shadow: 4px 4px 0 #000;
|
|
||||||
font-family: var(--font-heading);
|
|
||||||
font-size: 0.9rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Marquee */
|
|
||||||
.marquee-container {
|
|
||||||
overflow: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
border-top: 2px solid #000;
|
|
||||||
border-bottom: 2px solid #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rotate-divider {
|
|
||||||
transform: rotate(-2deg) scale(1.05);
|
|
||||||
z-index: 10;
|
|
||||||
position: relative;
|
|
||||||
margin-top: -50px;
|
|
||||||
margin-bottom: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.marquee-content {
|
|
||||||
display: inline-block;
|
|
||||||
animation: marquee 20s linear infinite;
|
|
||||||
font-family: var(--font-heading);
|
|
||||||
font-weight: 700;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
letter-spacing: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes marquee {
|
|
||||||
0% { transform: translateX(0); }
|
|
||||||
100% { transform: translateX(-50%); }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Portfolio Cards */
|
|
||||||
.project-card {
|
|
||||||
border: 2px solid #000;
|
|
||||||
border-radius: var(--radius-card);
|
|
||||||
overflow: hidden;
|
|
||||||
background: #fff;
|
|
||||||
transition: transform 0.3s ease;
|
|
||||||
box-shadow: var(--shadow-hard);
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.project-card:hover {
|
|
||||||
transform: translateY(-10px);
|
|
||||||
box-shadow: 8px 8px 0 #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-img-holder {
|
|
||||||
height: 250px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
border-bottom: 2px solid #000;
|
|
||||||
position: relative;
|
|
||||||
font-size: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.placeholder-art {
|
|
||||||
transition: transform 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.project-card:hover .placeholder-art {
|
|
||||||
transform: scale(1.2) rotate(10deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-soft-blue { background-color: #e0f2fe; }
|
|
||||||
.bg-soft-green { background-color: #dcfce7; }
|
|
||||||
.bg-soft-purple { background-color: #f3e8ff; }
|
|
||||||
.bg-soft-yellow { background-color: #fef9c3; }
|
|
||||||
|
|
||||||
.category-tag {
|
|
||||||
position: absolute;
|
|
||||||
top: 15px;
|
|
||||||
right: 15px;
|
|
||||||
background: #000;
|
|
||||||
color: #fff;
|
|
||||||
padding: 5px 12px;
|
|
||||||
border-radius: 20px;
|
|
||||||
font-size: 0.75rem;
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-body { padding: 1.5rem; }
|
|
||||||
|
|
||||||
.link-arrow {
|
|
||||||
text-decoration: none;
|
|
||||||
color: #000;
|
|
||||||
font-weight: 700;
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
margin-top: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.link-arrow i { transition: transform 0.2s; margin-left: 5px; }
|
|
||||||
.link-arrow:hover i { transform: translateX(5px); }
|
|
||||||
|
|
||||||
/* About */
|
|
||||||
.about-image-stack {
|
|
||||||
position: relative;
|
|
||||||
height: 400px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stack-card {
|
|
||||||
position: absolute;
|
|
||||||
width: 80%;
|
|
||||||
height: 100%;
|
|
||||||
border-radius: var(--radius-card);
|
|
||||||
border: 2px solid #000;
|
|
||||||
box-shadow: var(--shadow-hard);
|
|
||||||
left: 10%;
|
|
||||||
transform: rotate(-3deg);
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Forms */
|
|
||||||
.form-control {
|
|
||||||
border: 2px solid #000;
|
|
||||||
border-radius: 0.5rem;
|
|
||||||
padding: 1rem;
|
|
||||||
font-weight: 500;
|
|
||||||
background: #f8f9fa;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-control:focus {
|
|
||||||
box-shadow: 4px 4px 0 var(--color-primary);
|
|
||||||
border-color: #000;
|
|
||||||
background: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Animations */
|
|
||||||
.animate-up {
|
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: translateY(30px);
|
pointer-events: none;
|
||||||
animation: fadeUp 0.8s ease forwards;
|
transition: opacity 0.1s;
|
||||||
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
.delay-100 { animation-delay: 0.1s; }
|
.shutter-flash.active {
|
||||||
.delay-200 { animation-delay: 0.2s; }
|
opacity: 1;
|
||||||
|
|
||||||
@keyframes fadeUp {
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Social */
|
.is-valid {
|
||||||
.social-links a {
|
border-color: var(--accent-color) !important;
|
||||||
transition: transform 0.2s;
|
background-color: #f0fff4 !important;
|
||||||
display: inline-block;
|
}
|
||||||
}
|
|
||||||
.social-links a:hover {
|
|
||||||
transform: scale(1.2) rotate(10deg);
|
|
||||||
color: var(--color-accent) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Responsive */
|
|
||||||
@media (max-width: 991px) {
|
|
||||||
.rotate-divider {
|
|
||||||
transform: rotate(0);
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-section {
|
|
||||||
padding-top: 120px;
|
|
||||||
text-align: center;
|
|
||||||
min-height: auto;
|
|
||||||
padding-bottom: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.display-1 { font-size: 3.5rem; }
|
|
||||||
|
|
||||||
.blob-1 { width: 300px; height: 300px; right: -20%; }
|
|
||||||
.blob-2 { width: 300px; height: 300px; left: -20%; }
|
|
||||||
}
|
|
||||||
@ -1,73 +1,268 @@
|
|||||||
document.addEventListener('DOMContentLoaded', () => {
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
let html5QrCode;
|
||||||
// Smooth scrolling for navigation links
|
const btnScanBarcode = document.getElementById('btnScanBarcode');
|
||||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
const btnTakePhoto = document.getElementById('btnTakePhoto');
|
||||||
anchor.addEventListener('click', function (e) {
|
const reader = document.getElementById('reader');
|
||||||
e.preventDefault();
|
const aiLoading = document.getElementById('aiLoading');
|
||||||
const targetId = this.getAttribute('href');
|
|
||||||
if (targetId === '#') return;
|
|
||||||
|
|
||||||
const targetElement = document.querySelector(targetId);
|
|
||||||
if (targetElement) {
|
|
||||||
// Close mobile menu if open
|
|
||||||
const navbarToggler = document.querySelector('.navbar-toggler');
|
|
||||||
const navbarCollapse = document.querySelector('.navbar-collapse');
|
|
||||||
if (navbarCollapse.classList.contains('show')) {
|
|
||||||
navbarToggler.click();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Scroll with offset
|
const pName = document.getElementById('p_name');
|
||||||
const offset = 80;
|
const pCategory = document.getElementById('p_category');
|
||||||
const elementPosition = targetElement.getBoundingClientRect().top;
|
const pQuantity = document.getElementById('p_quantity');
|
||||||
const offsetPosition = elementPosition + window.pageYOffset - offset;
|
const pExpiration = document.getElementById('p_expiration');
|
||||||
|
|
||||||
window.scrollTo({
|
function checkHttps() {
|
||||||
top: offsetPosition,
|
if (location.protocol !== 'https:' && location.hostname !== 'localhost' && location.hostname !== '127.0.0.1') {
|
||||||
behavior: "smooth"
|
alert("Camera access requires HTTPS. Please ensure you are using a secure connection.");
|
||||||
});
|
return false;
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Navbar scroll effect
|
|
||||||
const navbar = document.querySelector('.navbar');
|
|
||||||
window.addEventListener('scroll', () => {
|
|
||||||
if (window.scrollY > 50) {
|
|
||||||
navbar.classList.add('scrolled', 'shadow-sm', 'bg-white');
|
|
||||||
navbar.classList.remove('bg-transparent');
|
|
||||||
} else {
|
|
||||||
navbar.classList.remove('scrolled', 'shadow-sm', 'bg-white');
|
|
||||||
navbar.classList.add('bg-transparent');
|
|
||||||
}
|
}
|
||||||
});
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
// Intersection Observer for fade-up animations
|
function stopScanner() {
|
||||||
const observerOptions = {
|
return new Promise((resolve) => {
|
||||||
threshold: 0.1,
|
console.log("Stopping scanner...");
|
||||||
rootMargin: "0px 0px -50px 0px"
|
cleanupUI();
|
||||||
};
|
if (html5QrCode && html5QrCode.isScanning) {
|
||||||
|
html5QrCode.stop().then(() => {
|
||||||
const observer = new IntersectionObserver((entries) => {
|
console.log("Scanner stopped.");
|
||||||
entries.forEach(entry => {
|
reader.style.display = 'none';
|
||||||
if (entry.isIntersecting) {
|
resolve();
|
||||||
entry.target.classList.add('animate-up');
|
}).catch(err => {
|
||||||
entry.target.style.opacity = "1";
|
console.error("Failed to stop scanner", err);
|
||||||
observer.unobserve(entry.target); // Only animate once
|
reader.style.display = 'none';
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.log("Scanner was not active.");
|
||||||
|
reader.style.display = 'none';
|
||||||
|
resolve();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, observerOptions);
|
}
|
||||||
|
|
||||||
// Select elements to animate (add a class 'reveal' to them in HTML if not already handled by CSS animation)
|
function cleanupUI() {
|
||||||
// For now, let's just make sure the hero animations run.
|
const capBtn = document.getElementById('btnCaptureFrame');
|
||||||
// If we want scroll animations, we'd add opacity: 0 to elements in CSS and reveal them here.
|
if (capBtn) capBtn.remove();
|
||||||
// Given the request, the CSS animation I added runs on load for Hero.
|
const stopBtn = document.getElementById('btnStopScanner');
|
||||||
// Let's make the project cards animate in.
|
if (stopBtn) stopBtn.remove();
|
||||||
|
const flash = document.querySelector('.shutter-flash');
|
||||||
const projectCards = document.querySelectorAll('.project-card');
|
if (flash) flash.classList.remove('active');
|
||||||
projectCards.forEach((card, index) => {
|
reader.classList.remove('camera-mode');
|
||||||
card.style.opacity = "0";
|
}
|
||||||
card.style.animationDelay = `${index * 0.1}s`;
|
|
||||||
observer.observe(card);
|
function addStopButton() {
|
||||||
|
if (!document.getElementById('btnStopScanner')) {
|
||||||
|
const stopBtn = document.createElement('button');
|
||||||
|
stopBtn.id = 'btnStopScanner';
|
||||||
|
stopBtn.innerText = "Stop Camera";
|
||||||
|
stopBtn.className = "btn btn-danger btn-sm w-100 mt-2";
|
||||||
|
stopBtn.onclick = stopScanner;
|
||||||
|
reader.after(stopBtn);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function triggerFlash() {
|
||||||
|
let flash = document.querySelector('.shutter-flash');
|
||||||
|
if (!flash) {
|
||||||
|
flash = document.createElement('div');
|
||||||
|
flash.className = 'shutter-flash';
|
||||||
|
reader.appendChild(flash);
|
||||||
|
}
|
||||||
|
flash.classList.add('active');
|
||||||
|
setTimeout(() => flash.classList.remove('active'), 150);
|
||||||
|
}
|
||||||
|
|
||||||
|
btnScanBarcode.addEventListener('click', function() {
|
||||||
|
if (!checkHttps()) return;
|
||||||
|
|
||||||
|
stopScanner().then(() => {
|
||||||
|
reader.style.display = 'block';
|
||||||
|
if (!html5QrCode) {
|
||||||
|
html5QrCode = new Html5Qrcode("reader");
|
||||||
|
}
|
||||||
|
|
||||||
|
addStopButton();
|
||||||
|
|
||||||
|
const config = {
|
||||||
|
fps: 10,
|
||||||
|
qrbox: (viewfinderWidth, viewfinderHeight) => {
|
||||||
|
return { width: viewfinderWidth * 0.8, height: viewfinderHeight * 0.4 };
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
html5QrCode.start(
|
||||||
|
{ facingMode: "environment" },
|
||||||
|
config,
|
||||||
|
(decodedText) => {
|
||||||
|
console.log(`Barcode detected: ${decodedText}`);
|
||||||
|
triggerFlash();
|
||||||
|
stopScanner().then(() => {
|
||||||
|
analyzeProduct({ barcode: decodedText });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
).catch(err => {
|
||||||
|
console.error("Scanner start error:", err);
|
||||||
|
alert("Could not start camera. Please check permissions.");
|
||||||
|
reader.style.display = 'none';
|
||||||
|
cleanupUI();
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
btnTakePhoto.addEventListener('click', function() {
|
||||||
|
if (!checkHttps()) return;
|
||||||
|
|
||||||
|
stopScanner().then(() => {
|
||||||
|
reader.style.display = 'block';
|
||||||
|
reader.classList.add('camera-mode');
|
||||||
|
if (!html5QrCode) {
|
||||||
|
html5QrCode = new Html5Qrcode("reader");
|
||||||
|
}
|
||||||
|
|
||||||
|
addStopButton();
|
||||||
|
|
||||||
|
html5QrCode.start(
|
||||||
|
{ facingMode: "environment" },
|
||||||
|
{ fps: 10 },
|
||||||
|
() => { /* ignore QR scans in photo mode unless we want both */ }
|
||||||
|
).then(() => {
|
||||||
|
if (!document.getElementById('btnCaptureFrame')) {
|
||||||
|
const capBtn = document.createElement('button');
|
||||||
|
capBtn.id = 'btnCaptureFrame';
|
||||||
|
capBtn.innerHTML = '<i class="bi bi-camera-fill me-1"></i> Take Photo & Identify';
|
||||||
|
capBtn.className = "btn btn-primary btn-lg w-100 mt-2 mb-1 py-3";
|
||||||
|
capBtn.onclick = capturePhoto;
|
||||||
|
// Insert before stop button if exists
|
||||||
|
const stopBtn = document.getElementById('btnStopScanner');
|
||||||
|
if (stopBtn) {
|
||||||
|
stopBtn.before(capBtn);
|
||||||
|
} else {
|
||||||
|
reader.after(capBtn);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).catch(err => {
|
||||||
|
console.error("Camera start error:", err);
|
||||||
|
alert("Camera error: " + err);
|
||||||
|
reader.style.display = 'none';
|
||||||
|
cleanupUI();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function capturePhoto() {
|
||||||
|
console.log("Capturing photo...");
|
||||||
|
const video = document.querySelector('#reader video');
|
||||||
|
if (!video) {
|
||||||
|
console.error("Video element not found in reader");
|
||||||
|
alert("Camera not ready. Video element missing.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
triggerFlash();
|
||||||
|
|
||||||
|
const canvas = document.getElementById('photoCanvas');
|
||||||
|
if (!canvas) {
|
||||||
|
console.error("Canvas element #photoCanvas not found");
|
||||||
|
alert("Application error: missing canvas.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const MAX_DIM = 1024;
|
||||||
|
let width = video.videoWidth;
|
||||||
|
let height = video.videoHeight;
|
||||||
|
|
||||||
|
if (width === 0 || height === 0) {
|
||||||
|
console.error("Video dimensions are 0", {width, height});
|
||||||
|
alert("Camera error: invalid video dimensions. Try moving the camera.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (width > height) {
|
||||||
|
if (width > MAX_DIM) {
|
||||||
|
height *= MAX_DIM / width;
|
||||||
|
width = MAX_DIM;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (height > MAX_DIM) {
|
||||||
|
width *= MAX_DIM / height;
|
||||||
|
height = MAX_DIM;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
canvas.width = width;
|
||||||
|
canvas.height = height;
|
||||||
|
const context = canvas.getContext('2d');
|
||||||
|
context.drawImage(video, 0, 0, width, height);
|
||||||
|
|
||||||
|
const dataUrl = canvas.toDataURL('image/jpeg', 0.8);
|
||||||
|
console.log("Data URL generated, length:", dataUrl.length);
|
||||||
|
|
||||||
|
if (dataUrl.length < 1000) {
|
||||||
|
console.error("Data URL seems too short, capture might have failed");
|
||||||
|
}
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
console.log("Proceeding to identification...");
|
||||||
|
stopScanner().then(() => {
|
||||||
|
analyzeProduct({ image: dataUrl });
|
||||||
|
});
|
||||||
|
}, 300);
|
||||||
|
}
|
||||||
|
|
||||||
|
function analyzeProduct(params) {
|
||||||
|
console.log("Sending request to api/analyze.php", params.barcode ? "with barcode" : "with image");
|
||||||
|
aiLoading.style.display = 'block';
|
||||||
|
pName.placeholder = "Identifying...";
|
||||||
|
|
||||||
|
// Clear previous values to show something is happening
|
||||||
|
pName.value = '';
|
||||||
|
|
||||||
|
fetch('api/analyze.php', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { 'Content-Type': 'application/json' },
|
||||||
|
body: JSON.stringify(params)
|
||||||
|
})
|
||||||
|
.then(res => {
|
||||||
|
console.log("Received response status:", res.status);
|
||||||
|
return res.json();
|
||||||
|
})
|
||||||
|
.then(res => {
|
||||||
|
console.log("Received data:", res);
|
||||||
|
aiLoading.style.display = 'none';
|
||||||
|
pName.placeholder = "e.g. Milk, Eggs, Bread";
|
||||||
|
|
||||||
|
if (res.success && res.data) {
|
||||||
|
const data = res.data;
|
||||||
|
if (data.name) pName.value = data.name;
|
||||||
|
if (data.category) pCategory.value = data.category;
|
||||||
|
if (data.quantity) pQuantity.value = data.quantity;
|
||||||
|
if (data.expiration_date) pExpiration.value = data.expiration_date;
|
||||||
|
|
||||||
|
// Visual highlight of changed fields
|
||||||
|
[pName, pCategory, pQuantity, pExpiration].forEach(el => {
|
||||||
|
if (el.value) {
|
||||||
|
el.classList.add('is-valid');
|
||||||
|
setTimeout(() => el.classList.remove('is-valid'), 2000);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
} else {
|
||||||
|
console.error("Identification failed:", res.error);
|
||||||
|
alert("Could not identify the product: " + (res.error || "Please try again."));
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
aiLoading.style.display = 'none';
|
||||||
|
pName.placeholder = "e.g. Milk, Eggs, Bread";
|
||||||
|
console.error("Fetch error:", err);
|
||||||
|
alert("Analysis failed. Connection error or server issue.");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const addItemModal = document.getElementById('addItemModal');
|
||||||
|
if (addItemModal) {
|
||||||
|
addItemModal.addEventListener('hidden.bs.modal', function () {
|
||||||
|
stopScanner();
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
363
index.php
363
index.php
@ -1,150 +1,235 @@
|
|||||||
<?php
|
<?php
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
@ini_set('display_errors', '1');
|
require_once __DIR__ . '/db/config.php';
|
||||||
@error_reporting(E_ALL);
|
|
||||||
@date_default_timezone_set('UTC');
|
|
||||||
|
|
||||||
$phpVersion = PHP_VERSION;
|
// Handle Add Product
|
||||||
$now = date('Y-m-d H:i:s');
|
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['action'])) {
|
||||||
|
if ($_POST['action'] === 'add') {
|
||||||
|
$name = trim($_POST['name'] ?? '');
|
||||||
|
$category = trim($_POST['category'] ?? '');
|
||||||
|
$quantity = trim($_POST['quantity'] ?? '');
|
||||||
|
$expiration_date = $_POST['expiration_date'] ?: null;
|
||||||
|
|
||||||
|
if ($name) {
|
||||||
|
$stmt = db()->prepare("INSERT INTO products (name, category, quantity, expiration_date) VALUES (?, ?, ?, ?)");
|
||||||
|
$stmt->execute([$name, $category, $quantity, $expiration_date]);
|
||||||
|
}
|
||||||
|
} elseif ($_POST['action'] === 'delete') {
|
||||||
|
$id = (int)($_POST['id'] ?? 0);
|
||||||
|
if ($id) {
|
||||||
|
$stmt = db()->prepare("DELETE FROM products WHERE id = ?");
|
||||||
|
$stmt->execute([$id]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
header('Location: index.php');
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fetch Products
|
||||||
|
$products = db()->query("SELECT * FROM products ORDER BY expiration_date ASC")->fetchAll();
|
||||||
|
|
||||||
|
$today = new DateTime();
|
||||||
|
$expiring_soon_days = 7;
|
||||||
?>
|
?>
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>New Style</title>
|
<title>Home Pantry Tracker</title>
|
||||||
<?php
|
<meta name="description" content="<?= htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'Track your home food supplies and expiration dates.') ?>">
|
||||||
// Read project preview data from environment
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||||
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
|
||||||
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
?>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<?php if ($projectDescription): ?>
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
||||||
<!-- Meta description -->
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?= time() ?>">
|
||||||
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
|
<script src="https://unpkg.com/html5-qrcode"></script>
|
||||||
<!-- Open Graph meta tags -->
|
<style>
|
||||||
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
#reader { width: 100%; border-radius: 8px; overflow: hidden; margin-bottom: 15px; display: none; }
|
||||||
<!-- Twitter meta tags -->
|
.ai-loading { display: none; text-align: center; padding: 20px; }
|
||||||
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
.scanner-actions { display: flex; gap: 10px; margin-bottom: 15px; }
|
||||||
<?php endif; ?>
|
</style>
|
||||||
<?php if ($projectImageUrl): ?>
|
|
||||||
<!-- Open Graph image -->
|
|
||||||
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
|
||||||
<!-- Twitter image -->
|
|
||||||
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
|
||||||
<?php endif; ?>
|
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
|
||||||
<style>
|
|
||||||
:root {
|
|
||||||
--bg-color-start: #6a11cb;
|
|
||||||
--bg-color-end: #2575fc;
|
|
||||||
--text-color: #ffffff;
|
|
||||||
--card-bg-color: rgba(255, 255, 255, 0.01);
|
|
||||||
--card-border-color: rgba(255, 255, 255, 0.1);
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
font-family: 'Inter', sans-serif;
|
|
||||||
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
|
||||||
color: var(--text-color);
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 100vh;
|
|
||||||
text-align: center;
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
body::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
|
|
||||||
animation: bg-pan 20s linear infinite;
|
|
||||||
z-index: -1;
|
|
||||||
}
|
|
||||||
@keyframes bg-pan {
|
|
||||||
0% { background-position: 0% 0%; }
|
|
||||||
100% { background-position: 100% 100%; }
|
|
||||||
}
|
|
||||||
main {
|
|
||||||
padding: 2rem;
|
|
||||||
}
|
|
||||||
.card {
|
|
||||||
background: var(--card-bg-color);
|
|
||||||
border: 1px solid var(--card-border-color);
|
|
||||||
border-radius: 16px;
|
|
||||||
padding: 2rem;
|
|
||||||
backdrop-filter: blur(20px);
|
|
||||||
-webkit-backdrop-filter: blur(20px);
|
|
||||||
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
.loader {
|
|
||||||
margin: 1.25rem auto 1.25rem;
|
|
||||||
width: 48px;
|
|
||||||
height: 48px;
|
|
||||||
border: 3px solid rgba(255, 255, 255, 0.25);
|
|
||||||
border-top-color: #fff;
|
|
||||||
border-radius: 50%;
|
|
||||||
animation: spin 1s linear infinite;
|
|
||||||
}
|
|
||||||
@keyframes spin {
|
|
||||||
from { transform: rotate(0deg); }
|
|
||||||
to { transform: rotate(360deg); }
|
|
||||||
}
|
|
||||||
.hint {
|
|
||||||
opacity: 0.9;
|
|
||||||
}
|
|
||||||
.sr-only {
|
|
||||||
position: absolute;
|
|
||||||
width: 1px; height: 1px;
|
|
||||||
padding: 0; margin: -1px;
|
|
||||||
overflow: hidden;
|
|
||||||
clip: rect(0, 0, 0, 0);
|
|
||||||
white-space: nowrap; border: 0;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 3rem;
|
|
||||||
font-weight: 700;
|
|
||||||
margin: 0 0 1rem;
|
|
||||||
letter-spacing: -1px;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin: 0.5rem 0;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
}
|
|
||||||
code {
|
|
||||||
background: rgba(0,0,0,0.2);
|
|
||||||
padding: 2px 6px;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
|
||||||
}
|
|
||||||
footer {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 1rem;
|
|
||||||
font-size: 0.8rem;
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
|
||||||
<div class="card">
|
<nav class="navbar navbar-expand-lg mb-4">
|
||||||
<h1>Analyzing your requirements and generating your website…</h1>
|
<div class="container">
|
||||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
<a class="navbar-brand" href="#"><i class="bi bi-house-door-fill me-2"></i>Home Pantry</a>
|
||||||
<span class="sr-only">Loading…</span>
|
<button class="btn btn-primary btn-sm" data-bs-toggle="modal" data-bs-target="#addItemModal">
|
||||||
</div>
|
<i class="bi bi-plus-lg me-1"></i> Add Item
|
||||||
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
|
</button>
|
||||||
<p class="hint">This page will update automatically as the plan is implemented.</p>
|
|
||||||
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</nav>
|
||||||
<footer>
|
|
||||||
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
<div class="container">
|
||||||
</footer>
|
<div class="row mb-4">
|
||||||
|
<?php
|
||||||
|
$total_items = count($products);
|
||||||
|
$expired_count = 0;
|
||||||
|
$warning_count = 0;
|
||||||
|
foreach ($products as $p) {
|
||||||
|
if ($p['expiration_date']) {
|
||||||
|
$exp_date = new DateTime($p['expiration_date']);
|
||||||
|
$diff = $today->diff($exp_date);
|
||||||
|
$days = (int)$diff->format("%r%a");
|
||||||
|
if ($days < 0) $expired_count++;
|
||||||
|
elseif ($days <= $expiring_soon_days) $warning_count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="card p-3 text-center">
|
||||||
|
<div class="text-muted small text-uppercase fw-bold">Total Items</div>
|
||||||
|
<div class="h3 mb-0"><?= $total_items ?></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="card p-3 text-center">
|
||||||
|
<div class="text-muted small text-uppercase fw-bold text-danger">Expired</div>
|
||||||
|
<div class="h3 mb-0 text-danger"><?= $expired_count ?></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="card p-3 text-center">
|
||||||
|
<div class="text-muted small text-uppercase fw-bold text-warning">Expiring Soon</div>
|
||||||
|
<div class="h3 mb-0 text-warning"><?= $warning_count ?></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header d-flex justify-content-between align-items-center">
|
||||||
|
<span>Inventory List</span>
|
||||||
|
<div class="text-muted small">Sorted by expiration date</div>
|
||||||
|
</div>
|
||||||
|
<div class="table-responsive">
|
||||||
|
<table class="table table-hover mb-0">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Product Name</th>
|
||||||
|
<th>Category</th>
|
||||||
|
<th>Quantity</th>
|
||||||
|
<th>Expiration</th>
|
||||||
|
<th>Status</th>
|
||||||
|
<th class="text-end">Actions</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<?php if (empty($products)): ?>
|
||||||
|
<tr>
|
||||||
|
<td colspan="6" class="text-center py-4 text-muted">No items in your pantry yet. Add some!</td>
|
||||||
|
</tr>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php foreach ($products as $p):
|
||||||
|
$status_class = '';
|
||||||
|
$badge_class = 'badge-fresh';
|
||||||
|
$status_text = 'Fresh';
|
||||||
|
|
||||||
|
if ($p['expiration_date']) {
|
||||||
|
$exp_date = new DateTime($p['expiration_date']);
|
||||||
|
$diff = $today->diff($exp_date);
|
||||||
|
$days = (int)$diff->format("%r%a");
|
||||||
|
|
||||||
|
if ($days < 0) {
|
||||||
|
$status_class = 'status-expired';
|
||||||
|
$badge_class = 'badge-expired';
|
||||||
|
$status_text = 'Expired';
|
||||||
|
} elseif ($days <= $expiring_soon_days) {
|
||||||
|
$status_class = 'status-warning';
|
||||||
|
$badge_class = 'badge-warning';
|
||||||
|
$status_text = 'Expiring Soon';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<tr class="<?= $status_class ?>">
|
||||||
|
<td class="fw-bold"><?= htmlspecialchars($p['name']) ?></td>
|
||||||
|
<td><span class="badge bg-light text-dark"><?= htmlspecialchars($p['category']) ?></span></td>
|
||||||
|
<td><?= htmlspecialchars($p['quantity']) ?></td>
|
||||||
|
<td><?= $p['expiration_date'] ? date('M d, Y', strtotime($p['expiration_date'])) : '-' ?></td>
|
||||||
|
<td><span class="badge <?= $badge_class ?>"><?= $status_text ?></span></td>
|
||||||
|
<td class="text-end">
|
||||||
|
<form method="POST" style="display:inline;">
|
||||||
|
<input type="hidden" name="action" value="delete">
|
||||||
|
<input type="hidden" name="id" value="<?= $p['id'] ?>">
|
||||||
|
<button type="submit" class="btn btn-link text-danger p-0" onclick="return confirm('Delete this item?')">
|
||||||
|
<i class="bi bi-trash"></i>
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Add Item Modal -->
|
||||||
|
<div class="modal fade" id="addItemModal" tabindex="-1" aria-hidden="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<form method="POST" id="addItemForm">
|
||||||
|
<input type="hidden" name="action" value="add">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h5 class="modal-title">Add New Pantry Item</h5>
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="scanner-actions">
|
||||||
|
<button type="button" class="btn btn-outline-secondary btn-sm flex-fill" id="btnScanBarcode">
|
||||||
|
<i class="bi bi-upc-scan me-1"></i> Scan Barcode
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-outline-secondary btn-sm flex-fill" id="btnTakePhoto">
|
||||||
|
<i class="bi bi-camera me-1"></i> Take Photo (AI)
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="reader"></div>
|
||||||
|
|
||||||
|
<div class="ai-loading" id="aiLoading">
|
||||||
|
<div class="spinner-border text-primary mb-2" role="status"></div>
|
||||||
|
<div>AI is identifying the product...</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<label class="form-label">Product Name</label>
|
||||||
|
<input type="text" name="name" id="p_name" class="form-control" required placeholder="e.g. Milk, Eggs, Bread">
|
||||||
|
</div>
|
||||||
|
<div class="mb-3">
|
||||||
|
<label class="form-label">Category</label>
|
||||||
|
<select name="category" id="p_category" class="form-select">
|
||||||
|
<option value="Dairy">Dairy</option>
|
||||||
|
<option value="Meat">Meat</option>
|
||||||
|
<option value="Bakery">Bakery</option>
|
||||||
|
<option value="Produce">Produce</option>
|
||||||
|
<option value="Pantry">Pantry</option>
|
||||||
|
<option value="Frozen">Frozen</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6 mb-3">
|
||||||
|
<label class="form-label">Quantity</label>
|
||||||
|
<input type="text" name="quantity" id="p_quantity" class="form-control" placeholder="e.g. 2 liters, 1 pack">
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 mb-3">
|
||||||
|
<label class="form-label">Expiration Date</label>
|
||||||
|
<input type="date" name="expiration_date" id="p_expiration" class="form-control">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-light" data-bs-dismiss="modal">Cancel</button>
|
||||||
|
<button type="submit" class="btn btn-primary">Save Product</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<canvas id="photoCanvas" style="display:none;"></canvas>
|
||||||
|
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<script src="assets/js/main.js?v=<?= time() ?>"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
x
Reference in New Issue
Block a user