-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathchatbees_script.js
432 lines (373 loc) · 12.3 KB
/
chatbees_script.js
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
(function () {
const getElementById = (id) => document.getElementById(id);
const [aid, namespaceName, collectionName] = [
"chatbeesAccountID",
"chatbeesNamespaceName",
"chatbeesCollectionName",
]
.map(getElementById)
.map((element) => element?.value?.trim());
if (!aid || !collectionName) {
window.alert("Please set accountId and collection name.");
return;
}
if (!namespaceName) {
window.alert("The namespace name should not be empty.");
return;
}
const [
chatButtonElement,
chatPopupElement,
chatAreaElement,
userMsgElement,
clearBtnElement,
closeBtnElement,
sendMessageBtnElement,
] = [
"chatbeesFloatBtn",
"chatbeesPopup",
"chatbeesChatArea",
"chatbeesUserInput",
"chatbeesClearBtn",
"chatbeesCloseBtn",
"chatbeesSendMessageBtn",
].map(getElementById);
const [
feedbackArea,
feedbackCloseBtn,
emailInput,
feedbackTextarea,
submitFeedbackBtn,
feedbackMask,
] = [
"chatbeesFeedbackArea",
"chatbeesFeedbackCloseBtn",
"chatbeesEmailInput",
"chatbeesFeedbackTextArea",
"chatbeesSubmitFeedbackButton",
"chatbeesFeedbackMask",
].map(getElementById);
const spinner = `<svg class="animate-spin h-5 w-5 text-blue-600" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
</svg>`;
if (!chatPopupElement || !chatAreaElement || !userMsgElement) {
window.alert(
"Please put chatbeesPopup, chatbeesChatArea and chatbeesUserInput elements in your HTML.",
);
return;
}
const localStorageConversationIdKey = "chatBeesConversationId";
let conversationId = localStorage.getItem(localStorageConversationIdKey);
const localStorageHistoryKey = "chatBeesHistoryMessages";
let historyMessages;
const resetMessageHistory = () => {
conversationId = undefined;
localStorage.removeItem(localStorageConversationIdKey);
historyMessages = [];
localStorage.setItem(localStorageHistoryKey, JSON.stringify([]));
};
try {
historyMessages = JSON.parse(localStorage.getItem(localStorageHistoryKey));
if (!Array.isArray(historyMessages)) {
resetMessageHistory();
}
} catch {
resetMessageHistory();
}
let requestId;
const showFeedback = () => {
feedbackArea.classList.remove("hidden");
emailInput.focus();
};
const hideFeedback = () => {
feedbackArea.classList.add("hidden");
userMsgElement.focus();
};
const appendUserMessage = (userMsg) => {
if (!userMsg) {
return;
}
const userMsgDiv = document.createElement("div");
userMsgDiv.textContent = userMsg;
userMsgDiv.classList.add("chatbees-message", "chatbees-user");
chatAreaElement.appendChild(userMsgDiv);
chatAreaElement.scrollTop = chatAreaElement.scrollHeight;
};
const botMessages = {
greeting: "Hello! How can I assist you?",
generateEchoMessage(userMsg) {
return `Test echo: ${userMsg}`;
},
generateErrorMessage({ message }) {
return `Something went wrong: ${message}`;
},
};
const createBotMsgDiv = ({ answer }, additionalClasses) => {
const botMsgClasses = ["chatbees-message", "chatbees-bot"];
const botMsgDiv = document.createElement("div");
botMsgDiv.classList.add(...botMsgClasses, ...additionalClasses);
const botMsgPlain = document.createElement("div");
botMsgPlain.classList.add("text-justify");
botMsgPlain.innerHTML = answer.replaceAll('\n', '<br/>');
botMsgDiv.appendChild(botMsgPlain);
return botMsgDiv;
};
const createBotMsgSources = ({ refs }) => {
const botMsgSources = document.createElement("div");
_.uniqBy(
refs?.filter((ref) => ref.doc_name?.match(/https?:\/\//)),
"doc_name",
)
.slice(0, 3)
.forEach(({ doc_name, sample_text }) => {
const linkDiv = document.createElement("div");
linkDiv.classList.add("chatbees-link");
const link = document.createElement("a");
link.classList.add("flex");
link.href = doc_name;
link.target = "_blank";
link.innerHTML = `<span class="truncate" title="${sample_text}">${doc_name}</span><img src="images/pop-out-outline.svg" alt="Link" class="chatbees-btn-icon inline">`;
linkDiv.appendChild(link);
botMsgSources.appendChild(linkDiv);
});
return botMsgSources;
};
const createFeedbackSender = ({ request_id, thumb_down, text_feedback, email }) =>
() => {
const feedbackUrl = `https://${aid}.us-west-2.aws.chatbees.ai/feedback/create_or_update`;
const feedbackData = {
namespace_name: namespaceName,
collection_name: collectionName,
request_id,
thumb_down,
text_feedback,
unregistered_user: {
source: "WEBSITE",
email: email,
},
};
return fetch(feedbackUrl, {
method: "POST",
headers: {
// If the collection does not allow public read, please add your api-key here.
// "api-key": "Replace with your API Key",
"Content-Type": "application/json",
},
body: JSON.stringify(feedbackData),
});
};
const createReactionButtons = ({ request_id }) => {
const botReactionButtons = document.createElement("div");
const buttonClasses = ("inline-flex items-center justify-center bg-white text-gray-500 " +
"shadow ring-1 ring-inset ring-gray-300 transition-all duration-150 rounded-lg p-1 " +
"hover:bg-blue-50 hover:text-blue-700 hover:border-blue-500").split(" ");
const buttonDefinitions = [
{
icon: "images/thumbs-up-outline.svg",
ariaLabel: "Thumbs up",
action: createFeedbackSender({
request_id,
thumb_down: false,
}),
},
{
icon: "images/thumbs-down-outline.svg",
ariaLabel: "Thumbs down",
action: createFeedbackSender({
request_id,
thumb_down: true,
}),
},
{
icon: "images/envelope-outline.svg",
ariaLabel: "Leave your email and feedback",
action: () => {
if (feedbackArea.classList.contains("hidden")) {
requestId = request_id;
showFeedback();
} else {
hideFeedback();
}
},
},
];
buttonDefinitions.forEach(({ icon, ariaLabel, action }) => {
const button = document.createElement("button");
button.classList.add(...buttonClasses);
button.type = "button";
button.innerHTML = `<img src="${icon}" alt="${ariaLabel}" aria-label="${ariaLabel}" class="chatbees-btn-icon inline">`;
button.addEventListener("click", action);
botReactionButtons.appendChild(button);
});
return botReactionButtons;
};
const appendBotMessage = (
botMsg,
addReactionButtons = false,
...additionalClasses
) => {
const botMsgDiv = createBotMsgDiv(botMsg, additionalClasses);
chatAreaElement.appendChild(botMsgDiv);
if (botMsg.refs?.length) {
const botSourceDiv = document.createElement("div");
botSourceDiv.classList.add("py-4");
botSourceDiv.innerHTML = `<div><label class="chatbees-section-label">Sources: </label></div>`;
botSourceDiv.appendChild(createBotMsgSources(botMsg));
botMsgDiv.appendChild(botSourceDiv);
}
if (addReactionButtons) {
const botReactionButtons = createReactionButtons(botMsg);
botMsgDiv.appendChild(botReactionButtons);
}
chatAreaElement.scrollTop = chatAreaElement.scrollHeight;
};
const restoreHistoryMessagesAndGreet = () => {
historyMessages.forEach(({ userMsg, botMsg }) => {
appendUserMessage(userMsg);
appendBotMessage(botMsg, true);
});
appendBotMessage({ answer: botMessages.greeting });
hideFeedback();
};
restoreHistoryMessagesAndGreet();
const addItemToHistory = (historyItem) => {
const maxMessages = 10;
historyMessages.push(historyItem);
if (historyMessages.length > maxMessages) {
historyMessages = historyMessages.slice(-maxMessages);
}
localStorage.setItem(
localStorageHistoryKey,
JSON.stringify(historyMessages),
);
};
const chatbeesSendMessage = () => {
const userMsg = userMsgElement.value.trim();
if (!userMsg) {
return;
}
appendUserMessage(userMsg);
userMsgElement.value = "";
userMsgElement.focus();
const thinkMsg = document.createElement("div");
thinkMsg.classList.add("chatbees-message", "chatbees-bot");
thinkMsg.innerHTML = `<span class="inline-flex items-center">${spinner}<span class="ml-2">Bees are thinking...</span></span>`;
chatAreaElement.appendChild(thinkMsg);
chatAreaElement.scrollTop = chatAreaElement.scrollHeight;
if (collectionName === "collectionName") {
chatAreaElement.removeChild(thinkMsg);
appendBotMessage({ answer: botMessages.generateEchoMessage(userMsg) }, true);
return;
}
const apiUrl = "https://" + aid + ".us-west-2.aws.chatbees.ai/docs/ask";
const data = {
namespace_name: namespaceName,
collection_name: collectionName,
question: userMsg,
};
if (conversationId) {
data.conversation_id = conversationId;
}
if (historyMessages.length > 0) {
data.history_messages = historyMessages.reduce(
(acc, { userMsg, botMsg }) => [...acc, [userMsg, botMsg.answer]],
[],
);
}
const jsonData = JSON.stringify(data);
fetch(apiUrl, {
method: "POST",
headers: {
// If the collection does not allow public read, please add your api-key here.
// "api-key": "Replace with your API Key",
"Content-Type": "application/json",
},
body: jsonData,
})
.then((response) => {
if (response.ok) {
return response.json();
}
throw new Error(
`status: ${response.status}, error: ${response.statusText}`,
);
})
.then((botMsg) => {
chatAreaElement.removeChild(thinkMsg);
if (
botMsg.conversation_id &&
conversationId !== botMsg.conversation_id
) {
conversationId = botMsg.conversation_id;
localStorage.setItem(localStorageConversationIdKey, conversationId);
}
appendBotMessage(botMsg, true);
addItemToHistory({ userMsg, botMsg });
})
.catch((error) => {
console.error("Error:", error);
chatAreaElement.removeChild(thinkMsg);
appendBotMessage(
{ answer: botMessages.generateErrorMessage(error) },
false,
"chatbees-error",
);
});
};
chatButtonElement?.addEventListener("click", () => {
chatPopupElement.style.display = "flex";
userMsgElement.focus();
});
clearBtnElement?.addEventListener("click", () => {
chatAreaElement.innerHTML = "";
userMsgElement.value = "";
userMsgElement.focus();
resetMessageHistory();
restoreHistoryMessagesAndGreet();
});
closeBtnElement?.addEventListener("click", () => {
chatPopupElement.style.display = "none";
});
feedbackCloseBtn.addEventListener("click", hideFeedback);
submitFeedbackBtn.addEventListener("click", async () => {
const email = emailInput.value.trim();
const text = feedbackTextarea.value.trim();
const updateFormState = (sending) => {
emailInput.disabled = sending;
feedbackTextarea.disabled = sending;
submitFeedbackBtn.disabled = sending;
submitFeedbackBtn.innerHTML = sending ? spinner : "Submit";
if (sending) {
feedbackMask.classList.remove("hidden");
} else {
feedbackMask.classList.add("hidden");
}
};
if (email) {
updateFormState(true);
await createFeedbackSender({
request_id: requestId,
thumb_down: false,
text_feedback: text,
email,
})();
updateFormState(false);
hideFeedback();
}
});
sendMessageBtnElement?.addEventListener("click", () => {
chatbeesSendMessage();
});
userMsgElement.addEventListener("keyup", (event) => {
if (
event.key === "Enter" &&
!event.shiftKey &&
!event.ctrlKey &&
!event.altKey &&
!event.metaKey
) {
chatbeesSendMessage();
}
});
})();