Spaces:
Sleeping
Sleeping
File size: 21,131 Bytes
ba4dd53 9a22878 ba4dd53 9a22878 025f225 9a22878 0b1fd91 9a22878 0b1fd91 9a22878 be2cb4e ffd44f9 c0cf200 025f225 251b182 025f225 05646d5 251b182 c0cf200 e92dd60 1ee5aa0 def41d3 59771bb def41d3 59771bb def41d3 59771bb def41d3 59771bb def41d3 59771bb def41d3 59771bb def41d3 59771bb def41d3 1ee5aa0 beb5144 783fd70 aaf2fd0 783fd70 1ee5aa0 251b182 aaf2fd0 2ab5486 251b182 45fd349 42403a5 3b6bd65 cf96d01 45fd349 cf96d01 5f5fc13 cf96d01 2ab5486 45fd349 aaf2fd0 2ab5486 251b182 2ab5486 5f5fc13 cf96d01 251b182 def41d3 1b8720d 834c71a 1b8720d 834c71a 1b8720d 834c71a 1b8720d 834c71a 1b8720d 1ee5aa0 6ff2f86 71f182f c68f0e6 0b1fd91 a703953 bc88d8c 0b1fd91 9a22878 c96156f 9a22878 0b1fd91 9a22878 0b1fd91 9a22878 c96156f bc88d8c 0b1fd91 aaf2fd0 e9b5a96 aaf2fd0 31c4ef1 aaf2fd0 31c4ef1 6ff2f86 a703953 d176fa1 aaf2fd0 f2d428b e9b5a96 6ff2f86 e9b5a96 6ff2f86 e7d49fa 6ff2f86 e7d49fa 6ff2f86 e9b5a96 6ff2f86 0b1fd91 d176fa1 e9b5a96 b0b4830 e9b5a96 b0b4830 e58f314 c32d07a e9b5a96 a703953 6493160 c32d07a 6493160 aaf2fd0 bc88d8c c32d07a 3284d20 d176fa1 0b1fd91 d176fa1 9a22878 0b1fd91 d176fa1 9a22878 0b1fd91 d176fa1 6493160 d176fa1 9a22878 0b1fd91 e9b5a96 d176fa1 31c4ef1 97a7284 bc88d8c 7980609 45bc2f8 6ff2f86 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 |
import gradio as gr
import pandas as pd
from bcrypt import hashpw, gensalt, checkpw
# File for storing user data
USER_FILE = "users.xlsx"
# Utility Functions
def save_user(name, phone, email, password):
"""Save user details to Excel file."""
try:
# Load existing users
try:
users = pd.read_excel(USER_FILE)
except FileNotFoundError:
users = pd.DataFrame(columns=["Name", "Phone", "Email", "Password"])
# Check if email already exists
if email in users["Email"].values:
return False # User already exists
# Add new user
hashed_password = hashpw(password.encode(), gensalt()).decode()
new_user = {"Name": name, "Phone": phone, "Email": email, "Password": hashed_password}
users = pd.concat([users, pd.DataFrame([new_user])], ignore_index=True)
users.to_excel(USER_FILE, index=False)
return True
except Exception as e:
print(f"Error saving user: {e}")
return False
def check_credentials(email, password):
"""Check user credentials during login."""
try:
users = pd.read_excel(USER_FILE)
user = users[users["Email"] == email]
if not user.empty:
return checkpw(password.encode(), user.iloc[0]["Password"].encode())
return False
except FileNotFoundError:
return False
# Function to load the menu data
def load_menu():
menu_file = "menu.xlsx" # Ensure this file exists in the same directory
try:
return pd.read_excel(menu_file)
except Exception as e:
raise ValueError(f"Error loading menu file: {e}")
# Function to filter menu items based on preference
def filter_menu(preference):
menu_data = load_menu()
if preference == "Halal/Non-Veg":
filtered_data = menu_data[menu_data["Ingredients"].str.contains("Chicken|Mutton|Fish|Prawns|Goat", case=False, na=False)]
elif preference == "Vegetarian":
filtered_data = menu_data[~menu_data["Ingredients"].str.contains("Chicken|Mutton|Fish|Prawns|Goat", case=False, na=False)]
elif preference == "Guilt-Free":
filtered_data = menu_data[menu_data["Description"].str.contains(r"Fat: ([0-9]|10)g", case=False, na=False)]
else:
filtered_data = menu_data
html_content = ""
for _, item in filtered_data.iterrows():
html_content += f"""
<div style="display: flex; align-items: center; border: 1px solid #ddd; border-radius: 8px; padding: 15px; margin-bottom: 10px; box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);">
<div style="flex: 1; margin-right: 15px;">
<h3 style="margin: 0; font-size: 18px;">{item['Dish Name']}</h3>
<p style="margin: 5px 0; font-size: 16px; color: #888;">${item['Price ($)']}</p>
<p style="margin: 5px 0; font-size: 14px; color: #555;">{item['Description']}</p>
</div>
<div style="flex-shrink: 0; text-align: center;">
<img src="{item['Image URL']}" alt="{item['Dish Name']}" style="width: 100px; height: 100px; border-radius: 8px; object-fit: cover; margin-bottom: 10px;">
<button style="background-color: #28a745; color: white; border: none; padding: 8px 15px; font-size: 14px; border-radius: 5px; cursor: pointer;" onclick="openModal('{item['Dish Name']}', '{item['Image 2 URL']}', '{item['Description']}', '{item['Price ($)']}')">Add</button>
</div>
</div>
"""
return html_content
# Preserving your JavaScript for modal and cart functionality (Your original JavaScript logic)
modal_and_cart_js = """
<style>
.cart-container {
width: 90%; /* Ensure it fits the screen */
margin: auto;
display: flex;
flex-direction: column;
gap: 10px; /* Add space between cart items */
}
.cart-item {
display: flex;
flex-wrap: wrap; /* Wrap content to the next line if needed */
align-items: center; /* Vertically align items */
justify-content: space-between; /* Distribute space between items */
width: 100%; /* Ensure it takes full width */
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
}
.cart-item span {
margin-right: 10px;
flex: 1; /* Allow text to take available space */
min-width: 50px; /* Prevent collapsing */
}
.cart-item .quantity-container {
display: flex;
align-items: center;
gap: 5px;
}
.cart-item button {
background-color: red;
color: white;
border: none;
padding: 5px 10px;
cursor: pointer;
border-radius: 5px;
flex-shrink: 0; /* Prevent the button from shrinking */
}
.cart-total {
font-size: 1.2em;
font-weight: bold;
text-align: center;
}
button {
margin-top: 10px;
background-color: #007bff;
color: white;
border: none;
padding: 10px;
border-radius: 5px;
width: 100%;
cursor: pointer;
}
@media (max-width: 768px) {
.cart-item {
flex-direction: column; /* Stack items on mobile */
align-items: flex-start; /* Align to the left */
}
.cart-item button {
align-self: flex-end; /* Place the remove button at the end */
margin-top: 5px; /* Add some space on top */
}
}
</style>
<script>
let cart = [];
const extrasPrices = {
"Thums up": 2,
"Sprite": 2,
"Extra Raitha": 1,
"Extra Salan": 2,
"Extra Onion & Lemon": 2,
"Chilli Chicken": 14,
"Veg Manchurian": 12
};
let finalized = false;
function openModal(name, image2, description, price) {
if (finalized) {
alert("You cannot add more items after finalizing your order.");
return;
}
const modal = document.getElementById('modal');
modal.style.display = 'block';
modal.style.position = 'fixed';
if (window.innerWidth <= 768) {
modal.style.width = '90%';
modal.style.top = `${event.touches ? event.touches[0].screenY : event.clientY}px`;
} else {
modal.style.width = '30%';
modal.style.top = `${event.clientY}px`;// Use mouse Y position for laptop
}
modal.style.left = '50%';
modal.style.transform = 'translate(-50%, -50%)';
document.getElementById('modal-image').src = image2;
document.getElementById('modal-name').innerText = name;
document.getElementById('modal-description').innerText = description;
document.getElementById('modal-price').innerText = price;
const extrasInputs = document.querySelectorAll('input[name="biryani-extra"]');
extrasInputs.forEach(input => input.checked = false);
document.getElementById('quantity').value = 1;
document.getElementById('special-instructions').value = '';
}
function closeModal() {
document.getElementById('modal').style.display = 'none';
}
function addToCart() {
if (finalized) {
alert("You cannot add more items after finalizing your order.");
return;
}
const name = document.getElementById('modal-name').innerText;
const price = parseFloat(document.getElementById('modal-price').innerText.replace('$', ''));
const quantity = parseInt(document.getElementById('quantity').value) || 1;
const instructions = document.getElementById('special-instructions').value;
const extras = Array.from(document.querySelectorAll('input[name="biryani-extra"]:checked')).map(extra => extra.value);
const extrasCost = extras.reduce((sum, extra) => sum + (extrasPrices[extra] || 0), 0);
const itemTotal = (price + extrasCost) * quantity;
const cartItem = { name, price, quantity, instructions, extras, itemTotal, extrasQuantities: extras.map(() => 1) };
cart.push(cartItem);
alert(`${name} added to cart!`);
updateCartDisplay();
closeModal();
}
function updateCartDisplay() {
let totalBill = 0;
let cartHTML = "<div class='cart-container'>";
cart.forEach((item, index) => {
totalBill += item.itemTotal;
const extras = item.extras.map((extra, i) => {
const extraQuantity = item.extrasQuantities ? item.extrasQuantities[i] || 1 : 1;
const extraTotal = extrasPrices[extra] * extraQuantity;
totalBill += extraTotal;
return `<div class='cart-item'>
<span>${extra}</span>
<span>Price: $${extrasPrices[extra].toFixed(2)}</span>
<div class='quantity-container'>
<label for='extra-quantity-${index}-${i}'>Quantity:</label>
<input type='number' id='extra-quantity-${index}-${i}' value='${extraQuantity}' min='1' style='width: 50px;' onchange='updateExtraQuantity(${index}, ${i}, this.value)'>
</div>
<span>Total: $${extraTotal.toFixed(2)}</span>
<button style='background-color: red; color: white; border: none; padding: 5px 10px; cursor: pointer;' onclick='removeExtra(${index}, ${i})'>Remove</button>
</div>`;
}).join('');
cartHTML += `<div class='cart-item'>
<span>${item.name}</span>
<span>Item Price: $${item.price.toFixed(2)}</span>
<div class='quantity-container'>
<label for='item-quantity-${index}'>Quantity:</label>
<input type='number' id='item-quantity-${index}' value='${item.quantity}' min='1' style='width: 50px;' onchange='updateItemQuantity(${index}, this.value)'>
</div>
<span>Total: $${(item.price * item.quantity).toFixed(2)}</span>
<button style='background-color: red; color: white; border: none; padding: 5px 10px; cursor: pointer;' onclick='removeItem(${index})'>Remove</button>
</div>
${extras}
<div class='cart-item'><strong>Instructions:</strong> ${item.instructions || "None"}</div>`;
});
cartHTML += `</div><p class='cart-total'>Total Bill: $${totalBill.toFixed(2)}</p>`;
cartHTML += `<button style='margin-top: 10px; background-color: #007bff; color: white; border: none; padding: 10px; border-radius: 5px; width: 100%; cursor: pointer;' onclick='submitCart()'>Submit</button>`;
document.getElementById('floating-cart').innerHTML = cartHTML;
}
function updateItemQuantity(index, newQuantity) {
const quantity = parseInt(newQuantity) || 1;
cart[index].quantity = quantity;
cart[index].itemTotal = cart[index].price * quantity;
updateCartDisplay();
}
function updateExtraQuantity(cartIndex, extraIndex, newQuantity) {
const quantity = parseInt(newQuantity) || 1;
cart[cartIndex].extrasQuantities = cart[cartIndex].extrasQuantities || [];
cart[cartIndex].extrasQuantities[extraIndex] = quantity;
updateCartDisplay();
}
function removeExtra(cartIndex, extraIndex) {
cart[cartIndex].extras.splice(extraIndex, 1);
if (cart[cartIndex].extrasQuantities) {
cart[cartIndex].extrasQuantities.splice(extraIndex, 1);
}
updateCartDisplay();
}
function removeItem(index) {
cart.splice(index, 1);
updateCartDisplay();
}
function submitCart() {
let finalOrderHTML = "<h3>Final Order:</h3><ul>";
let totalBill = 0;
cart.forEach(item => {
totalBill += item.itemTotal;
const extras = item.extras.map((extra, i) => {
const extraQuantity = item.extrasQuantities ? item.extrasQuantities[i] || 1 : 1;
const extraTotal = extrasPrices[extra] * extraQuantity;
totalBill += extraTotal;
return `${extra} (x${extraQuantity}) - $${extraTotal.toFixed(2)}`;
}).join(', ');
finalOrderHTML += `<li>
${item.name} (x${item.quantity}) - $${item.itemTotal.toFixed(2)}
<br>Extras: ${extras}
<br>Instructions: ${item.instructions || "None"}
</li>`;
});
finalOrderHTML += `</ul><p><strong>Total Bill: $${totalBill.toFixed(2)}</strong></p>`;
document.getElementById('final-order').innerHTML = finalOrderHTML;
alert("Your final order has been submitted!");
}
</script>
"""
# Authentication and Navigation Logic
def authenticate_user(email, password):
if check_credentials(email, password):
return gr.update(visible=False), gr.update(visible=True), ""
else:
return gr.update(visible=True), gr.update(visible=False), "Invalid email or password. Try again."
def navigate_to_signup():
return gr.update(visible=False), gr.update(visible=True)
def create_account(name, phone, email, password):
if save_user(name, phone, email, password):
return "Account created successfully! You can now log in.", gr.update(visible=True), gr.update(visible=False)
else:
return "Email already exists. Try logging in.", gr.update(visible=False), gr.update(visible=True)
def navigate_to_login():
return gr.update(visible=True), gr.update(visible=False)
# Gradio App
def app():
with gr.Blocks() as demo:
# Login Page
with gr.Column(visible=True) as login_section:
gr.Markdown("# Login Page")
login_email = gr.Textbox(label="Email", placeholder="Enter your email")
login_password = gr.Textbox(label="Password", placeholder="Enter your password", type="password")
login_error = gr.Label("")
login_button = gr.Button("Login")
go_to_signup = gr.Button("Create an Account")
# Signup Page
with gr.Column(visible=False) as signup_section:
gr.Markdown("# Signup Page")
signup_name = gr.Textbox(label="Name", placeholder="Enter your full name")
signup_phone = gr.Textbox(label="Phone", placeholder="Enter your phone number")
signup_email = gr.Textbox(label="Email", placeholder="Enter your email")
signup_password = gr.Textbox(label="Password", placeholder="Enter your password", type="password")
signup_message = gr.Label("")
signup_button = gr.Button("Sign Up")
go_to_login = gr.Button("Back to Login")
# Menu Page
with gr.Column(visible=False) as menu_section:
gr.Markdown("### Menu Page (Accessible Only After Login)")
# View Cart Button (Top Position)
view_cart_button_top = gr.Button("View Cart")
# Radio button for selecting preference
selected_preference = gr.Radio(
choices=["All", "Vegetarian", "Halal/Non-Veg", "Guilt Free"],
value="All",
label="Choose a Preference",
)
empty_div = gr.HTML('<div style="height: 20px;"></div>')
# Output area for menu items
menu_output = gr.HTML(value=filter_menu("All"))
# View Cart Button (Original Position)
view_cart_button_bottom = gr.Button("View Cart")
empty_div = gr.HTML('<div style="height: 300px;"></div>')
# Modal window
modal_window = gr.HTML("""
<div id="modal" style="display: none; position: fixed; background: white; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); padding: 20px; z-index: 1000;">
<div style="text-align: right;">
<button onclick="closeModal()" style="background: none; border: none; font-size: 18px; cursor: pointer;">×</button>
</div>
<img id="modal-image" style="width: 100%; height: 300px; border-radius: 8px; margin-bottom: 20px;" />
<h2 id="modal-name"></h2>
<p id="modal-description"></p>
<p id="modal-price"></p>
<!-- Biryani Extras -->
<label for="biryani-extras"><strong>Add-ons :</strong></label>
<div id="biryani-extras-options" style="display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0;">
<label><input type="checkbox" name="biryani-extra" value="Thums up" /> Thums up + $2.00</label>
<label><input type="checkbox" name="biryani-extra" value="Sprite" /> Sprite + $2.00</label>
<label><input type="checkbox" name="biryani-extra" value="Extra Raitha" /> Extra Raitha + $1.00</label>
<label><input type="checkbox" name="biryani-extra" value="Extra Salan" /> Extra Salan + $2.00</label>
<label><input type="checkbox" name="biryani-extra" value="Extra Onion & Lemon" /> Extra Onion & Lemon + $2.00</label>
<label><input type="checkbox" name="biryani-extra" value="Chilli Chicken" /> Chilli Chicken + $14.00</label>
<label><input type="checkbox" name="biryani-extra" value="Veg Manchurian" /> Veg Manchurian + $12.00</label>
</div>
<!-- Quantity and Special Instructions -->
<label for="quantity">Quantity:</label>
<input type="number" id="quantity" value="1" min="1" style="width: 50px;" />
<br><br>
<textarea id="special-instructions" placeholder="Add your special instructions here..." style="width: 100%; height: 60px;"></textarea>
<br><br>
<!-- Add to Cart Button -->
<button style="background-color: #28a745; color: white; border: none; padding: 10px 20px; font-size: 14px; border-radius: 5px; cursor: pointer;" onclick="addToCart()">Add to Cart</button>
</div>
""")
# Update menu dynamically based on preference
selected_preference.change(filter_menu, inputs=[selected_preference], outputs=[menu_output])
# Layout
gr.Row(view_cart_button_top) # View Cart button at the top
gr.Row([selected_preference])
gr.Row(menu_output)
gr.Row(view_cart_button_bottom) # View Cart button at the bottom
gr.Row(modal_window)
gr.HTML(modal_and_cart_js)
# Cart & Final Order Page
with gr.Column(visible=False) as cart_section:
gr.Markdown("### Cart & Final Order Page")
# Floating cart display
cart_output = gr.HTML(value="Your cart is empty.", elem_id="floating-cart")
# Final order display
final_order_output = gr.HTML(value="", elem_id="final-order")
# Button to navigate back to Menu Page
back_to_menu_button = gr.Button("Back to Menu")
gr.Row(cart_output)
gr.Row(final_order_output)
# Button Bindings
# Login Button
login_button.click(
lambda email, password: (gr.update(visible=False), gr.update(visible=True), "") if check_credentials(email, password) else (gr.update(), gr.update(), "Invalid email or password."),
inputs=[login_email, login_password],
outputs=[login_section, menu_section, login_error],
)
# Signup Button
signup_button.click(
lambda name, phone, email, password: ("Signup successful! Please login.", gr.update(visible=True), gr.update(visible=False)) if save_user(name, phone, email, password) else ("Email already exists.", gr.update(visible=False), gr.update(visible=True)),
inputs=[signup_name, signup_phone, signup_email, signup_password],
outputs=[signup_message, login_section, signup_section],
)
# Navigate to Signup Page
go_to_signup.click(
lambda: (gr.update(visible=False), gr.update(visible=True)),
outputs=[login_section, signup_section],
)
# Navigate Back to Login Page
go_to_login.click(
lambda: (gr.update(visible=True), gr.update(visible=False)),
outputs=[login_section, signup_section],
)
# Navigate to Cart Page (Both Buttons Use the Same Logic)
view_cart_button_top.click(
lambda: (gr.update(visible=False), gr.update(visible=True)),
outputs=[menu_section, cart_section],
)
view_cart_button_bottom.click(
lambda: (gr.update(visible=False), gr.update(visible=True)),
outputs=[menu_section, cart_section],
)
# Navigate Back to Menu Page
back_to_menu_button.click(
lambda: (gr.update(visible=True), gr.update(visible=False)),
outputs=[menu_section, cart_section],
)
return demo
if __name__ == "__main__":
app().launch() |