| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 | $(function() {  var FADE_TIME = 150; // ms  var TYPING_TIMER_LENGTH = 400; // ms  var COLORS = [    '#e21400', '#91580f', '#f8a700', '#f78b00',    '#58dc00', '#287b00', '#a8f07a', '#4ae8c4',    '#3b88eb', '#3824aa', '#a700ff', '#d300e7'  ];  // Initialize variables  var $window = $(window);  var $usernameInput = $('.usernameInput'); // Input for username  var $messages = $('.messages'); // Messages area  var $inputMessage = $('.inputMessage'); // Input message input box  var $loginPage = $('.login.page'); // The login page  var $chatPage = $('.chat.page'); // The chatroom page  // Prompt for setting a username  var username;  var connected = false;  var typing = false;  var lastTypingTime;  var $currentInput = $usernameInput.focus();  var socket = io('http://'+document.domain+':2020');  const addParticipantsMessage = (data) => {    var message = '';    if (data.numUsers === 1) {      message += "there's 1 participant";    } else {      message += "there are " + data.numUsers + " participants";    }    log(message);  }  // Sets the client's username  const setUsername = () => {    username = cleanInput($usernameInput.val().trim());    // If the username is valid    if (username) {      $loginPage.fadeOut();      $chatPage.show();      $loginPage.off('click');      $currentInput = $inputMessage.focus();      // Tell the server your username      socket.emit('add user', username);    }  }  // Sends a chat message  const sendMessage = () => {    var message = $inputMessage.val();    // Prevent markup from being injected into the message    message = cleanInput(message);    // if there is a non-empty message and a socket connection    if (message && connected) {      $inputMessage.val('');      addChatMessage({        username: username,        message: message      });      // tell server to execute 'new message' and send along one parameter      socket.emit('new message', message);    }  }  // Log a message  const log = (message, options) => {    var $el = $('<li>').addClass('log').text(message);    addMessageElement($el, options);  }  // Adds the visual chat message to the message list  const addChatMessage = (data, options) => {    // Don't fade the message in if there is an 'X was typing'    var $typingMessages = getTypingMessages(data);    options = options || {};    if ($typingMessages.length !== 0) {      options.fade = false;      $typingMessages.remove();    }    var $usernameDiv = $('<span class="username"/>')      .text(data.username)      .css('color', getUsernameColor(data.username));    var $messageBodyDiv = $('<span class="messageBody">')      .text(data.message);    var typingClass = data.typing ? 'typing' : '';    var $messageDiv = $('<li class="message"/>')      .data('username', data.username)      .addClass(typingClass)      .append($usernameDiv, $messageBodyDiv);    addMessageElement($messageDiv, options);  }  // Adds the visual chat typing message  const addChatTyping = (data) => {    data.typing = true;    data.message = 'is typing';    addChatMessage(data);  }  // Removes the visual chat typing message  const removeChatTyping = (data) => {    getTypingMessages(data).fadeOut(function () {      $(this).remove();    });  }  // Adds a message element to the messages and scrolls to the bottom  // el - The element to add as a message  // options.fade - If the element should fade-in (default = true)  // options.prepend - If the element should prepend  //   all other messages (default = false)  const addMessageElement = (el, options) => {    var $el = $(el);    // Setup default options    if (!options) {      options = {};    }    if (typeof options.fade === 'undefined') {      options.fade = true;    }    if (typeof options.prepend === 'undefined') {      options.prepend = false;    }    // Apply options    if (options.fade) {      $el.hide().fadeIn(FADE_TIME);    }    if (options.prepend) {      $messages.prepend($el);    } else {      $messages.append($el);    }    $messages[0].scrollTop = $messages[0].scrollHeight;  }  // Prevents input from having injected markup  const cleanInput = (input) => {        return $('<div/>').text(input).html();  }  // Updates the typing event  const updateTyping = () => {    if (connected) {      if (!typing) {        typing = true;        socket.emit('typing');      }      lastTypingTime = (new Date()).getTime();    setTimeout(() => {        var typingTimer = (new Date()).getTime();        var timeDiff = typingTimer - lastTypingTime;        if (timeDiff >= TYPING_TIMER_LENGTH && typing) {          socket.emit('stop typing');          typing = false;        }      }, TYPING_TIMER_LENGTH);    }  }  // Gets the 'X is typing' messages of a user  const getTypingMessages = (data) => {    return $('.typing.message').filter(function (i) {      return $(this).data('username') === data.username;    });  }  // Gets the color of a username through our hash function  const getUsernameColor = (username) => {    // Compute hash code    var hash = 7;    for (var i = 0; i < username.length; i++) {       hash = username.charCodeAt(i) + (hash << 5) - hash;    }    // Calculate color    var index = Math.abs(hash % COLORS.length);    return COLORS[index];  }  // Keyboard events  $window.keydown(event => {    // Auto-focus the current input when a key is typed    if (!(event.ctrlKey || event.metaKey || event.altKey)) {      $currentInput.focus();    }    // When the client hits ENTER on their keyboard    if (event.which === 13) {      if (username) {        sendMessage();        socket.emit('stop typing');        typing = false;      } else {        setUsername();      }    }  });  $inputMessage.on('input', () => {    updateTyping();  });  // Click events  // Focus input when clicking anywhere on login page  $loginPage.click(() => {    $currentInput.focus();  });  // Focus input when clicking on the message input's border  $inputMessage.click(() => {    $inputMessage.focus();  });  // Socket events  // Whenever the server emits 'login', log the login message  socket.on('login', (data) => {    connected = true;    // Display the welcome message    var message = "Welcome to Socket.IO Chat – ";    log(message, {      prepend: true    });    addParticipantsMessage(data);  });  // Whenever the server emits 'new message', update the chat body  socket.on('new message', (data) => {    addChatMessage(data);  });  // Whenever the server emits 'user joined', log it in the chat body  socket.on('user joined', (data) => {    log(data.username + ' joined');    addParticipantsMessage(data);  });  // Whenever the server emits 'user left', log it in the chat body  socket.on('user left', (data) => {    log(data.username + ' left');    addParticipantsMessage(data);    removeChatTyping(data);  });  // Whenever the server emits 'typing', show the typing message  socket.on('typing', (data) => {    addChatTyping(data);  });  // Whenever the server emits 'stop typing', kill the typing message  socket.on('stop typing', (data) => {    removeChatTyping(data);  });  socket.on('disconnect', () => {  log('you have been disconnected');  });  socket.on('reconnect', () => {  log('you have been reconnected');  if (username) {    socket.emit('add user', username);  }  });  socket.on('reconnect_error', () => {  log('attempt to reconnect has failed');  });  });
 |