This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
489 lines (436 loc) · 20.6 KB
/
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
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
const server = "ws://127.0.0.1:5000"
//? GlobalVariable: Các biến để lưu dữ liệu trong chương trình [socket, username, isConnected, MessageQueue, connectdelay, Online, Custom]
var socket;
var username = "";
var isConnected = false;
var MessageQueue = [];
var connectdelay = false;
var Online = [];
var Custom = {
custom_background: undefined,
custom_background_content: undefined,
custom_background_list: undefined,
custom_background_custom: undefined
}
const defaultCustom = {
custom_background: "aquamarine",
custom_background_content: "snow",
custom_background_list: "snow",
custom_background_custom: "snow"
}
//? Custom: Những thứ liên quan tới việc Tùy chỉnh [setBackgroundFull(), saveCustom(), customtodefault()]
function setBackgroundFull(querySelector) {
// Thanks https://www.webfx.com/blog/web-design/responsive-background-image
querySelector.style.backgroundPosition = "center center";
querySelector.style.backgroundRepeat = "no-repeat";
if (querySelector === document.querySelector("html")) {querySelector.style.backgroundAttachment = "fixed";}
querySelector.style.backgroundSize = "cover";
}
function saveCustom() {
if (document.getElementById("custom_background").value) {
Custom.custom_background = `url(${document.getElementById("custom_background").value})`
document.querySelector("html").style.background = Custom.custom_background;
setBackgroundFull(document.querySelector("html"))
} else {
Custom.custom_background = defaultCustom.custom_background
document.querySelector("html").style.background = Custom.custom_background;
}
if (document.getElementById("custom_background_content").value) {
Custom.custom_background_content = `url(${document.getElementById("custom_background_content").value})`
document.querySelector("#content").style.background = Custom.custom_background_content;
setBackgroundFull(document.querySelector("#content"))
} else {
Custom.custom_background_content = defaultCustom.custom_background_content
document.querySelector("#content").style.background = Custom.custom_background_content;
}
if (document.getElementById("custom_background_list").value) {
Custom.custom_background_list = `url(${document.getElementById("custom_background_list").value})`
document.querySelector("#list").style.background = Custom.custom_background_list;
setBackgroundFull(document.querySelector("#list"))
} else {
Custom.custom_background_list = defaultCustom.custom_background_list;
document.querySelector("#list").style.background = Custom.custom_background_list;
}
if (document.getElementById("custom_background_custom").value) {
Custom.custom_background_custom = `url(${document.getElementById("custom_background_custom").value})`
document.querySelector("#custom").style.background = Custom.custom_background_custom;
setBackgroundFull(document.querySelector("#custom"))
} else {
Custom.custom_background_custom = defaultCustom.custom_background_custom
document.querySelector("#custom").style.background = Custom.custom_background_custom;
}
}
function customtodefault() {
Custom = defaultCustom;
document.querySelector("html").style.removeProperty("background")
document.querySelector("#content").style.removeProperty("background")
document.querySelector("#list").style.removeProperty("background")
document.querySelector("#custom").style.removeProperty("background")
// Thanks https://stackoverflow.com/a/2028029/16410937
document.getElementById("custom_background").value = "";
document.getElementById("custom_background_content").value = ""
document.getElementById("custom_background_list").value = ""
document.getElementById("custom_background_custom").value = ""
}
//? HTMLQueryVariable: Các biến chứa nội dung HTML [savenamebutton, connectbutton, disconnectbutton, getbutton, noconnect, connected]
var savenamebutton = `<button id="savenamebutton" onclick="saveusername()" hidden="true">Lưu</button>`
const connectbutton = "<button id=\"connect\" onclick=\"connect()\">Kết nối với Server</button>"
const disconnectbutton = "<button id=\"disconnect\" onclick=\"disconnect();\">Ngắt kết nối với Server</button>"
const getbutton = "<button onclick=\"get()\" id=\"updatebutton\">Cập nhật</button>"
const noconnect = `<p> <input class="chat" type="text" placeholder="Biệt danh" id="username" disabled> ${savenamebutton} | <b>Trạng thái: </b>Chưa kết nối với Server | ` + connectbutton + "</p>"
const connected = `<p> <input class="chat" type="text" placeholder="Biệt danh" id="username"> ${savenamebutton} | <b>Trạng thái: </b>Đã kết nối với Server | ` + disconnectbutton + " " + getbutton + "</p>"
const defaultList = `<summary>Trực tuyến</summary>`
//? Method: Các Thủ tục gửi tin nhắn lên Server [nameaction(), get(), send()]
function nameaction(name) {
input = {
"type": "name",
"name": name
}
socket.send(JSON.stringify(input))
}
function get() {
inupdate()
socket.send(`{"type":"get"}`)
}
function send(content) {
if (content.length < 1 || content.length > 4000) return alert("Nội dung tin nhắn có ít nhất 1 ký tự và nhiều nhất 4000 ký tự!")
input = {
"type": "send",
"content": content
}
socket.send(JSON.stringify(input))
MessageQueue.push({
'name': username,
'content': content
})
document.getElementById('content').innerHTML = document.getElementById('content').innerHTML + `<p style="text-align: right; margin-right: 7px;" class="QueueMessage"> <b>${escapeHtml(username)}:</b> ${escapeHtml(content)} <br> <i style="font-size: smaller;">Đang gửi...</i></p>`
document.getElementById("noidung").value = "";
}
//? SaveButton: Các thủ tục xoay quanh nút Lưu Biệt danh [hidesavebutton(), showsavebutton()]
function hidesavebutton() {
savenamebutton = `<button id="savenamebutton" onclick="saveusername() hidden="true">Lưu</button>`
document.getElementById("savenamebutton").setAttribute("hidden", true)
}
function showsavebutton() {
savenamebutton = `<button id="savenamebutton" onclick="saveusername()">Lưu</button>`
document.getElementById("savenamebutton").removeAttribute("hidden")
}
//? UsernameMethod: Các thủ tục xoay quanh ô nhập Biệt danh [changeusername(), saveusername()]
function changeusername(e) {
if (username !== e.target.value && e.target.value.length>=1 && e.target.value.length<=100) {
showsavebutton()
} else {
hidesavebutton()
}
}
function saveusername() {
if (!isConnected) return alert("Bạn chưa kết nối với Server!")
nameaction(document.getElementById('username').value)
}
function RestoreUsername(e) {
if (e.target.value.length<1 || e.target.value.length>100) {
document.getElementById("username").value = username
}
}
//? SendMethod: Các thủ tục kích hoạt và Phím tắt ô Gửi và nút Gửi [enablesend(), disablesend(), SendEnter()]
function enablesend() {
document.getElementById("noidung").removeAttribute("disabled")
document.getElementById("send").removeAttribute("disabled")
document.getElementById("noidung").addEventListener("keydown", (event) => SendEnter(event))
}
function disablesend(can_copy) {
if (can_copy == true)
{
document.getElementById("send").setAttribute("disabled", true)
} else {
document.getElementById("noidung").setAttribute("disabled", true)
document.getElementById("send").setAttribute("disabled", true)
}
}
function SendEnter(event) {
// Thanks https://stackoverflow.com/questions/905222/prevent-form-submission-on-enter-key-press
if (event.keyCode == 13) {
event.preventDefault();
if (isConnected === true) {send(document.getElementById('noidung').value);}
}
if (event.keyCode == 116) {
event.preventDefault();
if (isConnected === true && !document.getElementById("updatebutton").hasAttribute("disabled")) {get();}
}
}
//? AfterDisconnect: Các thủ tục xoay quanh sự kiện Bắt đầu Ngắt kết nối với Server [disconnect(), delayconnect()]
function disconnect() {
socket.close();
document.getElementById("content").innerHTML = "\t<!-- Chat will be shown here -->"
document.getElementById("alert").innerHTML = noconnect
delayconnect();
}
function delayconnect() {
connectdelay = true;
RestoreListToDefault()
document.getElementById(`content`).innerHTML = document.getElementById(`content`).innerHTML + `<p class="smalltext" style="text-align: center; font-size: x-small; color: grey;"><b>Đã ngắt kết nối tới Server</b></p>`
isConnected = false;
document.getElementById("alert").innerHTML = noconnect
document.getElementById('username').removeEventListener('input', changeusername)
hidesavebutton()
showScrollButton()
username = "";
if (document.getElementById('noidung').value.length > 0) {
disablesend(true)
document.getElementById('noidung').addEventListener('input', disablecontentafterdisconnect)
} else (disablesend(false))
document.getElementById("connect").textContent = "Vui lòng đợi 3s để có thể Kết nối lại"
document.getElementById("connect").setAttribute("disabled", true)
setTimeout(() => {
document.getElementById("connect").textContent = "Kết nối với Server";
document.getElementById("connect").removeAttribute("disabled")
}, 3000);
}
function disablecontentafterdisconnect() {
if (isConnected == true) {
document.getElementById('noidung').removeEventListener('input', disablecontentafterdisconnect)
} else {
if (document.getElementById('noidung').value.length === 0) {
disablesend(false)
document.getElementById('noidung').removeEventListener('input', disablecontentafterdisconnect)
}
}
}
//? UpdateButton: Các thủ tục liên quan đến nút Cập nhật [inupdate(), afterupdate()]
function inupdate() {
document.getElementById("updatebutton").textContent = "Đang cập nhật..."
document.getElementById("updatebutton").setAttribute("disabled", true)
}
function afterupdate() {
document.getElementById("updatebutton").removeAttribute("disabled")
document.getElementById("updatebutton").textContent = "Cập nhật"
}
//? ListMethod: Các thủ tục liên quan đến danh sách trực tuyến [UpdateList(), RestoreListToDefault()]
function UpdateList() {
let tempHTML = `<summary>Trực tuyến (${Online.length})</summary>\n`;
for (const nguoidung of Online) {
tempHTML = tempHTML.concat((nguoidung == username) ? `<p style="word-wrap: break-word;">${escapeHtml(nguoidung)} <b>(Bạn)</b></p>` : `<p style="word-wrap: break-word;">${escapeHtml(nguoidung)}</p>`)
}
document.getElementById("list").innerHTML = tempHTML
}
function RestoreListToDefault() {
document.getElementById("list").innerHTML = defaultList
}
//? ScrollButtonMethod: Các thủ tục liên quan đến nút Cuộn xuống ngay [showScrollButton()]
// Thanks https://stackoverflow.com/a/54529438/16410937
function showScrollButton() {
if (document.getElementById('content').scrollTop + document.getElementById('content').clientHeight === document.getElementById('content').scrollHeight) {
document.getElementById("ScrollButton").setAttribute("hidden", true)
} else {
document.getElementById("ScrollButton").removeAttribute("hidden")
}
}
function find(array, name, content) {
const query = {
'name': name,
'content': content
}
return array.indexOf(query)
}
function escapeHtml(text) {
// Thank this too much: https://stackoverflow.com/questions/1787322/what-is-the-htmlspecialchars-equivalent-in-javascript
var map = {
'&': '&',
'<': '<',
'>': '>',
'"': '"',
"'": '''
};
return text.replace(/[&<>"']/g, function(m) { return map[m]; });
}
document.getElementById("alert").innerHTML = noconnect
function connect() {
document.getElementById("connect").textContent = "Đang kết nối..."
document.getElementById("connect").setAttribute("disabled", true)
socket = new WebSocket(server)
socket.addEventListener('error', (event) => {
alert("Không thể kết nối tới Server!")
isConnected = false;
document.getElementById("alert").innerHTML = noconnect
})
socket.addEventListener('close', (event) => {
if (connectdelay === false) {
RestoreListToDefault()
document.getElementById(`content`).innerHTML = document.getElementById(`content`).innerHTML + `<p class="smalltext" style="text-align: center; font-size: x-small; color: grey;"><b>Đã ngắt kết nối tới Server</b></p>`
isConnected = false;
document.getElementById("alert").innerHTML = noconnect
document.getElementById('username').removeEventListener('input', changeusername)
hidesavebutton()
showScrollButton()
username = "";
if (document.getElementById('noidung').value.length > 0) {
disablesend(true)
document.getElementById('noidung').addEventListener('input', disablecontentafterdisconnect)
} else (disablesend(false))
} else connectdelay = true;
})
socket.addEventListener('open', (event) => {
document.getElementById("alert").innerHTML = connected
document.getElementById('username').addEventListener('input', changeusername)
document.getElementById('username').addEventListener('change', RestoreUsername)
isConnected = true;
});
socket.addEventListener('message', (event) => {
let data = JSON.parse(event.data)
switch (data.type) {
case "name":
switch (data.status) {
case true:
enablesend();
switch (data.action) {
case "register":
document.getElementById(`content`).innerHTML = document.getElementById(`content`).innerHTML + `<p class="smalltext" style="text-align: center; font-size: x-small; color: grey;">Bạn đã đăng ký biệt danh "<b>${escapeHtml(data.name)}</b>" thành của mình</p>`;
username = data.name;
hidesavebutton(); get();
break;
case "change":
document.getElementById(`content`).innerHTML = document.getElementById(`content`).innerHTML + `<p class="smalltext" style="text-align: center; font-size: x-small; color: grey;">Bạn đã đổi biệt danh "<b>${escapeHtml(data.oldname)}</b>" của mình thành "<b>${escapeHtml(data.newname)}</b>"</p>`;
username = data.newname;
hidesavebutton();
Online[Online.indexOf(data.oldname)] = data.newname;
UpdateList()
break;
}
break;
case false:
switch (data.action) {
case "register":
switch (data.reason) {
case "NameAlreadyUsed":
alert(`"${data.name}" đã được sử dụng. Vui lòng đặt một biệt danh khác.`)
break;
case "WrongFormatName":
alert(`Biệt danh của bạn phải có ít nhất 1 ký tự và nhiều nhất 100 ký tự`)
break;
case "ErrorWhenRegister":
alert("Đã xảy ra lỗi trên Server khi đăng ký cho bạn. Xem đầu ra Bảng điều khiển để biết thêm thông tin.")
console.error(`[Server] ` + data.error)
default:
alert("Đã xảy ra lỗi khi đăng ký tên: \""+ data.reason + "\"")
break;
}
break;
case "change":
switch (data.reason) {
case "NameAlreadyUsed":
alert(`"${data.name}" đã được sử dụng. Vui lòng đặt một biệt danh khác.`)
break;
case "WrongFormatName":
alert(`Biệt danh của bạn phải có ít nhất 1 ký tự và nhiều nhất 100 ký tự`)
break;
case "ErrorWhenChange":
alert("Đã xảy ra lỗi trên Server khi đổi biệt danh cho bạn. Xem đầu ra Bảng điều khiển để biết thêm thông tin.")
console.error(`[Server] ` + data.error)
default:
alert("Đã xảy ra lỗi khi đổi biệt danh: \""+ data.reason + "\"")
break;
}
break;
}
break;
}
break;
case "get":
switch (data.status) {
case true:
document.getElementById("content").innerHTML = "\t<!-- Chat will be shown here -->"
for (const tinnhan of data.data.message) {
if (tinnhan.name == username) {
document.getElementById('content').innerHTML = document.getElementById('content').innerHTML + `<p style="text-align: right; margin-right: 7px;"> <b>${escapeHtml(tinnhan.name)}:</b> ${escapeHtml(tinnhan.content)} <br> <i style="font-size: smaller;">Gửi vào lúc ${tinnhan.timestamp}</i></p>`
} else {
document.getElementById('content').innerHTML = document.getElementById('content').innerHTML + `<p style="text-align: left; margin-left: 7px;"> <b>${escapeHtml(tinnhan.name)}:</b> ${escapeHtml(tinnhan.content)} <br> <i style="font-size: smaller;">Gửi vào lúc ${tinnhan.timestamp}</i></p>`
}
}
Online = data.data.online;
UpdateList()
document.getElementById(`content`).innerHTML = document.getElementById(`content`).innerHTML + `<p class="smalltext" style="text-align: center; font-size: x-small; color: grey;">Cập nhật tất cả</p>`;
document.getElementById("content").scrollTop = document.getElementById("content").scrollHeight;
break;
case false:
switch (data.reason) {
case "ErrorWhenGet":
alert(`Không thể cập nhật full do đã xảy ra lỗi trên Server. Xem đầu ra Bảng điều khiển để biết thêm thông tin.`)
console.error("[Server] ErrorWhenGet: " + escapeHtml(data.error));
break;
case "UnknownRegister":
alert(`Bạn chưa đăng ký! Vui lòng đặt cho mình một biệt danh mới!`)
break;
default:
alert("Đã xảy ra lỗi: " + data.reason)
break;
}
break;
}
afterupdate();
break;
case "send":
let arr = document.getElementsByClassName("QueueMessage")
let pos = find(MessageQueue, data.name, data.content)
switch (data.status) {
case true:
for (const html of arr) {
if (html.innerHTML == ` <b>${escapeHtml(data.name)}:</b> ${escapeHtml(data.content)} <br> <i style="font-size: smaller;">Đang gửi...</i>`) {
html.classList.remove("QueueMessage")
html.innerHTML = ` <b>${escapeHtml(username)}:</b> ${escapeHtml(data.content)} <br> <i style="font-size: smaller;">Bạn đã gửi thành công vào lúc ${data.timestamp}</i>`
MessageQueue.splice(pos, 1)
break;
}
}
break;
case false:
for (const html of arr) {
if (html.innerHTML == ` <b>${escapeHtml(data.name)}:</b> ${escapeHtml(data.content)} <br> <i style="font-size: smaller;">Đang gửi...</i>`) {
html.classList.remove("QueueMessage")
let lydo = "";
switch (data.reason) {
case "UnknownRegister":
lydo = "Bạn chưa đăng ký"
break;
case "ErrorWhenSend":
lydo = "[Server] " + escapeHtml(data.error);
break;
case "WrongFormatContent":
lydo = "Nội dung tin nhắn có ít nhất 1 ký tự và nhiều nhất 4000 ký tự"
break;
default:
lydo = "Lỗi: " + data.reason
break;
}
html.innerHTML = ` <b>${escapeHtml(username)}:</b> ${escapeHtml(content)} <br> <i style="font-size: smaller; color: red;">Bạn đã gửi tin nhắn thất bại: ${lydo}</i>`
MessageQueue.splice(pos, 1)
break;
}
}
break;
}
case "receive":
switch (data.datatype) {
case "change":
document.getElementById(`content`).innerHTML = document.getElementById(`content`).innerHTML + `<p class="smalltext" style="text-align: center; font-size: x-small; color: grey;"><b>${escapeHtml(data.oldname)}</b> đã đổi biệt danh thành "<b>${escapeHtml(data.newname)}</b>"</p>`;
Online[Online.indexOf(data.oldname)] = data.newname;
UpdateList()
break;
case "register":
document.getElementById(`content`).innerHTML = document.getElementById(`content`).innerHTML + `<p class="smalltext" style="text-align: center; font-size: x-small; color: grey;"><b>${escapeHtml(data.name)}</b> đã tham gia chat</p>`;
Online.push(data.name)
UpdateList()
break;
case "message":
document.getElementById('content').innerHTML = document.getElementById('content').innerHTML + `<p style="text-align: left; margin-left: 7px;"> <b>${escapeHtml(data.name)}:</b> ${escapeHtml(data.content)} <br> <i style="font-size: smaller;">Gửi vào lúc ${data.timestamp}</i></p>`
break;
case "leave":
document.getElementById(`content`).innerHTML = document.getElementById(`content`).innerHTML + `<p class="smalltext" style="text-align: center; font-size: x-small; color: grey;"><b>${escapeHtml(data.name)}</b> đã rời khỏi chat</p>`;
Online.splice(Online.indexOf(data.name), 1)
UpdateList()
break;
}
default: break;
}
showScrollButton()
});
}