Spaces:
Build error
Build error
File size: 20,882 Bytes
5f73f37 0c9f1f3 5f73f37 2da39c0 0c9f1f3 5f73f37 6b91e96 5f73f37 6b91e96 5f73f37 6b91e96 8170b7e 6b91e96 5f73f37 861bf89 d5aac24 6fa3c1c d5aac24 861bf89 d5aac24 6fa3c1c d5aac24 861bf89 d5aac24 861bf89 d5aac24 6fa3c1c 9e8476f d5aac24 9e8476f 8389404 9e8476f 8389404 9e8476f 8389404 8dd1e09 9e8476f 8dd1e09 9e8476f 8dd1e09 9e8476f 8dd1e09 9e8476f e8cc7bc 9e8476f 8389404 9e8476f e8cc7bc 9e8476f d66ec0c 9e8476f d66ec0c 9e8476f e8cc7bc 9e8476f e8cc7bc d66ec0c e8cc7bc 43e4cf7 e8cc7bc 9e8476f d66ec0c 8389404 9e8476f a63ba39 9e8476f e8cc7bc 9f10488 3909544 5dba7bb 3909544 5dba7bb 9e8476f e8cc7bc 9f10488 5dba7bb e8cc7bc 9e8476f d5aac24 afb8c72 0c9f1f3 afb8c72 0c9f1f3 2bc942c 0c9f1f3 afb8c72 0c9f1f3 2bc942c 0c9f1f3 450d774 861bf89 2da39c0 861bf89 97b71af 3f7d9d1 2da39c0 4d0eeab 450d774 4d0eeab 0c9f1f3 afb8c72 0c9f1f3 97b71af 0c9f1f3 6fa3c1c 861bf89 6fa3c1c 861bf89 97b71af 861bf89 578ff22 6b91e96 97b71af | 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 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 | let conversation = [
{ role: 'bot', message: "Hi there! I'm Chef Bot! May I know your name?" }
];
let selectedIngredients = [];
let selectedMenuItem = null;
let cart = [];
function addMessage(role, message) {
const chatMessages = document.getElementById('chatMessages');
if (!chatMessages) {
console.error('Chat messages container not found!');
return;
}
const messageDiv = document.createElement('div');
messageDiv.className = role === 'bot' ? 'bot-message' : 'user-message';
messageDiv.textContent = message;
chatMessages.appendChild(messageDiv);
chatMessages.scrollTop = chatMessages.scrollHeight;
console.log(`Added ${role} message: ${message}`);
}
function sendMessage() {
const userInput = document.getElementById('userInput');
if (!userInput) {
console.error('User input field not found!');
return;
}
const message = userInput.value.trim();
if (message) {
addMessage('user', message);
conversation.push({ role: 'user', message: message });
userInput.value = '';
setTimeout(() => handleResponse(message), 500);
} else {
console.warn('Empty message!');
}
}
function handleResponse(userInput) {
const lastMessage = conversation[conversation.length - 1].message.toLowerCase();
let botResponse = '';
let options = [];
if (conversation.length === 2) { // After name input
botResponse = `Nice to meet you, ${userInput}! 😊 Let's create your perfect meal! What type of food would you prefer?`;
options = [
{ text: 'Vegetarian', class: 'green' },
{ text: 'Non-Vegetarian', class: 'red' }
];
}else if (lastMessage.includes('non-vegetarian')) {
conversation.push({ role: 'user', message: 'Non-Vegetarian' });
console.log("Food preference selected: Non-Vegetarian");
botResponse = 'Great choice! 🍽️ Please select a non-vegetarian option:';
fetchIngredients('non-vegetarian');
return;
}
else if (lastMessage.includes('vegetarian')) {
conversation.push({ role: 'user', message: 'Vegetarian' });
console.log("Food preference selected: Vegetarian");
botResponse = 'Great choice! 🍽️ Here are some vegetarian ingredients:';
fetchIngredients('vegetarian');
return;
} else if (lastMessage.includes('chicken') || lastMessage.includes('beef') || lastMessage.includes('lamb')) {
conversation.push({ role: 'user', message: lastMessage });
console.log(`Non-veg option selected: ${lastMessage}`);
botResponse = `Great! Here are some ${lastMessage} ingredients available:`;
fetchIngredients(lastMessage.toLowerCase());
return;
} else if (lastMessage.includes('yes') && selectedMenuItem) {
botResponse = 'Here are some ingredients to customize your dish:';
handleYesResponse(); // Fetch non-veg ingredients for customization
return;
} else if (lastMessage.includes('no') && selectedMenuItem) {
addToCart(selectedMenuItem);
botResponse = 'Item added to cart! Would you like to order more?';
options = [
{ text: 'Yes', class: 'green' },
{ text: 'No', class: 'red' }
];
selectedMenuItem = null;
}
addMessage('bot', botResponse);
if (options.length > 0) {
displayOptions(options);
}
}
function handleYesResponse() {
const botResponse = 'Here is your selected dish:';
addMessage('bot', botResponse);
// Display the selected menu item (Name, Image, etc.)
// Fetch ingredients for customization (both veg and non-veg)
fetchIngredientsForCustomization('both');
}
function fetchIngredientsForCustomization(foodPreference) {
fetch('/get_ingredients_for_customization', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ dietary_preference: foodPreference })
})
.then(response => response.json())
.then(data => {
if (data.error) {
addMessage('bot', `Sorry, there was an error fetching ingredients: ${data.error}`);
} else {
const ingredients = data.ingredients || [];
addMessage('bot', 'Please select ingredients:');
displayCustomizationIngredients(ingredients);
}
})
.catch(error => {
addMessage('bot', `Error: Unable to connect to the ingredient database. ${error.message}`);
});
}
function displayCustomizationIngredients(ingredients) {
const chatMessages = document.getElementById('chatMessages');
if (!chatMessages) {
console.error('Chat messages container not found for customization ingredients!');
return;
}
// Clear previous ingredient lists and selected area
let ingredientsList = document.querySelector('.customization-ingredients-list');
if (!ingredientsList) {
ingredientsList = document.createElement('div');
ingredientsList.className = 'customization-ingredients-list';
chatMessages.appendChild(ingredientsList);
} else {
ingredientsList.innerHTML = ''; // Clear previous list
}
let selectedArea = document.querySelector('.selected-customization-ingredients');
if (!selectedArea) {
selectedArea = document.createElement('div');
selectedArea.className = 'selected-customization-ingredients';
chatMessages.appendChild(selectedArea);
} else {
selectedArea.innerHTML = ''; // Clear previous selections
}
// Display New Ingredients
ingredients.forEach(ingredient => {
const item = document.createElement('div');
item.className = 'ingredient-item';
const img = document.createElement('img');
img.src = ingredient.image_url || 'https://via.placeholder.com/80';
img.alt = ingredient.name;
const name = document.createElement('div');
name.textContent = ingredient.name;
name.style.textAlign = 'center';
name.style.marginTop = '5px';
name.style.fontSize = '12px';
const button = document.createElement('button');
button.textContent = 'Add';
button.onclick = () => {
// Create the description like "Paneer Biryani with Coriander Powder"
const addedIngredient = ingredient.name;
// Ensure that we don't add the same combination twice
if (!selectedIngredients.some(item => item.name === addedIngredient)) {
selectedIngredients.push({ name: addedIngredient, image_url: ingredient.image_url });
displaySelectedCustomizationIngredients(); // Update selected ingredients display
}
};
item.appendChild(img);
item.appendChild(name);
item.appendChild(button);
ingredientsList.appendChild(item);
});
}
// Display the selected ingredients in a single line
function displaySelectedCustomizationIngredients() {
const chatMessages = document.getElementById('chatMessages');
if (!chatMessages) {
console.error('Chat messages container not found for selected customization ingredients!');
return;
}
let selectedArea = document.querySelector('.selected-customization-ingredients');
if (!selectedArea) {
selectedArea = document.createElement('div');
selectedArea.className = 'selected-customization-ingredients';
chatMessages.appendChild(selectedArea);
} else {
selectedArea.innerHTML = ''; // Clear previous selections
}
// Collect selected ingredients in a single line
const selectedIngredientsText = selectedIngredients.length > 0
? selectedMenuItem.name + " with " + selectedIngredients.map(ingredient => ingredient.name).join(', ')
: "";
// Display the ingredients as a single line
const ingredientsDiv = document.createElement('div');
ingredientsDiv.textContent = selectedIngredientsText;
selectedArea.appendChild(ingredientsDiv);
// Ensure the submit button and custom instructions box appear once and do not disappear
if (!document.querySelector('.submit-customization-button')) {
let submitButton = document.createElement('button');
submitButton.className = 'submit-customization-button';
submitButton.textContent = 'Submit';
submitButton.onclick = submitCustomizationIngredients;
chatMessages.appendChild(submitButton);
// Adding a text area for custom instructions
const textarea = document.createElement('textarea');
textarea.placeholder = 'Enter any special instructions...';
selectedArea.appendChild(textarea);
}
}
function submitCustomizationIngredients() {
// Handle the submission of ingredients and instructions here
console.log("Ingredients submitted:", selectedIngredients);
// You can also handle the custom instructions from the textarea if needed
}
function submitCustomizationIngredients() {
const textarea = document.querySelector('.selected-customization-ingredients textarea');
const instructions = textarea ? textarea.value.trim() : '';
fetch('/submit_customization_ingredients', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ ingredients: selectedIngredients, instructions: instructions })
})
.then(response => response.json())
.then(data => {
if (data.success) {
addMessage('bot', 'Ingredients submitted successfully! Would you like to order more?');
const options = [
{ text: 'Yes', class: 'green' },
{ text: 'No', class: 'red' }
];
displayOptions(options);
} else {
addMessage('bot', 'There was an issue submitting your ingredients. Please try again.');
}
})
.catch(error => {
addMessage('bot', `Error: ${error.message}`);
});
}
function fetchIngredients(foodPreference) {
fetch('/get_ingredients', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ dietary_preference: foodPreference })
})
.then(response => response.json())
.then(data => {
if (data.error) {
addMessage('bot', `Sorry, there was an error fetching ingredients: ${data.error}`);
} else {
const ingredients = data.ingredients || [];
addMessage('bot', 'Please select ingredients:');
displayIngredientsList(ingredients);
displaySelectedIngredients();
}
})
.catch(error => {
addMessage('bot', `Error: Unable to connect to the ingredient database. ${error.message}`);
});
}
function fetchMenuItems(category) {
fetch('/get_menu_items', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ category: category })
})
.then(response => response.json())
.then(data => {
if (data.error) {
addMessage('bot', `Sorry, there was an error fetching menu items: ${data.error}`);
} else {
const menuItems = data.menu_items || [];
addMessage('bot', 'Here are some dishes based on your selection:');
displayMenuItems(menuItems);
}
})
.catch(error => {
addMessage('bot', `Error: Unable to connect to the menu database. ${error.message}`);
});
}
function displayIngredientsList(ingredients) {
const chatMessages = document.getElementById('chatMessages');
if (!chatMessages) {
console.error('Chat messages container not found for ingredients!');
return;
}
let ingredientsList = document.querySelector('.ingredients-list');
if (!ingredientsList) {
ingredientsList = document.createElement('div');
ingredientsList.className = 'ingredients-list';
chatMessages.appendChild(ingredientsList);
} else {
ingredientsList.innerHTML = '';
}
ingredients.forEach(ingredient => {
const item = document.createElement('div');
item.className = 'ingredient-item';
const img = document.createElement('img');
img.src = ingredient.image_url || 'https://via.placeholder.com/80';
img.alt = ingredient.name;
const name = document.createElement('div');
name.textContent = ingredient.name;
name.style.textAlign = 'center';
name.style.marginTop = '5px';
name.style.fontSize = '12px';
const button = document.createElement('button');
button.textContent = 'Add';
button.onclick = () => {
if (!selectedIngredients.some(item => item.name === ingredient.name)) {
selectedIngredients.push(ingredient);
displaySelectedIngredients();
}
};
item.appendChild(img);
item.appendChild(name);
item.appendChild(button);
ingredientsList.appendChild(item);
});
}
function displayMenuItems(menuItems) {
const chatMessages = document.getElementById('chatMessages');
if (!chatMessages) {
console.error('Chat messages container not found for menu items!');
return;
}
let menuItemsList = document.querySelector('.menu-items-list');
if (!menuItemsList) {
menuItemsList = document.createElement('div');
menuItemsList.className = 'menu-items-list';
chatMessages.appendChild(menuItemsList);
} else {
menuItemsList.innerHTML = '';
}
menuItems.forEach(item => {
const menuItem = document.createElement('div');
menuItem.className = 'menu-item';
const img = document.createElement('img');
img.src = item.image_url || 'https://via.placeholder.com/80';
img.alt = item.name;
const name = document.createElement('div');
name.textContent = item.name;
name.style.textAlign = 'center';
name.style.marginTop = '5px';
name.style.fontSize = '12px';
const button = document.createElement('button');
button.textContent = 'Add to Cart';
button.onclick = () => {
selectedMenuItem = item;
addMessage('bot', `World-class selection! Would you like to customize your dish further?`);
const options = [
{ text: 'Yes', class: 'green' },
{ text: 'No', class: 'red' }
];
displayOptions(options);
};
menuItem.appendChild(img);
menuItem.appendChild(name);
menuItem.appendChild(button);
menuItemsList.appendChild(menuItem);
});
}
function displaySelectedIngredients() {
const chatMessages = document.getElementById('chatMessages');
if (!chatMessages) {
console.error('Chat messages container not found for selected ingredients!');
return;
}
let selectedArea = document.querySelector('.selected-ingredients');
if (!selectedArea) {
selectedArea = document.createElement('div');
selectedArea.className = 'selected-ingredients';
chatMessages.appendChild(selectedArea);
} else {
selectedArea.innerHTML = '';
}
selectedIngredients.forEach(ingredient => {
const div = document.createElement('div');
div.textContent = ingredient.name;
selectedArea.appendChild(div);
});
if (selectedIngredients.length > 0) {
let submitButton = document.querySelector('.submit-button');
if (!submitButton) {
submitButton = document.createElement('button');
submitButton.className = 'submit-button';
submitButton.textContent = 'Submit Ingredients';
submitButton.onclick = submitIngredients;
chatMessages.appendChild(submitButton);
}
}
}
function submitIngredients() {
fetch('/submit_ingredients', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ ingredients: selectedIngredients })
})
.then(response => response.json())
.then(data => {
if (data.success) {
// Extract the ingredient names from the selectedIngredients array
const ingredientNames = selectedIngredients.map(ingredient => ingredient.name.toLowerCase()).join(' ');
// Fetch menu items based on ingredient names
fetchMenuItems(ingredientNames);
} else {
addMessage('bot', 'There was an issue submitting your ingredients. Please try again.');
}
})
.catch(error => {
addMessage('bot', `Error: ${error.message}`);
});
}
function fetchMenuItems(ingredientNames) {
fetch('/get_menu_items', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ ingredient_names: ingredientNames })
})
.then(response => response.json())
.then(data => {
if (data.error) {
addMessage('bot', `Sorry, there was an error fetching menu items: ${data.error}`);
} else {
const menuItems = data.menu_items || [];
addMessage('bot', 'Here are some dishes based on your selected ingredients:');
displayMenuItems(menuItems);
}
})
.catch(error => {
addMessage('bot', `Error: Unable to connect to the menu database. ${error.message}`);
});
}
function displayCustomizationInput() {
const chatMessages = document.getElementById('chatMessages');
if (!chatMessages) {
console.error('Chat messages container not found for customization input!');
return;
}
let customizationArea = document.querySelector('.customization-input');
if (!customizationArea) {
customizationArea = document.createElement('div');
customizationArea.className = 'customization-input';
const textarea = document.createElement('textarea');
textarea.placeholder = 'Enter any special instructions...';
const submitButton = document.createElement('button');
submitButton.textContent = 'Submit Instructions';
submitButton.onclick = () => {
const instructions = textarea.value.trim();
if (instructions) {
addMessage('user', instructions);
conversation.push({ role: 'user', message: instructions });
}
addToCart({ ...selectedMenuItem, instructions, ingredients: selectedIngredients });
addMessage('bot', 'Item added to cart! Would you like to order more?');
const options = [
{ text: 'Yes', class: 'green' },
{ text: 'No', class: 'red' }
];
displayOptions(options);
selectedMenuItem = null;
selectedIngredients = [];
};
customizationArea.appendChild(textarea);
customizationArea.appendChild(submitButton);
chatMessages.appendChild(customizationArea);
}
}
function addToCart(item) {
cart.push(item);
console.log('Cart:', cart);
}
function displayOptions(options) {
const chatMessages = document.getElementById('chatMessages');
if (!chatMessages) {
console.error('Chat messages container not found for options!');
return;
}
options.forEach(opt => {
const button = document.createElement('button');
button.textContent = opt.text;
button.className = `option-button ${opt.class}`;
button.onclick = () => {
addMessage('user', opt.text);
conversation.push({ role: 'user', message: opt.text });
chatMessages.innerHTML = '';
conversation.forEach(msg => addMessage(msg.role, msg.message));
setTimeout(() => handleResponse(opt.text), 500);
};
chatMessages.appendChild(button);
});
chatMessages.appendChild(document.createElement('br'));
const backButton = document.createElement('button');
backButton.textContent = 'Go Back';
backButton.className = 'option-button';
backButton.onclick = () => {
conversation.pop();
selectedIngredients = [];
selectedMenuItem = null;
chatMessages.innerHTML = '';
conversation.forEach(msg => addMessage(msg.role, msg.message));
setTimeout(() => handleResponse(conversation[conversation.length - 1].message), 500);
};
chatMessages.appendChild(backButton);
}
document.getElementById('userInput').addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
sendMessage();
}
});
console.log('Script loaded successfully'); |