Spaces:
Paused
Paused
File size: 5,146 Bytes
4f29464 |
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 162 163 |
{% extends 'layout.html' %} {% block content %}
<div class="container" id="app-ui">
<div class="sidebar">
<h2 style="color: inherit">Chat History</h2>
<ul id="chat-history">
{% for chat in chat_history %}
<li>User: {{ chat.user }}<br />Bot: {{ chat.bot }}</li>
{% endfor %}
</ul>
</div>
<div class="chatbox">
<h2 style="color: inherit">Chat</h2>
<div id="messages">
{% for chat in chat_history %}
<p class="user-message"><strong>User:</strong> {{ chat.user }}</p>
<p class="bot-response"><strong>Bot:</strong> {{ chat.bot }}</p>
{% endfor %}
</div>
<form id="chat-form">
<input
type="text"
id="message"
name="message"
placeholder="Type your message..."
/>
<button type="submit">Send</button>
</form>
</div>
<!--Theme button-->
<div
class="dropdown position-fixed top-0 end-0 mb-3 me-3 bd-mode-toggle"
style="margin-top: 10px; margin-right: 10px"
>
<button
class="btn py-2 d-flex align-items-center"
id="bd-theme"
type="button"
aria-expanded="false"
data-bs-toggle="dropdown"
aria-label="Toggle theme (auto)"
style="color: inherit"
>
<!--dropdown-toggle-->
Theme
<span class="visually-hidden" id="bd-theme-text">Toggle theme</span>
</button>
<ul
class="dropdown-menu dropdown-menu-end shadow"
aria-labelledby="bd-theme-text"
>
<li>
<button
type="button"
class="dropdown-item d-flex align-items-center"
data-bs-theme-value="light"
aria-pressed="false"
id="lt"
>
Light
</button>
</li>
<li>
<button
type="button"
class="dropdown-item d-flex align-items-center"
data-bs-theme-value="dark"
aria-pressed="false"
id="dt"
>
Dark
</button>
</li>
</ul>
</div>
</div>
<script>
document
.getElementById("chat-form")
.addEventListener("submit", function (event) {
event.preventDefault();
const message = document.getElementById("message").value;
if (message.trim() == "") {
alert(
"Prompt cannot be empty. Please enter a prompt to generate a response."
);
} else {
fetch("/send_message", {
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
body: `message=${message}`,
})
.then((response) => response.json())
.then((data) => {
const chatHistory = document.getElementById("chat-history");
chatHistory.innerHTML = "";
data.chat_history.forEach((chat) => {
const listItem = document.createElement("li");
listItem.innerHTML = `User: ${chat.user}<br>Bot: ${chat.bot}`;
chatHistory.appendChild(listItem);
});
const messagesDiv = document.getElementById("messages");
messagesDiv.innerHTML = "";
data.chat_history.forEach((chat) => {
const userMessage = document.createElement("p");
userMessage.classList.add("user-message");
userMessage.innerHTML = `<strong>User:</strong> ${chat.user}`;
const botResponse = document.createElement("p");
botResponse.classList.add("bot-response");
botResponse.innerHTML = `<strong>Bot:</strong> ${chat.bot}`;
messagesDiv.appendChild(userMessage);
messagesDiv.appendChild(botResponse);
});
document.getElementById("message").value = "";
});
}
});
function SetDarkTheme() {
var body = document.body;
body.classList.remove("text-bg-light");
body.classList.add("text-bg-dark");
var ui = document.getElementById("app-ui");
ui.classList.remove("text-bg-light");
ui.classList.add("text-bg-dark");
// Store the theme preference in Local Storage
localStorage.setItem("theme", "dark");
}
function SetLightTheme() {
var body = document.body;
body.classList.add("text-bg-light");
body.classList.remove("text-bg-dark");
var ui = document.getElementById("app-ui");
ui.classList.add("text-bg-light");
ui.classList.remove("text-bg-dark");
// Store the theme preference in Local Storage
localStorage.setItem("theme", "light");
}
function applyThemePreference() {
var themePreference = localStorage.getItem("theme");
if (themePreference === "light") {
SetLightTheme();
} else {
SetDarkTheme();
}
}
// Add event listeners to the buttons
document.getElementById("lt").addEventListener("click", SetLightTheme);
document.getElementById("dt").addEventListener("click", SetDarkTheme);
// Call applyThemePreference on page load
applyThemePreference();
</script>
{% endblock %}
|