-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatroom.js
78 lines (74 loc) · 1.48 KB
/
chatroom.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
var instance = false;
var currentstate;
var message;
var file;
function Chatroom(){
this.update = updateChatroom;
this.send = sendChat;
this.getState = getStateofChatroom;
}
//gets Current State of Chat
function getStateofChatroom(){
if(!instance){
instance = true;
$.ajax({
type: "POST",
url: "processChat.php",
data:{
'function': 'getStateofChatroom',
'file' : file
},
dataType: "json",
success: function(data){
currentstate = data.currentstate;
instance = false;
},
});
}
}
function updateChatroom(){
if(!instance){
instance = true;
$.ajax({
type: "POST",
url: "processChat.php",
data:{
'function': 'updateChatroom',
'currentstate': currentstate,
'file':file
},
dataType: "json",
success: function(data){
if(data.text){
for(var i = 0; i < data.text.length; i++){
$('#chat-area').append($("<p>"+ data.text[i] + "</p>"));
}
}
document.getElementById('chat-area').scrollTop = document.getElementById('chat-area').scrollHeight;
instance = false;
currentstate = data.currentstate;
},
});
}
else{
setTimeout(updateChatroom, 2000);
}
}
//send message
function sendChat(message, nickname){
updateChatroom();
$.ajax({
type: "POST",
url: "processChat.php",
data:{
'function': 'send',
'message': message,
'nickname': nickname,
'file' : file
},
dataType:"json",
success: function(data){
updateChatroom();
},
});
}