nagasurendra's picture
Update templates/menu.html
0ead5f7 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
margin: 0;
padding: 0;
}
.container {
max-width: 900px;
}
.menu-card {
max-width: 350px;
border-radius: 15px;
overflow: hidden;
background-color: #fff;
margin: auto;
}
.menu-image {
height: 200px;
width: 100%;
object-fit: cover;
border-radius: 15px 15px 0 0;
}
.card-title {
font-size: 1.2rem;
font-weight: bold;
}
.card-text {
font-size: 1rem;
color: #6c757d;
}
.btn-primary {
font-size: 0.9rem;
border-radius: 20px;
width: 100px;
background-color: #5bbfc1;
border-color: #28a745;
}
.btn-primary:hover {
background-color: #4a5d68;
border-color: #1e7e34;
}
.btn-primary:active,
.btn-primary:focus {
background-color: #4a5d68;
border-color: #1e7e34;
box-shadow: none;
}
.view-cart-container {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 999;
}
.view-cart-button {
background-color: #5bbfc1;
color: #fff;
padding: 10px 20px;
border-radius: 50px;
font-size: 1rem;
font-weight: bold;
text-decoration: none;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: center;
}
.view-cart-button:hover {
background-color: #4a5d68;
text-decoration: none;
}
.avatar-dropdown-container {
position: relative;
}
.avatar-icon {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #5bbfc1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 20px;
font-weight: bold;
}
.dropdown-menu {
position: absolute;
right: 0;
top: 100%;
background-color: #fff;
border-radius: 5px;
width: 200px; /* Adjust width as needed */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
display: none;
}
.avatar-dropdown-container:hover .dropdown-menu {
display: block;
}
.dropdown-menu .dropdown-item {
padding: 10px 15px;
text-decoration: none;
color: #333;
border-bottom: 1px solid #ddd;
display: block; /* Make each item stack vertically */
}
.dropdown-menu .dropdown-item:last-child {
border-bottom: none; /* Remove the bottom border from the last item */
}
.dropdown-menu .dropdown-item:hover {
background-color: #f1f1f1;
}
.fixed-search-container {
position: fixed;
top: 10px;
left: 50%;
transform: translateX(-50%);
width: 80%;
max-width: 600px;
z-index: 1000;
background-color: white;
padding: 10px;
border-radius: 25px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
/* Add some margin to the menu container so it doesn't overlap with the search bar */
.container {
margin-top: 70px;
}
</style>
</head>
<body>
<div class="d-flex justify-content-between align-items-center p-3" style="background-color: #5bbfc1; color: white;">
<!-- Removed Reward Points and Referral Code -->
<div class="d-flex align-items-center">
<a href="{{ url_for('order_history') }}" class="text-white mx-2" title="Order History">
<i class="bi bi-clock-history fs-4"></i>
</a>
<a href="{{ url_for('logout') }}" class="text-white mx-2" title="Logout">
<i class="bi bi-box-arrow-right fs-4"></i>
</a>
</div>
<!-- Add Welcome Message with Customer Name -->
<div class="d-flex align-items-center">
<span class="text-white mr-3">Welcome, {{ user_name }}</span> <!-- Display the customer's name -->
</div>
<!-- Avatar and Dropdown -->
<div class="avatar-dropdown-container">
<div class="avatar-icon">
<!-- Use the first letter of the user's name for the avatar -->
<span>{{ first_letter }}</span> <!-- Display the first letter of the customer's name -->
</div>
<div class="dropdown-menu">
<!-- Direct links without grouping into columns -->
<a href="{{ url_for('customer_details') }}" class="dropdown-item">View Profile</a>
<a href="{{ url_for('order_history') }}" class="dropdown-item">Order History</a>
<a href="{{ url_for('logout') }}" class="dropdown-item">Logout</a>
</div>
</div>
</div>
<div class="container mt-4">
<h1 class="text-center">Menu</h1>
<!-- Category Filter -->
<form method="get" action="/menu" class="text-center mb-4">
<label for="category" class="form-label fw-bold">Filter by Category:</label>
<select id="category" name="category" class="form-select" onchange="this.form.submit()">
{% for category in categories %}
<option value="{{ category }}" {% if selected_category == category %}selected{% endif %}>
{{ category }}
</option>
{% endfor %}
<option value="Customized Dish" {% if selected_category == "Customized Dish" %}selected{% endif %}>
Customized Dish
</option>
</select>
</form>
<!-- Display text boxes for Customized Dish -->
{% if selected_category == "Customized Dish" %}
<div id="custom-dish-form" class="mt-4">
<h3>Create Your Custom Dish</h3>
<form method="POST" action="/generate_custom_dish">
<div class="mb-3">
<label for="custom-dish-name" class="form-label">Dish Name</label>
<input type="text" class="form-control" id="custom-dish-name" name="name" required>
</div>
<div class="mb-3">
<label for="custom-dish-description" class="form-label">Dish Description</label>
<textarea class="form-control" id="custom-dish-description" name="description" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
{% endif %}
<div class="fixed-search-container">
<input type="text" id="searchBar" class="form-control" placeholder="Search items or sections..." onkeyup="filterMenu()">
</div>
{% for section, items in ordered_menu.items() %}
<div class="menu-section">
<h3 class="mt-4">{{ section }}</h3>
<div class="row">
{% for item in items %}
<div class="col-md-6 mb-4">
<div class="card menu-card">
<img src="{{ item.Image1__c }}" class="card-img-top menu-image" alt="{{ item.Name }}" onerror="this.src='/static/placeholder.jpg';">
<div class="card-body">
<h5 class="card-title">{{ item.Name }}</h5>
<p class="card-text">${{ item.Price__c }}</p>
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#itemModal"
onclick="showItemDetails('{{ item.Name }}', '{{ item.Price__c }}', '{{ item.Image2__c }}', '{{ item.Description__c }}', '{{item.Section__c}}','{{ selected_category }}')">
Add +
</button>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
<!-- View Cart Button -->
<div class="view-cart-container">
<a href="/cart" class="view-cart-button">
View Cart
</a>
</div>
<!-- Bootstrap JS -->
<!-- Modal for Item Details -->
<div class="modal fade" id="itemModal" tabindex="-1" aria-labelledby="itemModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="itemModalLabel">Item Details</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- Item Image -->
<img id="modal-img" class="img-fluid rounded mb-3 d-block mx-auto" alt="Item Image" style="max-height: 200px; object-fit: cover;">
<!-- Item Name -->
<h5 id="modal-name" class="fw-bold text-center"></h5>
<!-- Item Price -->
<p id="modal-price" class="text-muted text-center"></p>
<!-- Item Description -->
<p id="modal-description" class="text-secondary"></p>
<!-- Add-ons -->
<div id="modal-addons" class="modal-addons mt-4">
<h6>Add-ons</h6>
<div id="addons-list" class="addons-container">Loading add-ons...</div>
</div>
<div class="mt-4">
<h6>Special Instructions</h6>
<textarea id="modal-instructions" class="form-control" placeholder="Enter any special instructions here..."></textarea>
</div>
<span id="modal-section" data-section="" data-category="" style="display: none;"></span>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" onclick="addToCartFromModal()">Add to Cart</button>
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- JavaScript -->
<script>
function showItemDetails(name, price, image, description, section, selectedCategory) {
// Set modal content dynamically
document.getElementById('modal-name').innerText = name;
document.getElementById('modal-price').innerText = `$${price}`;
document.getElementById('modal-img').src = image || '/static/placeholder.jpg';
document.getElementById('modal-description').innerText = description || 'No description available.';
document.getElementById('addons-list').innerHTML = 'Loading add-ons...';
document.getElementById('modal-instructions').value = '';
// Correctly set data attributes for section and category
const modalSectionEl = document.getElementById('modal-section');
modalSectionEl.setAttribute('data-section', section);
modalSectionEl.setAttribute('data-category', selectedCategory);
// Fetch add-ons dynamically based on item Name
fetch(`/api/addons?item_name=${encodeURIComponent(name)}`)
.then(response => response.json())
.then(data => {
const addonsList = document.getElementById('addons-list');
addonsList.innerHTML = ''; // Clear previous content
if (!data.success || !data.addons || data.addons.length === 0) {
addonsList.innerHTML = 'No add-ons available.';
return;
}
// Populate the add-ons list
data.addons.forEach(addon => {
const listItem = document.createElement('div');
listItem.innerHTML = `
<input type="checkbox" id="addon-${addon.Id}" value="${addon.Id}"
data-name="${addon.Name}" data-price="${addon.Price__c}">
<label for="addon-${addon.Id}">${addon.Name} - $${addon.Price__c}</label>
`;
addonsList.appendChild(listItem);
});
})
.catch(err => {
console.error('Error fetching add-ons:', err);
document.getElementById('addons-list').innerHTML = 'Unable to fetch add-ons. Please try again later.';
});
}
function filterMenu() {
let input = document.getElementById('searchBar').value.toLowerCase();
let sections = document.querySelectorAll('.menu-section'); // Select all sections
let items = document.querySelectorAll('.menu-card'); // Select all items
// Hide all sections initially
sections.forEach(section => {
section.style.display = 'none';
});
// Hide all items initially
items.forEach(item => {
item.style.display = 'none';
});
let matchedSections = new Set(); // Store matched sections
// Show items that match the search query
items.forEach(item => {
let itemName = item.querySelector('.card-title').innerText.toLowerCase();
let itemSection = item.closest('.menu-section')?.querySelector('h3')?.innerText.toLowerCase();
// If item name or section name matches the search query, show it
if (itemName.includes(input) || (itemSection && itemSection.includes(input))) {
item.style.display = 'block';
matchedSections.add(item.closest('.menu-section')); // Store the section
}
});
// Show matched sections
matchedSections.forEach(section => {
section.style.display = 'block';
});
}
function addToCartFromModal() {
const itemName = document.getElementById('modal-name').innerText; // Get item name
const itemPrice = parseFloat(document.getElementById('modal-price').innerText.replace('$', '')); // Get item price
const itemImage = document.getElementById('modal-img').src; // Get item image
const modalSectionEl = document.getElementById('modal-section');
const section = modalSectionEl.getAttribute('data-section');
const selectedCategory = modalSectionEl.getAttribute('data-category');
const selectedAddOns = Array.from(
document.querySelectorAll('#addons-list input[type="checkbox"]:checked')
).map(addon => ({
name: addon.getAttribute('data-name'), // Add-on name
price: parseFloat(addon.getAttribute('data-price')) // Add-on price
}));
const instructions = document.getElementById('modal-instructions').value;
// Ensure itemName and itemPrice are present
if (!itemName || !itemPrice) {
alert('Failed to add item to cart. Please try again.');
return;
}
// Create the payload to send to the backend
const cartPayload = {
itemName: itemName, // Food item name
itemPrice: itemPrice,
itemImage: itemImage, // Image URL
section: section,
category: selectedCategory,
addons: selectedAddOns,
instructions: instructions
};
// Send the payload to the server
fetch('/cart/add', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(cartPayload)
})
.then(response => response.json())
.then(data => {
if (data.success) {
alert('Item added to cart successfully!');
const modal = document.getElementById('itemModal');
const modalInstance = bootstrap.Modal.getInstance(modal); // Get the Bootstrap modal instance
modalInstance.hide(); // Hide the modal
// window.location.href = '/menu'; // Redirect to the cart page
} else {
console.error('Error adding item to cart:', data.error);
alert(data.error || 'Failed to add item to cart.');
}
})
.catch(err => {
console.error('Error adding item to cart:', err);
alert('An error occurred while adding the item to the cart.');
});
}
// Function to round reward points to a single digit
function roundRewardPoints() {
let rewardPointsElement = document.getElementById('reward-points');
let rewardPoints = parseFloat(rewardPointsElement.innerText);
if (!isNaN(rewardPoints)) {
rewardPointsElement.innerText = rewardPoints.toFixed(1); // Rounds to 1 decimal place
}
}
// Run the function when the page loads
window.onload = roundRewardPoints;
</script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>