Spaces:
Sleeping
Sleeping
File size: 9,431 Bytes
5f73f37 6b91e96 5f73f37 61b0b45 5f73f37 1ba64c3 5f73f37 1ba64c3 6b91e96 5f73f37 1ba64c3 bb6f536 5f73f37 1ba64c3 6b91e96 0257163 6b91e96 5f73f37 bb6f536 5f73f37 fa5839b 4056770 5f73f37 fa5839b bb6f536 61b0b45 4056770 5f73f37 61b0b45 9827cca bb6f536 9827cca 61b0b45 bb6f536 9827cca bb6f536 9827cca 61b0b45 1ba64c3 61b0b45 2da39c0 61b0b45 1ba64c3 2da39c0 61b0b45 2da39c0 61b0b45 92b4064 61b0b45 7b03e9e 0379c36 61b0b45 0379c36 7b03e9e 0379c36 2da39c0 92b4064 2da39c0 61b0b45 2da39c0 7b03e9e 0379c36 92b4064 61b0b45 2da39c0 61b0b45 1ba64c3 61b0b45 2da39c0 61b0b45 2da39c0 61b0b45 1ba64c3 92b4064 2da39c0 92b4064 61b0b45 92b4064 c5bfad8 a74ea7c c5bfad8 a74ea7c c5bfad8 a74ea7c c5bfad8 92b4064 9df7166 2da39c0 5f73f37 1ba64c3 6b91e96 1ba64c3 5f73f37 bb6f536 5f73f37 1ba64c3 5f73f37 1ba64c3 5f73f37 1ba64c3 5f73f37 03b3774 bb6f536 61b0b45 1ba64c3 4676698 03b3774 5f73f37 1ba64c3 0516686 1ba64c3 bb6f536 1ba64c3 67eb455 6b91e96 d7243bb |
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 |
let conversation = [
{ role: 'bot', message: 'Hi there! I\'m Chef Bot! May I know your name?' }
];
let selectedIngredients = [];
const elements = {
chatMessages: document.getElementById('chatMessages'),
userInput: document.getElementById('userInput')
};
function addMessage(role, message) {
if (!elements.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;
elements.chatMessages.appendChild(messageDiv);
elements.chatMessages.scrollTop = elements.chatMessages.scrollHeight;
console.log(Added ${role} message: ${message});
}
function sendMessage() {
const userInput = elements.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' },
{ text: 'Both', class: 'gray' }
];
} else if (lastMessage.includes('vegetarian') || lastMessage.includes('non-vegetarian') || lastMessage.includes('both')) {
botResponse = Great choice! 🍽️ These are the available ingredients for ${lastMessage}:;
fetchIngredients(lastMessage);
return;
}
addMessage('bot', botResponse);
if (options.length > 0) {
displayOptions(options);
}
}
function fetchIngredients(dietaryPreference) {
fetch('/get_ingredients', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ dietary_preference: dietaryPreference })
})
.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', 'Great choice! These are available ingredients:');
displayIngredientsList(ingredients);
displaySelectedIngredients();
console.log(Ingredients fetched for ${dietaryPreference}:, ingredients);
}
})
.catch(error => {
addMessage('bot', Error: Unable to connect to the ingredient database. ${error.message});
});
}
function displayIngredientsList(ingredients) {
if (!elements.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';
elements.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 || '/static/placeholder.png'; // Use local placeholder if no image_url
img.alt = ingredient.name;
img.style.width = '80px';
img.style.height = '80px';
img.style.objectFit = 'cover';
img.style.borderRadius = '5px';
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 displaySelectedIngredients() {
if (!elements.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';
elements.chatMessages.appendChild(selectedArea);
} else {
selectedArea.innerHTML = '';
}
selectedIngredients.forEach(ingredient => {
const div = document.createElement('div');
div.style.display = 'flex';
div.style.alignItems = 'center';
div.style.margin = '5px 0';
const nameSpan = document.createElement('span');
nameSpan.textContent = ingredient.name;
nameSpan.style.flex = '1';
const removeButton = document.createElement('button');
removeButton.innerHTML = '✖'; // Unicode for "X" symbol
removeButton.onclick = () => {
selectedIngredients = selectedIngredients.filter(item => item.name !== ingredient.name);
displaySelectedIngredients();
};
removeButton.style.marginLeft = '10px';
removeButton.style.padding = '2px 8px';
removeButton.style.backgroundColor = '#000000'; // Black background to match image
removeButton.style.color = 'white'; // White "X" to match image
removeButton.style.border = 'none';
removeButton.style.borderRadius = '5px';
removeButton.style.cursor = 'pointer';
removeButton.style.fontSize = '16px'; // Adjust size for visibility
removeButton.style.lineHeight = '1'; // Ensure "X" is centered
div.appendChild(nameSpan);
div.appendChild(removeButton);
selectedArea.appendChild(div);
});
// Add Send button below selected ingredients
const sendButton = document.createElement('button');
sendButton.textContent = 'Send';
sendButton.className = 'send-button';
sendButton.onclick = sendSelectedIngredients;
selectedArea.appendChild(sendButton);
}
function displayOptions(options) {
if (!elements.chatMessages) {
console.error('Chat messages container not found for options!');
return;
}
const optionsDiv = document.createElement('div');
optionsDiv.className = 'options-container';
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 });
handleResponse(opt.text);
};
optionsDiv.appendChild(button);
});
elements.chatMessages.appendChild(optionsDiv);
const backButton = document.createElement('button');
backButton.textContent = 'Go Back';
backButton.className = 'option-button';
backButton.onclick = () => {
const userName = conversation.length > 1 ? conversation[1].message : 'User';
conversation = [{ role: 'bot', message: Hi there! I'm Chef Bot! May I know your name? }, { role: 'user', message: userName }, { role: 'bot', message: Nice to meet you, ${userName}! 😊 Let's create your perfect meal! What type of food would you prefer? }];
selectedIngredients = [];
elements.chatMessages.innerHTML = '';
conversation.forEach(msg => addMessage(msg.role, msg.message));
displayOptions([
{ text: 'Vegetarian', class: 'green' },
{ text: 'Non-Vegetarian', class: 'red' },
{ text: 'Both', class: 'gray' }
]);
};
optionsDiv.appendChild(backButton);
}
// Function to handle sending selected ingredients
function sendSelectedIngredients() {
if (selectedIngredients.length === 0) {
addMessage('bot', 'Please select at least one ingredient before sending!');
return;
}
const ingredientsList = selectedIngredients.map(ing => ing.name).join(', ');
addMessage('user', Selected ingredients: ${ingredientsList});
addMessage('bot', Great! I’ll suggest a recipe with ${ingredientsList}. How about a yogurt-based curry with onions and tomatoes? Let me know if you'd like to adjust!);
selectedIngredients = []; // Reset after sending
displaySelectedIngredients(); // Update the display
}
document.getElementById('userInput').addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
sendMessage();
}
});
console.log('Script loaded successfully');
|