-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpopup.js
More file actions
438 lines (377 loc) · 13.7 KB
/
popup.js
File metadata and controls
438 lines (377 loc) · 13.7 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
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
// What's That!? - Popup Script
class PopupController {
constructor() {
this.currentTab = 'relationships';
this.stats = null;
this.availableChats = [];
this.selectedChat = null;
this.init();
}
init() {
this.setupEventListeners();
this.loadAvailableChats();
this.loadStats();
this.checkWhatsAppStatus();
}
setupEventListeners() {
// Tab switching
document.querySelectorAll('.tab-button').forEach(button => {
button.addEventListener('click', (e) => {
this.switchTab(e.target.dataset.tab);
});
});
// Action buttons
document.getElementById('refreshBtn').addEventListener('click', () => {
this.loadStats();
});
document.getElementById('clearBtn').addEventListener('click', () => {
this.clearData();
});
// Chat selector
document.getElementById('chatSelect').addEventListener('change', (e) => {
this.selectChat(e.target.value);
});
document.getElementById('refreshChatsBtn').addEventListener('click', () => {
this.loadAvailableChats();
});
}
switchTab(tabName) {
// Update tab buttons
document.querySelectorAll('.tab-button').forEach(btn => {
btn.classList.remove('active');
});
document.querySelector(`[data-tab="${tabName}"]`).classList.add('active');
// Update tab panels
document.querySelectorAll('.tab-panel').forEach(panel => {
panel.classList.remove('active');
});
document.getElementById(tabName).classList.add('active');
this.currentTab = tabName;
this.renderCurrentTab();
}
async loadStats() {
try {
this.showLoading();
// Request stats from background script
const response = await chrome.runtime.sendMessage({ type: 'GET_STATS' });
if (response && response.stats) {
this.stats = response.stats;
this.updateOverview();
this.renderCurrentTab();
this.updateStatus('Data loaded successfully', 'success');
} else {
this.updateStatus('No data available', 'warning');
this.showNoData();
}
} catch (error) {
console.error('Error loading stats:', error);
this.updateStatus('Error loading data', 'error');
this.showError();
}
}
updateOverview() {
if (!this.stats) return;
document.getElementById('totalMessages').textContent = this.stats.totalMessages || 0;
document.getElementById('totalReactions').textContent = this.stats.totalReactions || 0;
}
renderCurrentTab() {
if (!this.stats) return;
switch (this.currentTab) {
case 'relationships':
this.renderRelationships();
break;
case 'by-sender':
this.renderBySender();
break;
case 'by-reactor':
this.renderByReactor();
break;
case 'top-reactions':
this.renderTopReactions();
break;
}
}
renderRelationships() {
const container = document.querySelector('.relationships-content');
if (!this.stats.relationships || this.stats.relationships.length === 0) {
container.innerHTML = '<div class="no-data">No relationship data available</div>';
return;
}
let html = '';
// Show top 20 relationships
this.stats.relationships.slice(0, 20).forEach((rel, index) => {
const strengthPercent = (rel.strength * 100).toFixed(1);
const likelihoodPercent = (rel.likelihood * 100).toFixed(1);
const focusPercent = (rel.focus * 100).toFixed(1);
html += `
<div class="relationship-card">
<div class="relationship-header">
<div class="relationship-pair">
<span class="reactor-name-rel">${this.escapeHtml(rel.from)}</span>
<span class="arrow">→</span>
<span class="sender-name-rel">${this.escapeHtml(rel.to)}</span>
</div>
<div class="strength-badge">${strengthPercent}% strength</div>
</div>
<div class="relationship-metrics">
<div class="metric">
<div class="metric-label">Reactions</div>
<div class="metric-value">${rel.reactions}</div>
<div class="metric-subtext">total</div>
</div>
<div class="metric">
<div class="metric-label">Likelihood</div>
<div class="metric-value">${likelihoodPercent}%</div>
<div class="metric-subtext">${rel.reactions}/${rel.totalMessagesBy} msgs</div>
</div>
<div class="metric">
<div class="metric-label">Focus</div>
<div class="metric-value">${focusPercent}%</div>
<div class="metric-subtext">of their reactions</div>
</div>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: ${strengthPercent}%"></div>
</div>
</div>
`;
});
container.innerHTML = html;
}
renderBySender() {
const container = document.getElementById('bySenderResults');
if (!this.stats.bySender || Object.keys(this.stats.bySender).length === 0) {
container.innerHTML = '<div class="no-data">No sender data available</div>';
return;
}
const html = Object.entries(this.stats.bySender)
.sort((a, b) => {
const aTotal = Object.values(a[1]).reduce((sum, count) => sum + count, 0);
const bTotal = Object.values(b[1]).reduce((sum, count) => sum + count, 0);
return bTotal - aTotal;
})
.map(([sender, reactors]) => {
const totalReactions = Object.values(reactors).reduce((sum, count) => sum + count, 0);
const topReactor = Object.entries(reactors)
.sort((a, b) => b[1] - a[1])[0];
return `
<div class="sender-card">
<div class="sender-header">
<span class="sender-name">${this.escapeHtml(sender)}</span>
<span class="reaction-count">${totalReactions} reactions</span>
</div>
<div class="reactors-list">
${Object.entries(reactors)
.sort((a, b) => b[1] - a[1])
.slice(0, 5)
.map(([reactor, count]) => `
<div class="reactor-item">
<span class="reactor-name">${this.escapeHtml(reactor)}</span>
<span class="reactor-count">${count}</span>
</div>
`).join('')}
</div>
${topReactor ? `
<div class="top-reactor">
Most reactions from: <strong>${this.escapeHtml(topReactor[0])}</strong> (${topReactor[1]})
</div>
` : ''}
</div>
`;
}).join('');
container.innerHTML = html;
}
renderByReactor() {
const container = document.getElementById('byReactorResults');
if (!this.stats.byReactor || Object.keys(this.stats.byReactor).length === 0) {
container.innerHTML = '<div class="no-data">No reactor data available</div>';
return;
}
const html = Object.entries(this.stats.byReactor)
.sort((a, b) => {
const aTotal = Object.values(a[1]).reduce((sum, count) => sum + count, 0);
const bTotal = Object.values(b[1]).reduce((sum, count) => sum + count, 0);
return bTotal - aTotal;
})
.map(([reactor, senders]) => {
const totalReactions = Object.values(senders).reduce((sum, count) => sum + count, 0);
const topSender = Object.entries(senders)
.sort((a, b) => b[1] - a[1])[0];
return `
<div class="reactor-card">
<div class="reactor-header">
<span class="reactor-name">${this.escapeHtml(reactor)}</span>
<span class="reaction-count">${totalReactions} reactions given</span>
</div>
<div class="senders-list">
${Object.entries(senders)
.sort((a, b) => b[1] - a[1])
.slice(0, 5)
.map(([sender, count]) => `
<div class="sender-item">
<span class="sender-name">${this.escapeHtml(sender)}</span>
<span class="sender-count">${count}</span>
</div>
`).join('')}
</div>
${topSender ? `
<div class="top-sender">
Reacts most to: <strong>${this.escapeHtml(topSender[0])}</strong> (${topSender[1]})
</div>
` : ''}
</div>
`;
}).join('');
container.innerHTML = html;
}
renderTopReactions() {
const container = document.getElementById('topReactionsResults');
if (!this.stats.topReactions || Object.keys(this.stats.topReactions).length === 0) {
container.innerHTML = '<div class="no-data">No top reactions data available</div>';
return;
}
const html = Object.entries(this.stats.topReactions)
.map(([sender, reactors]) => `
<div class="top-reactions-card">
<div class="sender-name">${this.escapeHtml(sender)}</div>
<div class="top-reactors">
${Object.entries(reactors)
.map(([reactor, count]) => `
<div class="top-reactor-item">
<span class="reactor-name">${this.escapeHtml(reactor)}</span>
<span class="reaction-count">${count}</span>
</div>
`).join('')}
</div>
</div>
`).join('');
container.innerHTML = html;
}
async clearData() {
if (confirm('Are you sure you want to clear all reaction data?')) {
try {
await chrome.runtime.sendMessage({ type: 'CLEAR_DATA' });
this.stats = null;
this.updateOverview();
this.showNoData();
this.updateStatus('Data cleared', 'success');
} catch (error) {
console.error('Error clearing data:', error);
this.updateStatus('Error clearing data', 'error');
}
}
}
checkWhatsAppStatus() {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
const currentTab = tabs[0];
if (currentTab && currentTab.url.includes('web.whatsapp.com')) {
this.updateStatus('WhatsApp Web detected', 'success');
} else {
this.updateStatus('Open WhatsApp Web to start tracking', 'warning');
}
});
}
updateStatus(message, type) {
const statusText = document.querySelector('.status-text');
const statusDot = document.querySelector('.status-dot');
statusText.textContent = message;
statusDot.className = `status-dot ${type}`;
}
showLoading() {
document.querySelectorAll('.results-container').forEach(container => {
container.innerHTML = '<div class="loading">Loading data...</div>';
});
}
showNoData() {
document.querySelectorAll('.results-container').forEach(container => {
container.innerHTML = '<div class="no-data">No reaction data available yet. Start chatting on WhatsApp Web!</div>';
});
}
showError() {
document.querySelectorAll('.results-container').forEach(container => {
container.innerHTML = '<div class="error">Error loading data. Please try refreshing.</div>';
});
}
escapeHtml(text) {
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
}
async loadAvailableChats() {
try {
// Request available chats from content script
const response = await chrome.runtime.sendMessage({ type: 'GET_AVAILABLE_CHATS' });
if (response && response.chats) {
this.availableChats = response.chats;
this.populateChatSelector();
} else {
this.showChatSelectorError('No chats found');
}
} catch (error) {
console.error('Error loading chats:', error);
this.showChatSelectorError('Error loading chats');
}
}
populateChatSelector() {
const chatSelect = document.getElementById('chatSelect');
chatSelect.innerHTML = '';
if (this.availableChats.length === 0) {
chatSelect.innerHTML = '<option value="">No chats available</option>';
return;
}
// Add default option
const defaultOption = document.createElement('option');
defaultOption.value = '';
defaultOption.textContent = 'Select a chat/group...';
chatSelect.appendChild(defaultOption);
// Add chat options
this.availableChats.forEach(chat => {
const option = document.createElement('option');
option.value = chat.id;
option.textContent = chat.name;
chatSelect.appendChild(option);
});
}
showChatSelectorError(message) {
const chatSelect = document.getElementById('chatSelect');
chatSelect.innerHTML = `<option value="">${message}</option>`;
}
async selectChat(chatId) {
if (!chatId) {
this.selectedChat = null;
this.stats = null;
this.updateOverview();
this.showNoData();
return;
}
this.selectedChat = chatId;
try {
// Request stats for the selected chat
const response = await chrome.runtime.sendMessage({
type: 'GET_STATS_FOR_CHAT',
chatId: chatId
});
if (response && response.stats) {
this.stats = response.stats;
this.updateOverview();
this.renderCurrentTab();
this.updateStatus(`Data loaded for ${this.getChatName(chatId)}`, 'success');
} else {
this.updateStatus('No data available for this chat', 'warning');
this.showNoData();
}
} catch (error) {
console.error('Error loading chat stats:', error);
this.updateStatus('Error loading chat data', 'error');
this.showError();
}
}
getChatName(chatId) {
const chat = this.availableChats.find(c => c.id === chatId);
return chat ? chat.name : 'Unknown Chat';
}
}
// Initialize popup when DOM is loaded
document.addEventListener('DOMContentLoaded', () => {
new PopupController();
});