blob: ca71b537f1d746ca1a449fc046ec12a4077007e2 (
plain)
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
|
function replaceURLWithHTMLLinks (text) {
var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
return text.replace(exp,"<a href='$1'>$1</a>");
}
function setMaybeNick (input) {
var match = /^\/nick\s+(.+)$/.exec(input);
if (match) {
nick = match[1];
$('#nick').html(nick);
}
}
function getCurTime () {
date = new Date;
h = date.getHours();
if(h<10)
{
h = "0"+h;
}
m = date.getMinutes();
if(m<10)
{
m = "0"+m;
}
s = date.getSeconds();
if(s<10)
{
s = "0"+s;
}
return ''+h+':'+m+':'+s;
};
$(function updateTime () {
$('#time').html(getCurTime());
setTimeout(updateTime,'1000');
return true;
});
var nick;
$(function connect() {
sock = new SockJS('/echo');
sock.onopen = function() {
console.log('open');
sock.send('open');
};
sock.onmessage = function(e) {
console.log('message', e.data);
try {
var object = JSON.parse(e.data);
console.log(object.message);
var safe_message = $('<div/>').text(object.message).html();
safe_message = replaceURLWithHTMLLinks(safe_message);
var safe_from = $('<div/>').text(object.from).html();
$('<tr><td class="chat_date">'+getCurTime()+'</td><td class="chat_from">'+safe_from+'</td><td class="chat_msg">'+safe_message+'</td></tr>').insertBefore('#foot');
var elem = document.getElementById('chatter');
elem.scrollTop = elem.scrollHeight;
} catch (error) {
console.log(error);
}
};
sock.onclose = function(event) {
console.log('close');
switch (event.code) {
case 1006: //abnormal closure
return setTimeout(connect, 1000);
};
};
});
$(function() {
$('#input').keydown(function(e) {
if (e.keyCode === 13) {
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
setMaybeNick($('#input').val());
var sendObj = {
message: $('#input').val(),
};
if (typeof nick === 'string') {
sendObj.nick = nick;
};
sock.send(JSON.stringify(sendObj));
$('#input').val('');
return;
}
});
});
|