File size: 13,268 Bytes
540412a |
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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
/**
* Chat Module - Handles real-time messaging with Socket.IO
* The heart of our sarcastic British chat experience
*/
class SarcasticChat {
constructor() {
this.socket = null;
this.username = null;
this.messageCount = 0;
this.botResponseCount = 0;
this.isTyping = false;
this.typingTimer = null;
this.lastMessageTime = 0;
this.init();
}
init() {
this.initializeElements();
this.setupEventListeners();
}
initializeElements() {
this.chatMessages = document.getElementById('chatMessages');
this.messageInput = document.getElementById('messageInput');
this.messageForm = document.getElementById('messageForm');
this.typingIndicator = document.getElementById('typingIndicator');
this.userCountElement = document.getElementById('userCount');
this.messageCountElement = document.getElementById('messageCount');
this.botResponseCountElement = document.getElementById('botResponseCount');
}
setupEventListeners() {
// Message form submission
this.messageForm.addEventListener('submit', (e) => {
e.preventDefault();
this.sendMessage();
});
// Typing indicator
this.messageInput.addEventListener('input', () => {
this.handleTyping();
});
// Enter key handling
this.messageInput.addEventListener('keypress', (e) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
this.sendMessage();
}
});
// Focus input when page loads
this.messageInput.focus();
}
connect(username) {
this.username = username;
// Show connection modal
const connectionModal = new bootstrap.Modal(document.getElementById('connectionModal'));
connectionModal.show();
// Initialize Socket.IO connection
this.socket = io();
this.socket.on('connect', () => {
console.log('Connected to server');
this.joinChat();
connectionModal.hide();
// Show success effect
if (window.terminalEffects) {
window.terminalEffects.successFlash();
window.terminalEffects.showNetworkActivity();
}
});
this.socket.on('disconnect', () => {
console.log('Disconnected from server');
this.showSystemMessage('Connection lost. Attempting to reconnect...', 'warning');
});
this.socket.on('new_message', (data) => {
this.displayMessage(data);
if (data.is_bot) {
this.botResponseCount++;
this.updateStats();
}
});
this.socket.on('user_joined', (data) => {
this.showSystemMessage(`${data.username} joined the chat`, 'info');
});
this.socket.on('user_left', (data) => {
this.showSystemMessage(`${data.username} left the chat`, 'info');
});
this.socket.on('user_typing', (data) => {
this.showTypingIndicator(data.username, data.is_typing);
});
this.socket.on('chat_history', (messages) => {
this.loadChatHistory(messages);
});
this.socket.on('connect_error', (error) => {
console.error('Connection error:', error);
this.showSystemMessage('Failed to connect to chat server', 'error');
if (window.terminalEffects) {
window.terminalEffects.errorFlash();
}
});
}
joinChat() {
this.socket.emit('join_chat', {
username: this.username,
room: 'general'
});
}
sendMessage() {
const message = this.messageInput.value.trim();
if (!message) return;
// Rate limiting - prevent spam
const now = Date.now();
if (now - this.lastMessageTime < 1000) {
this.showSystemMessage('Slow down there, speed demon! One message per second.', 'warning');
return;
}
this.lastMessageTime = now;
// Send message via socket
this.socket.emit('send_message', { message });
// Clear input and update stats
this.messageInput.value = '';
this.messageCount++;
this.updateStats();
// Stop typing indicator
this.stopTyping();
// Show network activity
if (window.terminalEffects) {
window.terminalEffects.showNetworkActivity();
}
// Check for Easter eggs
this.checkEasterEggs(message);
}
displayMessage(messageData) {
const messageElement = document.createElement('div');
messageElement.className = `chat-message ${messageData.is_bot ? 'bot-message' : ''}`;
const avatarIcon = messageData.is_bot ?
'<i class="fas fa-robot text-terminal-accent"></i>' :
'<i class="fas fa-user text-terminal-green"></i>';
messageElement.innerHTML = `
<div class="message-header">
${avatarIcon}
<span class="message-username ${messageData.is_bot ? 'text-terminal-accent' : 'text-terminal-green'}">${this.escapeHtml(messageData.username)}</span>
<span class="message-timestamp">${messageData.timestamp}</span>
</div>
<div class="message-content">
${this.formatMessage(messageData.message)}
</div>
`;
// Add with animation
this.chatMessages.appendChild(messageElement);
// Power-on effect for bot messages
if (messageData.is_bot && window.terminalEffects) {
window.terminalEffects.powerOnEffect(messageElement);
}
// Scroll to bottom
this.scrollToBottom();
// Add glitch effect occasionally
if (Math.random() < 0.05) {
setTimeout(() => {
if (window.terminalEffects) {
window.terminalEffects.triggerGlitch();
}
}, 500);
}
}
formatMessage(message) {
// Escape HTML first
let formatted = this.escapeHtml(message);
// Add emoji support for common patterns
formatted = formatted.replace(/:\)/g, 'π');
formatted = formatted.replace(/:\(/g, 'π');
formatted = formatted.replace(/:D/g, 'π');
formatted = formatted.replace(/;-?\)/g, 'π');
formatted = formatted.replace(/π«/g, 'π«'); // Keep tea emoji
// Highlight British terms
const britishTerms = [
'brilliant', 'lovely', 'quite', 'rather', 'blimey',
'right then', 'I say', 'charming', 'queue', 'tea'
];
britishTerms.forEach(term => {
const regex = new RegExp(`\\b${term}\\b`, 'gi');
formatted = formatted.replace(regex, `<span class="text-terminal-green">${term}</span>`);
});
return formatted;
}
showSystemMessage(message, type = 'info') {
const messageElement = document.createElement('div');
messageElement.className = 'chat-message system-message';
let iconClass = 'fas fa-info-circle';
let textClass = 'text-terminal-accent';
switch(type) {
case 'warning':
iconClass = 'fas fa-exclamation-triangle';
textClass = 'text-warning';
break;
case 'error':
iconClass = 'fas fa-times-circle';
textClass = 'text-danger';
break;
case 'success':
iconClass = 'fas fa-check-circle';
textClass = 'text-success';
break;
}
messageElement.innerHTML = `
<div class="message-content ${textClass}" style="border-left-color: currentColor;">
<i class="${iconClass} me-2"></i>${this.escapeHtml(message)}
</div>
`;
this.chatMessages.appendChild(messageElement);
this.scrollToBottom();
}
handleTyping() {
if (!this.isTyping) {
this.isTyping = true;
this.socket.emit('typing', { is_typing: true });
}
// Clear existing timer
if (this.typingTimer) {
clearTimeout(this.typingTimer);
}
// Set new timer
this.typingTimer = setTimeout(() => {
this.stopTyping();
}, 2000);
}
stopTyping() {
if (this.isTyping) {
this.isTyping = false;
this.socket.emit('typing', { is_typing: false });
}
if (this.typingTimer) {
clearTimeout(this.typingTimer);
this.typingTimer = null;
}
}
showTypingIndicator(username, isTyping) {
if (isTyping) {
this.typingIndicator.innerHTML = `<i class="fas fa-ellipsis-h"></i> ${this.escapeHtml(username)} is typing...`;
this.typingIndicator.style.display = 'block';
} else {
this.typingIndicator.style.display = 'none';
}
}
loadChatHistory(messages) {
// Clear existing messages except system welcome
const systemMessages = this.chatMessages.querySelectorAll('.system-message, .fade-in');
this.chatMessages.innerHTML = '';
// Re-add system messages
systemMessages.forEach(msg => this.chatMessages.appendChild(msg));
// Add chat history
messages.forEach(message => this.displayMessage(message));
}
updateStats() {
if (this.messageCountElement) {
this.messageCountElement.textContent = this.messageCount;
}
if (this.botResponseCountElement) {
this.botResponseCountElement.textContent = this.botResponseCount;
}
// Update sarcasm level based on bot responses
const sarcasmBar = document.getElementById('sarcasmLevel');
if (sarcasmBar && this.botResponseCount > 0) {
const level = Math.min(85 + (this.botResponseCount * 2), 100);
sarcasmBar.style.width = `${level}%`;
}
}
checkEasterEggs(message) {
const lowerMessage = message.toLowerCase();
// Tea time easter egg
if (lowerMessage.includes('tea time') || lowerMessage.includes('teatime')) {
setTimeout(() => {
this.showSystemMessage('π« TEA TIME DETECTED! The bot approves greatly!', 'success');
}, 1000);
}
// Queue easter egg
if (lowerMessage.includes('queue')) {
setTimeout(() => {
this.showSystemMessage('π¬π§ Proper queuing etiquette detected. Carry on!', 'success');
}, 1500);
}
// Sarcasm level easter egg
if (lowerMessage.includes('sarcasm') || lowerMessage.includes('sarcastic')) {
setTimeout(() => {
this.showSystemMessage('Did someone mention sarcasm? How terribly meta.', 'info');
}, 2000);
}
}
scrollToBottom() {
this.chatMessages.scrollTop = this.chatMessages.scrollHeight;
}
escapeHtml(text) {
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
}
// Public method to connect from external script
connectToChat(username) {
this.connect(username);
}
}
// Initialize chat functionality
let sarcasticChat;
function initializeChat(username) {
sarcasticChat = new SarcasticChat();
sarcasticChat.connectToChat(username);
}
// Boot sequence when page loads
document.addEventListener('DOMContentLoaded', () => {
// Add some terminal boot messages for fun
const bootMessages = [
'Initializing sarcasm protocols...',
'Loading British wit database...',
'Calibrating eye-roll mechanisms...',
'Connecting to tea server...',
'Queue management system: ONLINE',
'Deploying devastating humor...',
'Ready for maximum sarcasm!'
];
// Only show boot sequence on chat page
if (window.location.pathname === '/chat') {
const container = document.querySelector('.container-fluid');
if (container && window.terminalEffects) {
// Small delay to let other effects initialize
setTimeout(() => {
window.terminalEffects.bootSequence(container, bootMessages, () => {
console.log('Chat system ready for maximum British sarcasm!');
});
}, 1000);
}
}
});
// Expose globally
window.initializeChat = initializeChat;
window.SarcasticChat = SarcasticChat; |