Welcome back! In the previous lesson, you learned how to integrate API requests to create a dynamic chat interface. This allowed for real-time communication between the user and the server, enhancing the interactivity of our application. Today, we will build on that foundation by adding message suggestions to our chat interface. Message suggestions are predefined prompts that users can select to quickly send common queries. This feature not only improves user experience by making interactions more efficient but also guides users in formulating their questions.
To implement message suggestions, we will add buttons to our chat.html
file. These buttons will represent common queries that users might have, such as asking about services, business hours, or contact information. By clicking on these buttons, users can quickly send these queries without typing them out manually.
We will position these buttons within a div
element with the class suggestions
, which will be placed above the chat container and input elements. This placement ensures that the suggestion buttons are easily accessible to users as they interact with the chat interface.
Here's how you can add these buttons to your HTML:
HTML, XML1<!DOCTYPE html> 2<html> 3<!-- Head section... --> 4<body> 5 <!-- Header section... --> 6 <div class="suggestions"> 7 <button class="suggestion-btn" onclick="usePrompt('What services do you offer?')">Our Services</button> 8 <button class="suggestion-btn" onclick="usePrompt('What are your business hours?')">Business Hours</button> 9 <button class="suggestion-btn" onclick="usePrompt('What is your contact email?')">Contact Email</button> 10 </div> 11 <!-- Chat container and input elements... --> 12 <!-- Script functions... --> 13</body> 14</html>
These buttons are styled with the class suggestion-btn
and use the onclick
attribute to call the usePrompt
function with specific queries. The content of the buttons includes:
- "Our Services" for the query "What services do you offer?"
- "Business Hours" for the query "What are your business hours?"
- "Contact Email" for the query "What is your contact email?"
This setup allows users to interact with the chat interface more efficiently by selecting from a list of these predefined questions.
The usePrompt
function is a crucial part of our message suggestions feature. It takes a predefined prompt as an argument and populates the chat input with this prompt. This function is triggered when a user clicks on one of the suggestion buttons.
Here's how the usePrompt
function is implemented:
HTML, XML1<script> 2 function usePrompt(prompt) { 3 messageInput.value = prompt; 4 sendMessage(); 5 } 6</script>
In this function, the prompt
parameter is used to set the value of the chat input field (messageInput
). Once the input is populated, the sendMessage
function is called to send the message to the server. This seamless integration allows users to quickly send predefined messages, enhancing the overall user experience.
In this lesson, you learned how to enhance your chat application by adding message suggestions. We covered the implementation of suggestion buttons, the usePrompt
function, and the integration of these features. This addition makes your chat interface more user-friendly and efficient.
As you move on to the practice exercises, focus on reinforcing these concepts and experimenting with the code. This hands-on practice will deepen your understanding and prepare you for the next unit, where we will focus on styling the interface to make it visually appealing. Keep up the great work, and let's continue building this exciting application together!