-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
441 lines (388 loc) · 12.8 KB
/
index.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
433
434
435
436
437
438
439
440
441
const conversationContainer = document.getElementById("conversationContainer");
const conversationMenuContainer = document.querySelector(".left-menu-options");
window.onload = function () {
RetrieveUserData();
};
let currentConversationId = -1; // Default value might need to change
function TogglePopUp() {
const popUpMenu = document.querySelector(".popup-menu");
popUpMenu.classList.toggle("popup-menu-toggle");
}
function toggle() {
const menuBtnToggle = document.querySelector(".toggle-left-menu-button");
menuBtnToggle.classList.toggle("left-menu-toggle-button-transition");
const menuToggle = document.querySelector(".left-menu-container");
menuToggle.classList.toggle("left-menu-closed");
}
document.addEventListener("click", function (event) {
const clickedButton = event.target.closest(".nested-chat-btn");
const isMenu = event.target.closest(".nested-btn-menu");
if (!clickedButton && !isMenu) {
closeAllMenusExcept(null);
}
});
function toggleNestedMenu(button) {
const menu = button.parentElement.querySelector(".nested-btn-menu");
if (menu.style.display === "block") {
menu.style.display = "none";
} else {
// Hide all other menus
closeAllMenusExcept(menu);
const rect = button.getBoundingClientRect();
menu.style.top = rect.bottom + "px";
menu.style.left = rect.left + "px";
menu.style.display = "block";
}
}
function closeAllMenusExcept(exceptMenu) {
const allMenus = document.querySelectorAll(".nested-btn-menu");
allMenus.forEach(function (menu) {
if (menu !== exceptMenu && menu.style.display === "block") {
menu.style.display = "none";
}
});
}
// When conversation doesn't fit anymore on the page scroll down
function ScrollDownConversation() {
const conversationArea = document.getElementById("conversationContainer");
conversationArea.scrollTop = conversationArea.scrollHeight;
}
// Display first letter of the username as a username logo
function DisplayUserLogo() {
const firstUsernameLetter = document.getElementById("username");
return firstUsernameLetter.textContent[0];
}
// Highlight active conversation
function HighlightConversation(conversationId) {
const allConversationBtns = document.querySelectorAll(".chat-btn");
const allNestedButtons = document.querySelectorAll(".nested-chat-btn");
const btnChild = document.getElementById(conversationId);
// Remove the class from all conversation buttons
allConversationBtns.forEach((btn) => {
btn.classList.remove("chat-btn-focus");
});
// Remove the class from all nested buttons
allNestedButtons.forEach((nestedBtn) => {
nestedBtn.classList.remove("nested-chat-btn-focus");
});
// Check if user pressed on new conversation btn Default -1;
if (conversationId === -1) return;
btnChild.parentElement.classList.add("chat-btn-focus");
const nextButton = btnChild.parentElement.nextElementSibling;
// Add a class to the next sibling button if it exists
if (nextButton && nextButton.classList.contains("nested-chat-btn")) {
nextButton.classList.add("nested-chat-btn-focus");
}
}
function handleEnterKey(event) {
if (event.keyCode === 13 && !event.shiftKey) {
submitForm();
return false;
}
return true;
}
// Send message
async function sendMessage(message) {
const response = await fetch("/submit", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ message, currentConversationId }),
});
if (response.ok) {
const result = await response.json();
RemoveAiReasponseLoding();
UpdateConversation(result.openaiResponse, "ChatGPT");
if (currentConversationId !== result.conversationId) {
AddConversation(result.conversationTopic, result.conversationId);
}
} else {
console.error(
"Failed to send message:",
response.status,
response.statusText
);
}
}
// Retrieve userdata
async function RetrieveUserData() {
const response = await fetch("/retrieveData", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({}),
});
if (response.ok) {
const result = await response.json();
console.log(result);
InsertUsername(result.userData);
OnLoadAddConversation(result.userData);
} else {
console.error(
"Failed to send message:",
response.status,
response.statusText
);
}
}
function InsertUsername(username) {
const usernameId = document.getElementById("username");
const usernameFirstLetter = document.getElementById("user-first-letter");
usernameFirstLetter.textContent = username.username[0];
usernameId.textContent = username.username;
}
function OnLoadAddConversation(data) {
if (data.conversations.length === 0) {
return;
}
currentConversationId = data.conversations[data.conversations.length - 1].id;
for (const conver in data.conversations) {
conversationMenuContainer.insertAdjacentHTML(
"afterbegin",
`<div class="chat-btn-container" id="${data.conversations[conver].id}delete">
<button class="chat-btn" onclick="SelectConversation(${data.conversations[conver].id})">
<a id="${data.conversations[conver].id}">${data.conversations[conver].conversation}</a>
<button class="nested-chat-btn" onclick="toggleNestedMenu(this)">
---
</button>
</button>
<div class="nested-btn-menu">
<a onclick="DeleteCoversation(${data.conversations[conver].id})">Delete chat</a>
</div>
</div>`
);
}
// Highlight currently active conversation
HighlightConversation(currentConversationId);
// Load conversation messages
DisplayMessages(data);
}
function DisplayMessages(data) {
for (const key in data.messages) {
if (data.messages[key].conversationId === currentConversationId) {
for (const message in data.messages[key].messages) {
const jsonObject = JSON.parse(
data.messages[key].messages[message].message_text
);
conversationContainer.insertAdjacentHTML(
"beforeend",
`<div class="conver-user-container">
<div class="conver-user">
${CheckMessageFrom(
jsonObject.role === "user" ? "You" : "ChatGPT"
)}
<div class="conver-username">${
jsonObject.role === "user" ? "You" : "ChatGPT"
}</div>
</div>
<div class="conver-text">
${StructureMessages(jsonObject.content)}
</div>
</div>`
);
}
}
}
// Scroll down after new message been added
ScrollDownConversation();
}
function AddConversation(conversationTopic, conversationId) {
currentConversationId = conversationId;
conversationMenuContainer.insertAdjacentHTML(
"afterbegin",
`<div class="chat-btn-container" id="${conversationId}delete">
<button class="chat-btn" onclick="SelectConversation(${conversationId})">
<a id="${conversationId}">${conversationTopic}</a>
<button class="nested-chat-btn" onclick="toggleNestedMenu(this)">
---
</button>
</button>
<div class="nested-btn-menu">
<a onclick="DeleteCoversation(${conversationId})">Delete chat</a>
</div>
</div>`
);
// Highlight currently active conversation
HighlightConversation(currentConversationId);
}
// Update conversation and input html elements
function UpdateConversation(message, username) {
conversationContainer.insertAdjacentHTML(
"beforeend",
`<div class="conver-user-container">
<div class="conver-user">
${CheckMessageFrom(username)}
<div class="conver-username">${username}</div>
</div>
<div class="conver-text">
${StructureMessages(message)}
</div>
</div>`
);
if (username === "You") {
AddAiResponseLoading();
}
// Scroll down after new message been added
ScrollDownConversation();
}
// Checks if message is from user or chatgpt
function CheckMessageFrom(username) {
if (username === "You") {
return `<div class="conversation-user-avatar"><a>${DisplayUserLogo()}</a></div>`;
} else {
return `<img src="${"https://upload.wikimedia.org/wikipedia/commons/thumb/0/04/ChatGPT_logo.svg/768px-ChatGPT_logo.svg.png"} "class="conversation-profile-img"/>`;
}
}
// Submit message to server
function submitForm() {
const textarea = document.getElementById("resizableTextarea");
const message = textarea.value.trim();
if (message !== "") {
sendMessage(message);
UpdateConversation(message, "You");
// Clear the textarea
textarea.value = "";
}
}
function AddAiResponseLoading() {
conversationContainer.insertAdjacentHTML(
"beforeend",
`<div class="conver-user-container">
<div class="conver-user">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/04/ChatGPT_logo.svg/768px-ChatGPT_logo.svg.png"
class="conversation-profile-img conversation-profile-img-toggle-rotate"/>
<div class="conver-username">ChatGPT</div>
</div>
<div class="conver-text">
</div>
</div>`
);
}
function RemoveAiReasponseLoding() {
const allMessages = document.querySelectorAll(".conver-user-container");
if (allMessages.length > 0) {
conversationContainer.removeChild(allMessages[allMessages.length - 1]);
}
}
// Add new conversation
function NewConversation() {
ClearMessages();
currentConversationId = -1;
HighlightConversation(-1);
}
// Select conversation
async function SelectConversation(conversationId) {
const response = await fetch("/retrieveConversation", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ conversationId }),
});
if (response.ok) {
const result = await response.json();
console.log(result);
currentConversationId = conversationId;
ClearMessages();
DisplayMessages(result.userData);
console.log(conversationId);
HighlightConversation(currentConversationId);
} else {
console.error(
"Failed to send message:",
response.status,
response.statusText
);
}
}
// Clear messages
function ClearMessages() {
const allMessages = document.querySelectorAll(".conver-user-container");
for (let i = 1; i < allMessages.length; i++) {
conversationContainer.removeChild(allMessages[i]);
}
}
// Delete conversations and messages
async function DeleteCoversation(conversationId) {
const response = await fetch("/delete", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ conversationId }),
});
if (response.ok) {
const result = await response.json();
console.log(result);
RemoveConversation(result.converId);
} else {
console.error(
"Failed to send message:",
response.status,
response.statusText
);
}
}
// Removes conversation button HTML from the page after
// conversation infromation was deleted on database side first
function RemoveConversation(converId) {
console.log(converId);
const conversationButton = document.getElementById(converId + "delete");
console.log(conversationButton);
conversationButton.remove();
ClearMessages();
}
function StructureMessages(originalMessage) {
let storedOriginalMessage = originalMessage;
// Remove all < > elements
storedOriginalMessage = originalMessage
.replace(/\</g, "<")
.replace(/\>/g, ">");
storedOriginalMessage = RestructureCode(storedOriginalMessage);
storedOriginalMessage = storedOriginalMessage.replace(/\n/g, "<br>");
return storedOriginalMessage;
}
function RestructureCode(messageWithRemovedElements) {
let structuredCode = messageWithRemovedElements;
if (structuredCode.match(/```\w+/g)) {
const codeFound = structuredCode.replace(/```(\w+)/g, (match, language) => {
return `<pre><div class="code-background"><div class="code-name-bg">${CorrectCodeLanguageName(
language
)}</div><div class="code-container"><code>`;
});
//
structuredCode = codeFound.replace(/```/g, `</code></div></div></pre>`);
}
// Find comments and change color
const commentsColored = structuredCode.replace(
/<code>[\s\S]*?<\/code>/g,
(match) => {
const comments = match.replace(/(\/\/ .*|\# .*|\/\*)/g, (comment) => {
return `<span style='color:#008000'>${comment}</span>`;
});
return comments;
}
);
//
return commentsColored;
}
function CorrectCodeLanguageName(language) {
switch (language) {
case "cpp":
return "c++";
case "csharp":
return "c#";
default:
return language;
}
}
// Logout
async function Logout() {
try {
const response = await fetch("/logout", {
method: "GET",
});
if (response.ok) {
// Redirect to the login page after successful logout
window.location.href = "/";
} else {
console.error("Error during logout");
}
} catch (error) {
console.error("Error during logout:", error);
}
}