script.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // Author: Matthew Shiel
  2. $("#user-input-form").submit(
  3. function (event) {
  4. event.preventDefault();
  5. // Store input in a variable
  6. var question = $('#user-input').val().trim() // Remove whitespace
  7. var bot = $('#bot-name').val().trim() // Remove whitespace
  8. var session = $('#session-id').val().trim() // Remove whitespace
  9. // Clear the input box
  10. $('#user-input').val("");
  11. // If the user doesn't input anything return nothing
  12. if (!question) {
  13. return;
  14. }
  15. // Append the user's question to the list and clear input
  16. $("#output-area").append('<li>' + question + '</li>');
  17. // scroll to the bottom of the messages
  18. // adapted from https://stackoverflow.com/questions/11715646/scroll-automatically-to-the-bottom-of-the-page
  19. $('#output-area').animate({
  20. scrollTop: $('#output-area').prop("scrollHeight")
  21. }, 300);
  22. $.get('/user-input', {
  23. value: question,
  24. bot: bot,
  25. session: session
  26. })
  27. .done(function (data) {
  28. // Set a timeout to make Eliza seem like she's thinking
  29. // Adapted random number in a range from here https://stackoverflow.com/questions/1527803/generating-random-whole-numbers-in-javascript-in-a-specific-range
  30. setTimeout(() => {
  31. // Add Eliza's answer to the list
  32. addListItem(data);
  33. }, Math.floor(Math.random() * (2000 - 600 + 1)) + 600);
  34. })
  35. });
  36. function addListItem(input) {
  37. // Add the input to the list
  38. $("#output-area").append('<li>' + input + '</li>')
  39. // Automatically scroll to the last message
  40. // adapted from https://stackoverflow.com/questions/11715646/scroll-automatically-to-the-bottom-of-the-page
  41. $('#output-area').animate({
  42. scrollTop: $('#output-area').prop("scrollHeight")
  43. }, 300);
  44. }