-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtutorialclient.js
61 lines (49 loc) · 1.63 KB
/
tutorialclient.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
var client = new WebSocket( 'ws://localhost:3000' );
var userName = '';
var connected = false;
// upon open
client.addEventListener( 'open', function () {
connected = true;
console.log( "Connected to server." + connected );
// grab inputTwo
var inputName = document.getElementById( 'inputName' )
// event listener on inputTwo
inputName.addEventListener( 'keyup', function ( e ) {
// if enter is pressed and the box is NOT empty
if ( e.keyCode === 13 && inputName.value.trim() != '' ) {
// set the userName value...
var fixedDiv = document.querySelector( '#fixed' )
userName = inputName.value;
// and grab the fixedDiv and set it's style to make it disappear!
fixedDiv.style.display = 'none';
}
} );
} );
// upon recieving a message
client.addEventListener( 'message', function ( message ) {
//create an li element
var li = document.createElement( 'li' );
// change it's innerText value to the recieved message
li.innerText = message.data;
// set it's id to 'msg'
li.setAttribute( 'id', 'msg' )
// grab the ul element
var ul = document.getElementById( "msgHolder" );
// and append it to include the new li
ul.appendChild( li );
// then have it display BEFORE the newest element
var before = ul.firstChild;
ul.insertBefore( li, before )
} );
client.addEventListener( 'close', function () {
connected = false;
console.log( connected );
} );
var inputMsg = document.getElementById( 'inputMsg' )
inputMsg.addEventListener( 'keyup', function ( e ) {
if ( e.keyCode === 13 ) {
var newMessage = inputMsg.value;
client.send( userName + ': ' + newMessage );
inputMsg.value = ''; //clear the input area
}
} );