mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-06-16 04:35:01 +02:00
55 lines
1.3 KiB
JavaScript
55 lines
1.3 KiB
JavaScript
var socket;
|
|
var usernameInput
|
|
var chatIDInput;
|
|
var messageInput;
|
|
var chatRoom;
|
|
var dingSound;
|
|
var messages = [];
|
|
var delay = true;
|
|
|
|
function onload(){
|
|
socket = io();
|
|
usernameInput = document.getElementById("NameInput");
|
|
chatIDInput = document.getElementById("IDInput");
|
|
messageInput = document.getElementById("ComposedMessage");
|
|
chatRoom = document.getElementById("RoomID");
|
|
dingSound = document.getElementById("Ding");
|
|
|
|
socket.on("join", function(room){
|
|
chatRoom.innerHTML = "Current Chatroom : " + room;
|
|
})
|
|
|
|
socket.on("recieve", function(message){
|
|
console.log(message);
|
|
if (messages.length < 9){
|
|
messages.push(message);
|
|
dingSound.currentTime = 0;
|
|
dingSound.play();
|
|
}
|
|
else{
|
|
messages.shift();
|
|
messages.push(message);
|
|
}
|
|
for (i = 0; i < messages.length; i++){
|
|
document.getElementById("Message"+i).innerHTML = messages[i];
|
|
document.getElementById("Message"+i).style.color = "#b30000";
|
|
}
|
|
})
|
|
}
|
|
|
|
function Connect(){
|
|
socket.emit("join", chatIDInput.value, usernameInput.value);
|
|
}
|
|
|
|
function Send(){
|
|
if (delay && messageInput.value.replace(/\s/g, "") != ""){
|
|
delay = false;
|
|
setTimeout(delayReset, 1000);
|
|
socket.emit("send", messageInput.value);
|
|
messageInput.value = "";
|
|
}
|
|
}
|
|
|
|
function delayReset(){
|
|
delay = true;
|
|
} |