-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript_js.js
More file actions
344 lines (285 loc) · 10.6 KB
/
Copy pathscript_js.js
File metadata and controls
344 lines (285 loc) · 10.6 KB
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
// Enhanced Chat Management System
class ChatManager {
constructor() {
this.participants = new Map();
this.messageHistory = [];
this.activeTypers = new Set();
this.participantCount = 0;
this.messageIdCounter = 1;
// Initialize with some realistic demo data
this.initializeDemoEnvironment();
}
initializeDemoEnvironment() {
// Add some demo participants for realistic feel
const demoUsers = [
'Alexandra Chen', 'Marcus Rodriguez', 'Sarah Johnson',
'David Kim', 'Emma Thompson'
];
demoUsers.forEach((name, index) => {
const demoId = `demo_user_${index + 1}_${Date.now()}`;
this.addParticipant(demoId, name);
});
}
addParticipant(userId, displayName) {
this.participants.set(userId, {
displayName,
userId,
joinedAt: new Date(),
isActive: true
});
this.participantCount++;
return { success: true };
}
removeParticipant(userId) {
const participant = this.participants.get(userId);
if (participant) {
this.participants.delete(userId);
this.activeTypers.delete(userId);
this.participantCount--;
return participant;
}
return null;
}
createMessage(userId, content) {
const participant = this.participants.get(userId);
if (!participant || !content.trim()) return { success: false };
const messageObj = {
messageId: this.messageIdCounter++,
displayName: participant.displayName,
content: content.trim(),
createdAt: new Date(),
senderId: userId,
messageType: 'user'
};
this.messageHistory.push(messageObj);
// Clear typing status when message is sent
this.updateTypingStatus(userId, false);
return { success: true, messageData: messageObj };
}
updateTypingStatus(userId, isCurrentlyTyping) {
const participant = this.participants.get(userId);
if (!participant) return;
if (isCurrentlyTyping) {
this.activeTypers.add(userId);
} else {
this.activeTypers.delete(userId);
}
}
getActiveTypers(excludeUserId) {
const typerNames = [];
for (const userId of this.activeTypers) {
if (userId !== excludeUserId) {
const participant = this.participants.get(userId);
if (participant) typerNames.push(participant.displayName);
}
}
return typerNames;
}
createSystemMessage(content) {
const systemMsg = {
messageId: this.messageIdCounter++,
content: content,
createdAt: new Date(),
messageType: 'system'
};
this.messageHistory.push(systemMsg);
return systemMsg;
}
}
// Application State Management
const chatSystem = new ChatManager();
let currentUser = null;
let currentUserId = null;
let typingTimeout = null;
let autoResponseTimer = null;
// DOM Element References
const chatContainer = document.getElementById('chatMessages');
const messageField = document.getElementById('textInput');
const sendButton = document.getElementById('submitBtn');
const participantDisplay = document.getElementById('userCounter');
const typingIndicator = document.getElementById('typingStatus');
const typingText = document.getElementById('typingText');
const welcomeModal = document.getElementById('welcomeScreen');
const nameField = document.getElementById('nameInput');
// Initialize chat session
function initializeChat() {
const userName = nameField.value.trim();
if (userName.length < 2) {
alert('Please enter a valid name (minimum 2 characters)');
return;
}
// Generate unique user session
currentUserId = `user_${Date.now()}_${Math.random().toString(36).substr(2, 9)}`;
currentUser = userName;
// Register user in system
chatSystem.addParticipant(currentUserId, userName);
// Hide welcome screen
welcomeModal.style.display = 'none';
// Add welcome message
const welcomeMsg = chatSystem.createSystemMessage(`${userName} joined the conversation`);
displaySystemMessage(welcomeMsg);
// Update UI
updateParticipantCount();
messageField.focus();
// Start demo activity
scheduleAutomaticResponses();
}
// Send user message
function publishMessage() {
const messageText = messageField.value.trim();
if (messageText === '' || !currentUserId) return;
// Create and store message
const result = chatSystem.createMessage(currentUserId, messageText);
if (result.success) {
displayUserMessage(result.messageData, true);
messageField.value = '';
autoResizeTextarea();
// Trigger demo responses
scheduleAutomaticResponses();
}
}
// Display user message in chat
function displayUserMessage(messageData, isSentByCurrentUser = false) {
const messageElement = document.createElement('div');
messageElement.className = `message-item ${isSentByCurrentUser ? 'sent' : ''}`;
const timeString = messageData.createdAt.toLocaleTimeString([], {
hour: '2-digit',
minute: '2-digit'
});
messageElement.innerHTML = `
<div class="message-content">
<div class="message-header">
<span class="username-badge">${escapeHtmlContent(messageData.displayName)}</span>
<span class="timestamp">${timeString}</span>
</div>
<div class="message-bubble">${escapeHtmlContent(messageData.content)}</div>
</div>
`;
chatContainer.appendChild(messageElement);
scrollToLatestMessage();
}
// Display system notifications
function displaySystemMessage(messageData) {
const notificationElement = document.createElement('div');
notificationElement.className = 'system-notification';
notificationElement.textContent = messageData.content;
chatContainer.appendChild(notificationElement);
scrollToLatestMessage();
}
// Demo response system for realistic chat experience
function scheduleAutomaticResponses() {
clearTimeout(autoResponseTimer);
// Random delay between 2-8 seconds
const delay = Math.random() * 6000 + 2000;
autoResponseTimer = setTimeout(() => {
generateDemoResponse();
}, delay);
}
function generateDemoResponse() {
// Predefined realistic responses
const responses = [
"That's really interesting! 🤔",
"I completely agree with that point",
"Thanks for sharing your thoughts!",
"Great to have you here! 👋",
"How has everyone been doing lately?",
"That makes a lot of sense",
"Interesting perspective on that topic",
"Hope everyone is having a good day! ☀️",
"I've been thinking about that too",
"Really good point there"
];
// Get random demo participant
const demoParticipants = Array.from(chatSystem.participants.values())
.filter(p => p.userId !== currentUserId && p.userId.startsWith('demo_'));
if (demoParticipants.length === 0) return;
const randomParticipant = demoParticipants[Math.floor(Math.random() * demoParticipants.length)];
const randomResponse = responses[Math.floor(Math.random() * responses.length)];
// Show typing indicator first
displayTypingIndicator([randomParticipant.displayName]);
setTimeout(() => {
hideTypingIndicator();
// Create and display response
const result = chatSystem.createMessage(randomParticipant.userId, randomResponse);
if (result.success) {
displayUserMessage(result.messageData, false);
// Schedule next response
scheduleAutomaticResponses();
}
}, Math.random() * 2000 + 1000);
}
// Typing indicator management
function handleUserTyping() {
if (!currentUserId) return;
chatSystem.updateTypingStatus(currentUserId, true);
clearTimeout(typingTimeout);
typingTimeout = setTimeout(() => {
chatSystem.updateTypingStatus(currentUserId, false);
}, 3000);
}
function displayTypingIndicator(userNames) {
if (userNames.length > 0) {
const displayText = userNames.length === 1
? `${userNames[0]} is typing`
: `${userNames.slice(0, -1).join(', ')} and ${userNames[userNames.length - 1]} are typing`;
typingText.textContent = displayText;
typingIndicator.style.display = 'flex';
}
}
function hideTypingIndicator() {
typingIndicator.style.display = 'none';
}
// UI Helper Functions
function updateParticipantCount() {
const count = chatSystem.participantCount;
participantDisplay.textContent = `${count} participant${count !== 1 ? 's' : ''} online`;
}
function escapeHtmlContent(text) {
const tempDiv = document.createElement('div');
tempDiv.textContent = text;
return tempDiv.innerHTML;
}
function scrollToLatestMessage() {
chatContainer.scrollTop = chatContainer.scrollHeight;
}
function autoResizeTextarea() {
messageField.style.height = 'auto';
messageField.style.height = Math.min(messageField.scrollHeight, 120) + 'px';
}
// Event Listeners Setup
messageField.addEventListener('keypress', (event) => {
if (event.key === 'Enter' && !event.shiftKey) {
event.preventDefault();
publishMessage();
} else {
handleUserTyping();
}
});
messageField.addEventListener('input', autoResizeTextarea);
nameField.addEventListener('keypress', (event) => {
if (event.key === 'Enter') {
initializeChat();
}
});
// Application Initialization
document.addEventListener('DOMContentLoaded', () => {
nameField.focus();
// Add initial system message
setTimeout(() => {
const welcomeMsg = chatSystem.createSystemMessage('Welcome to ConnectChat! Connect with people in real-time.');
displaySystemMessage(welcomeMsg);
}, 1000);
});
// Initialize some demo activity
setTimeout(() => {
const demoParticipants = Array.from(chatSystem.participants.values())
.filter(p => p.userId.startsWith('demo_'));
if (demoParticipants.length > 0) {
const welcomer = demoParticipants[0];
const result = chatSystem.createMessage(welcomer.userId, 'Hello everyone! Welcome to our chat room. Feel free to introduce yourselves! 😊');
if (result.success) {
displayUserMessage(result.messageData, false);
updateParticipantCount();
}
}
}, 3000);