script.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. // Clear the input box
  8. $('#user-input').val("");
  9. // If the user doesn't input anything return nothing
  10. if (!question) {
  11. return;
  12. }
  13. // Append the user's question to the list and clear input
  14. $("#output-area").append('<li>' + question + '</li>');
  15. // scroll to the bottom of the messages
  16. // adapted from https://stackoverflow.com/questions/11715646/scroll-automatically-to-the-bottom-of-the-page
  17. $('#output-area').animate({
  18. scrollTop: $('#output-area').prop("scrollHeight")
  19. }, 300);
  20. $.get('/user-input', {
  21. value: question
  22. })
  23. .done(function (data) {
  24. // Set a timeout to make Eliza seem like she's thinking
  25. // Adapted random number in a range from here https://stackoverflow.com/questions/1527803/generating-random-whole-numbers-in-javascript-in-a-specific-range
  26. setTimeout(() => {
  27. // Add Eliza's answer to the list
  28. addListItem(data);
  29. }, Math.floor(Math.random() * (4000 - 600 + 1)) + 600);
  30. })
  31. });
  32. function addListItem(input) {
  33. // Add the input to the list
  34. $("#output-area").append('<li>' + input + '</li>')
  35. // Automatically scroll to the last message
  36. // adapted from https://stackoverflow.com/questions/11715646/scroll-automatically-to-the-bottom-of-the-page
  37. $('#output-area').animate({
  38. scrollTop: $('#output-area').prop("scrollHeight")
  39. }, 300);
  40. }