Spaces:
Runtime error
Runtime error
File size: 5,927 Bytes
4a88e70 3dedf17 4a88e70 3dedf17 4a88e70 3dedf17 4a88e70 |
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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
$(document).ready(function() {
// Initialize variables
var $chatContainer = $('.chat-container');
var $chatHeader = $('.chat-header');
var $chatBody = $('.chat-body');
var $chatInput = $('.chat-input');
var $input = $('.chat-input input');
var $submit = $('.chat_submit');
var session_id = '';
$chatBody.children().each(function() {
$(this).addClass('chat-message');
});
const buttonLabels = ["What is the Makerlab?", "What is 3D printing?",
"Who are the founders of Makerlab?", "What are the prices for printing?",
"How can I host a birthday at Makerlab?", "Can I book an appointment at Makerlab?",
"Tell me about software used to create 3D printing designs",
"Can I get my custom designs 3D printed at Makerlab?", "Can I host a private event at Makerlab?",
"Does Makerlab host any workshops?", "When is Makerlab open?", "How can I contact the Makerlab Team?"];
// Initialize SocketIO connection
var socket = io.connect('https://' + document.domain + ':' + location.port);
const container = document.getElementById("button-container");
for (let i = 0; i < buttonLabels.length; i++) {
const button = document.createElement("button");
button.innerHTML = buttonLabels[i];
button.setAttribute("class", "queries");
button.setAttribute("id", `button-${i}`);
button.style.margin = "5px";
container.appendChild(button);
}
scrollButtons();
// Function to send message to Flask-SocketIO app
function sendMessage(message) {
console.log("message: " + message )
socket.emit('message', {'question': message});
}
// Function to display message
function displayMessage(message, isUser, hasHtml) {
var $message = $('<div>').addClass('chat-message round');
if (hasHtml) {
$messageText = $('<p>').html(message);
} else {
$messageText = $('<p>').html(message.replace(/(https?:\/\/[^\s,]+)/g, '<a href="$1" target="_blank">$1</a>').replace(/(SOURCES:)/, '<br>$1'));
}
// var $messageText = $('<p>').html(message.replace(/(https?:\/\/[^\s,]+)/g, '<a href="$1">$1</a>'));
$message.append($messageText);
if (isUser) {
$message.addClass('user');
} else {
$message.addClass('bot')
}
if ($chatBody) {
$chatBody.append($message);
if ($chatBody[0]) {
$chatBody.animate({scrollTop: $chatBody[0].scrollHeight}, 300);
}
} else {
$('.chat-container').append($message);
$('.chat-container').animate({scrollTop: 0}, 300);
}
}
socket.on('response', function(data) {
console.log("Received response: " + data.response)
var response = data.response;
displayMessage(response, false);
});
// Send message on submit
$submit.click(function(event) {
event.preventDefault();
var message = $input.val().trim();
console.log("Submit clicked: " + message)
if (message !== '') {
displayMessage(message, true);
sendMessage(message);
$input.val('');
}
});
// Send message on enter key press
$input.keydown(function(event) {
if (event.keyCode === 13) {
event.preventDefault();
$submit.click();
}
});
// Initial message
displayMessage('Learn about <a href="https://makerlab.illinois.edu/" target="_blank">Makerlab</a>', false, true);
displayMessage('This bot is powered by Gpt 3.5 and thus may get things wrong. You can click on any of the questions on the left and they will get copied to this window. You can also type in a question here. If you find the bot useful or have feedback on improving it, drop us a line at <a href="https://makerlab.illinois.edu/contact" target="_blank">Makerlab - Contact</a>', false, true);
// Function to minimize the widget
function minimizeWidget() {
$chatContainer.addClass('minimized');
$chatHeader.hide();
$chatBody.hide()
$chatInput.hide();
$chatContainer.append('<div class="chat-bot-icon"><i class="fa fa-android"></i></div>');
}
// Function to maximize the widget
function maximizeWidget() {
$chatContainer.removeClass('minimized');
$chatBody.show()
$chatHeader.show();
$chatInput.show();
$('.chat-bot-icon').remove();
}
// Minimize the widget on click of close button
$chatHeader.find('.chat-close').click(function() {
minimizeWidget();
});
// Maximize the widget on click of chat-bot-icon
$chatContainer.on('click', '.chat-bot-icon', function() {
maximizeWidget();
});
// Add event listener to each button
$('.queries').click(function() {
// Set the value of the input field to the text content of the clicked button
$('input[type="text"]').val($(this).text());
});
function scrollButtons() {
var container = document.getElementById("button-container");
var buttons = container.querySelectorAll(".queries");
var current = 0;
var scrollInterval = setInterval(function() {
buttons[current].scrollIntoView({ behavior: "smooth", block: "nearest", inline: "center" });
current = (current + 1) % buttons.length;
}, 1000);
container.addEventListener("mouseenter", function() {
clearInterval(scrollInterval);
});
container.addEventListener("mouseleave", function() {
scrollInterval = setInterval(function() {
buttons[current].scrollIntoView({ behavior: "smooth", block: "nearest", inline: "center" });
current = (current + 1) % buttons.length;
}, 1000);
});
}
});
|