File size: 9,280 Bytes
5f73f37
6b91e96
5f73f37
1d042ee
5f73f37
 
 
6b91e96
 
 
 
5f73f37
 
 
 
 
6b91e96
5f73f37
 
 
6b91e96
 
 
 
 
 
 
 
 
 
0257163
6b91e96
7efbd6f
5f73f37
 
 
 
1d042ee
5f73f37
 
1d042ee
7efbd6f
 
5f73f37
fa5839b
4056770
7efbd6f
56df0a0
 
7efbd6f
 
1d042ee
56df0a0
 
7efbd6f
 
4056770
5f73f37
 
 
 
 
1d042ee
04b9483
 
 
 
 
1d042ee
 
 
04b9483
 
 
 
1d042ee
04b9483
1d042ee
04b9483
1d042ee
 
56df0a0
 
1d042ee
 
 
 
 
9827cca
1d042ee
 
9827cca
1d042ee
 
 
7efbd6f
1d042ee
7efbd6f
1d042ee
 
04b9483
1d042ee
7efbd6f
1d042ee
 
7efbd6f
56df0a0
1d042ee
 
 
 
 
 
 
 
9827cca
1d042ee
 
 
04b9483
1d042ee
 
 
56df0a0
1d042ee
56df0a0
1d042ee
 
 
56df0a0
 
1d042ee
9827cca
 
1d042ee
 
 
 
56df0a0
2da39c0
 
1d042ee
2da39c0
1d042ee
 
 
92b4064
1d042ee
 
0379c36
1d042ee
0379c36
 
 
2da39c0
92b4064
1d042ee
 
 
 
 
2da39c0
 
 
1d042ee
 
2da39c0
1d042ee
 
2da39c0
1d042ee
92b4064
7efbd6f
 
 
 
 
 
 
 
 
2da39c0
 
5f73f37
56df0a0
6b91e96
 
 
 
7efbd6f
 
1d042ee
5f73f37
 
 
 
 
 
 
1d042ee
5f73f37
7efbd6f
5f73f37
1d042ee
5f73f37
 
 
7efbd6f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67eb455
6b91e96
1d042ee
 
6b91e96
 
7efbd6f
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
let conversation = [
    { role: 'bot', message: 'Hi there! I\'m Chef Bot! May I know your name?' }
];
let selectedItems = [];

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 {
        addMessage('bot', 'Please type something to continue! 😊');
    }
}

function handleResponse(userInput) {
    const lowerInput = userInput.toLowerCase();
    let botResponse = '';

    if (conversation.length === 2) {
        botResponse = `Nice to meet you, ${userInput}! 😊 What type of food would you like to explore today?`;
        displayOptions([
            { text: 'Vegetarian', class: 'green' },
            { text: 'Non-Vegetarian', class: 'red' },
            { text: 'Both', class: 'gray' }
        ]);
    } else if (lowerInput === 'vegetarian' || lowerInput === 'non-vegetarian' || lowerInput === 'both') {
        botResponse = `Awesome! Fetching some ${lowerInput} menu items for you...`;
        addMessage('bot', botResponse);
        fetchMenuItems(lowerInput);
        return;
    } else {
        botResponse = `Searching for "${userInput}"...`;
        addMessage('bot', botResponse);
        suggestItems(userInput);
        return;
    }

    addMessage('bot', botResponse);
}

function fetchMenuItems(dietaryPreference) {
    fetch('/get_menu_items', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({ dietary_preference: dietaryPreference })
    })
        .then(response => response.json())
        .then(data => {
            if (data.error) {
                addMessage('bot', `Oops! Couldn’t fetch ${dietaryPreference} items: ${data.error}. Try again?`);
            } else if (data.menu_items.length > 0) {
                addMessage('bot', `Here are some ${dietaryPreference} menu items:`);
                displayItemsList(data.menu_items, 'menuItemsList');
            } else {
                addMessage('bot', `No ${dietaryPreference} items found. Try searching for something specific!`);
            }
            console.log(`Fetched menu items for ${dietaryPreference}:`, data.menu_items);
        })
        .catch(error => {
            addMessage('bot', `Error connecting to Salesforce: ${error.message}. Retrying...`);
            setTimeout(() => fetchMenuItems(dietaryPreference), 2000);
        });
}

function suggestItems(searchTerm) {
    fetch('/suggest_items', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({ search_term: searchTerm })
    })
        .then(response => response.json())
        .then(data => {
            if (data.error) {
                addMessage('bot', `Couldn’t find anything for "${searchTerm}": ${data.error}. Try another term?`);
            } else if (data.suggestions.length > 0) {
                addMessage('bot', `Found these suggestions for "${searchTerm}":`);
                displayItemsList(data.suggestions, 'suggestionsList');
            } else {
                addMessage('bot', `No matches for "${searchTerm}". Try "chicken" or "paneer"?`);
            }
            console.log(`Suggestions for ${searchTerm}:`, data.suggestions);
        })
        .catch(error => {
            addMessage('bot', `Error fetching suggestions: ${error.message}. Retrying...`);
            setTimeout(() => suggestItems(searchTerm), 2000);
        });
}

function fetchItemDetails(itemName) {
    fetch('/get_item_details', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({ item_name: itemName })
    })
        .then(response => response.json())
        .then(data => {
            if (data.error) {
                addMessage('bot', `Sorry, couldn’t get details for "${itemName}": ${data.error}. Check the name or try another item!`);
            } else {
                const details = data.item_details;
                selectedItems.push(details);
                addMessage('bot', `Added "${itemName}"! Here are the details:`);
                displaySelectedItems();
                console.log(`Details for ${itemName}:`, details);
            }
        })
        .catch(error => {
            addMessage('bot', `Error fetching details for "${itemName}": ${error.message}. Retrying...`);
            setTimeout(() => fetchItemDetails(itemName), 2000);
        });
}

function displayItemsList(items, containerId) {
    const container = document.getElementById(containerId);
    if (!container) {
        console.error(`${containerId} container not found!`);
        addMessage('bot', 'Display issue. Please try again!');
        return;
    }
    container.innerHTML = '';

    items.forEach(item => {
        const itemDiv = document.createElement('div');
        itemDiv.className = containerId === 'menuItemsList' ? 'ingredient-item' : 'suggestion-item';
        const img = document.createElement('img');
        img.src = item.image_url || 'https://via.placeholder.com/60';
        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';
        button.onclick = () => fetchItemDetails(item.name);
        itemDiv.appendChild(img);
        itemDiv.appendChild(name);
        itemDiv.appendChild(button);
        container.appendChild(itemDiv);
    });
}

function displaySelectedItems() {
    const selectedArea = document.getElementById('itemDetails');
    if (!selectedArea) {
        console.error('Item details container not found!');
        return;
    }
    selectedArea.innerHTML = '';

    if (selectedItems.length === 0) {
        selectedArea.innerHTML = '<div>No items selected yet!</div>';
    } else {
        selectedItems.forEach(item => {
            const div = document.createElement('div');
            div.innerHTML = `<strong>${item.name}</strong><br>Description: ${item.description}<br>Ingredients: ${item.ingredients}`;
            selectedArea.appendChild(div);
        });
    }
}

function displayOptions(options) {
    const chatMessages = document.getElementById('chatMessages');
    if (!chatMessages) {
        console.error('Chat messages container not found for options!');
        return;
    }
    const optionsDiv = document.createElement('div');
    optionsDiv.style.marginTop = '10px';

    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);
    });

    const backButton = document.createElement('button');
    backButton.textContent = 'Go Back';
    backButton.className = 'option-button';
    backButton.style.marginTop = '10px';
    backButton.onclick = () => resetConversation();
    optionsDiv.appendChild(document.createElement('br'));
    optionsDiv.appendChild(backButton);

    chatMessages.appendChild(optionsDiv);
}

function resetConversation() {
    const userName = conversation.length > 1 ? conversation[1].message : 'Friend';
    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}! 😊 What type of food would you like to explore today?` }
    ];
    selectedItems = [];
    const chatMessages = document.getElementById('chatMessages');
    chatMessages.innerHTML = '';
    conversation.forEach(msg => addMessage(msg.role, msg.message));
    displayOptions([
        { text: 'Vegetarian', class: 'green' },
        { text: 'Non-Vegetarian', class: 'red' },
        { text: 'Both', class: 'gray' }
    ]);
    document.getElementById('suggestionsList').innerHTML = '';
    document.getElementById('menuItemsList').innerHTML = '';
    displaySelectedItems();
}

document.getElementById('userInput').addEventListener('keypress', (e) => {
    if (e.key === 'Enter') sendMessage();
});

console.log('Chef Bot script loaded successfully!');