- Add username field to right sidebar and mobile modal with 'guest' default
- Implement real-time username sync with URL query string updates
- Add opencompletion.com button and new room creation in left sidebar
- Implement room name slugification (e.g. "a whole new world" → "a-whole-new-world")
- Create shared utils.js for common functions like slugify
- Add single search result auto-redirect functionality
- Remove redundant UI elements ("Create New Room" header, docs link)
- Preserve user settings (username, model, voice) across redirects and room creation
Technical improvements:
- Consolidated duplicate code into shared utility functions
- Enhanced search logic with parameter preservation
- Improved mobile/desktop sync for all input fields
- Better URL handling and query string management
65 lines
2.1 KiB
HTML
65 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Chatroom</title>
|
|
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.0.1/socket.io.min.js"></script>
|
|
<script src="{{ url_for('static', filename='js/utils.js') }}"></script>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f7f7f7;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
#chat-container {
|
|
background-color: #ffffff;
|
|
border-radius: 5px;
|
|
padding: 15px;
|
|
width: 100%;
|
|
max-width: 600px;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
#chat {
|
|
height: 300px;
|
|
overflow-y: scroll;
|
|
border: 1px solid #e1e1e1;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
#message {
|
|
width: 98%;
|
|
border: 1px solid #e1e1e1;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="chat-container">
|
|
<h2>Join a Chat Room</h2>
|
|
<form id="join-room-form">
|
|
<input id="username" type="text" placeholder="Enter your username">
|
|
<input id="room" type="text" placeholder="Enter room name">
|
|
<button type="submit">Join</button>
|
|
</form>
|
|
</div>
|
|
|
|
<script>
|
|
document.getElementById('join-room-form').addEventListener('submit', function(e) {
|
|
e.preventDefault();
|
|
const username = document.getElementById('username').value;
|
|
const room = slugify(document.getElementById('room').value);
|
|
window.location.href = `/chat/${room}?username=${encodeURIComponent(username)}`;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|