-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.js
397 lines (341 loc) · 11.1 KB
/
popup.js
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
const background = chrome.extension.getBackgroundPage();
var ctx;
var chart;
let page = 'session'; // page is to determine current page, allow 'session'/'stopwatch'
var tab;
var timer;
var data = {
type: 'doughnut',
// The data for dataset. Start empty, populate on intervals.
data: {
labels: [],
datasets: [{
backgroundColor: [
'rgb(255, 99, 132)',
'rgb(255, 159, 64)',
'rgb(255, 205, 86)',
'rgb(75, 192, 192)',
'rgb(54, 162, 235)',
'rgb(153, 102, 255)'
],
data: [],
}]
},
options: {
legend: {
position: 'bottom',
display: true,
labels: {
boxWidth: 15
},
onClick: null,
onHover: function(event, activeElement){
// TODO highlight on hover
// var activeSegment = chart.getDatasetMeta(0).data[activeElement.index];
// var activeSegment = chart.getDatasetMeta(0);
// console.log(activeSegment);
// chart.updateHoverStyle([activeSegment], null, true);
// chart.draw();
}
},
tooltips: {
callbacks: {
label: function(tooltipItem, chartData) {
return chartData.labels[tooltipItem.index] + ": " + chartData.datasets[0].data[tooltipItem.index] + "%";
}
}
}
}
};
// Wait untill popup page finish loading
document.addEventListener('DOMContentLoaded', function() {
// Initialize canvas' context and chart
ctx = document.getElementById('myChart').getContext('2d');
chart = new Chart(ctx, data);
page = background.getPopupPage();
// Initialize timer
timer = background.getSessionTimer();
$('.stopwatch-toggle').on('click', function(){
background.toggleStopwatch();
updatePage(true);
});
$('.stopwatch-reset').on('click', function(){
background.resetStopwatch();
updatePage(true);
});
$('.btn-contact').on('click', function(){
var win = window.open('https://thisisyohan.com');
win.focus();
});
$('.btn-debugger').on('click', function(){
// var win = window.open('chrome://flags');
// win.focus();
// chrome.tabs.update({ url: 'chrome://flags/' });
// chrome.tabs.query({active: true}, function(tab) {
// // If selected tab is newtab, redirect tab. Else, open new tab.
// if(tab[0].url === 'chrome://newtab/') {
// chrome.tabs.update(tab[0].id, {url: 'index.html'}, function(){});
// } else {
chrome.tabs.create({ url: "chrome://flags/#silent-debugger-extension-api"});
// });
});
$('.btn-main-page').on('click', function(){
background.openMainPage();
});
$('.btn-nav-session, .btn-nav-stopwatch').on('click', function(){
let clicked = $(this).attr('class').split(' ')[0].split('-')[2];
// console.log();
if(page !== clicked){
$('.btn-nav-session, .btn-nav-stopwatch').toggleClass('btn-nav-active');
changePage(clicked);
}
});
// Call updatePage the first time.
updatePage(true);
// Set an interval and call updatePage each seconds.
setInterval(function() {
updatePage(false);
}, 500);
});
function changePage(type){
// Do nothing if it's the same
if(page === type) return;
page = type;
background.changePopupPage();
if(type === 'session'){
timer = background.getSessionTimer();
updatePage(true);
} else{
if(background.areStopwatch()){
timer = background.getStopwatchTimer();
updatePage(true);
} else {
timer = 0;
updatePage(true);
}
}
}
/**
* updatePage is a function that will update the popup page. updatePage will
* accept boolean to check if it's the first call or not.
* @param first {Boolean}
*/
function updatePage(first){
/**
* Get either session or stopwatch pages from background.js and
* with boolean to check first or not call.
**/
let datas = (page === 'session') ? background.getPages(first) : background.getStopwatchPages(first);
if(first){
if(page === 'session'){
timer = background.getSessionTimer();
if(!$('.btn-nav-session').hasClass('btn-nav-active')){
$('.btn-nav-session').toggleClass('btn-nav-active');
}
$('.stopwatch-toggle').addClass('hide');
$('.stopwatch-reset').addClass('hide');
$('.timer-title').text('Session Timer')
} else {
timer = background.getStopwatchTimer();
if(!$('.btn-nav-stopwatch').hasClass('btn-nav-active')){
$('.btn-nav-stopwatch').toggleClass('btn-nav-active');
}
$('.stopwatch-toggle').removeClass('hide');
$('.stopwatch-reset').removeClass('hide');
let btnText = background.areStopwatch() ? 'Stop' : 'Start';
$('.stopwatch-toggle').text(btnText);
$('.timer-title').text('Stopwatch Timer')
}
} else {
if(page === 'session'){
timer = background.getSessionTimer();
} else {
timer = background.getStopwatchTimer();
}
}
// Set timer UI.
console.log(timer);
if(timer === 0){
$('#session-timer').text(moment.duration(0, 'milliseconds').format('hh:mm:ss', {trim: false}));
} else {
$('#session-timer').text(moment.duration(timer, 'milliseconds').format('hh:mm:ss', {trim: false}));
}
// Check if pages from background changed.
if(datas) {
updatePageTable(datas);
updatePageChart(datas);
chart.update();
}
}
/**
* updatePageChart is a function that will update the popup page's doughtnut chart.
* @param pages {Pages Object}
*/
function updatePageChart(pages){
// Sort the pages object by total size descending.
pages.sort((a,b) => {
return (b.transferred + b.cachedTransferred) - (a.transferred + a.cachedTransferred);
});
// Get the total data transferred.
var totalData = getTotal(pages, 'total');
// Initialize temporary data, label, and etc data
var tempData = [];
var tempLabel = [];
var otherData = 0;
// Iterate through pages object to get the 5 biggest page usage and other datas.
$.each(pages, function( i, v ) {
var pageData = v.transferred + v.cachedTransferred;
if(i < 5) {
tempLabel.push(v.domain);
tempData.push(convertToPercent(totalData, pageData));
} else {
otherData += v.transferred + v.cachedTransferred;
}
});
// If there are more than 5 pages, then add other label
if(pages.length > 5) {
tempData.push(convertToPercent(totalData, otherData));
tempLabel.push('Other');
}
// Add the label and data to chart
data.data.labels = tempLabel;
data.data.datasets[0].data = tempData;
}
function highlightSegment(index, isHighlight) {
var activeSegment = chart.getDatasetMeta(0).data[index];
if (isHighlight) chart.updateHoverStyle([activeSegment], null, true);
else chart.updateHoverStyle([activeSegment], null, false);
chart.draw();
}
function convertToPercent(total, v){
return Math.round((v/total) * 100);
}
function updatePageTable(pages) {
$( "#session-table > tbody > tr.tr-data" ).remove();
pages.sort((a,b) => {
return b.update - a.update;
});
var otherDataTransferred = 0;
var otherDataCache = 0;
var row = '';
$.each(pages, function(i,v){
if(i < 5){
row = "<tr class=\"tr-data\">"
+ "<td>"
+ v.domain
+ "</td>"
+ "<td>"
+ convertByteTable(v.transferred)
+ "</td>"
+ "<td>"
+ convertByteTable(v.cachedTransferred)
+ "</td>"
+ "</tr>";
$( "#session-table > tbody" ).append( row );
} else {
otherDataTransferred += v.transferred;
otherDataCache += v.cachedTransferred;
}
});
if(pages.length > 5) {
row = "<tr class=\"tr-data\">"
+ "<td>Other</td>"
+ "<td>"
+ convertByteTable(otherDataTransferred)
+ "</td>"
+ "<td>"
+ convertByteTable(otherDataCache)
+ "</td>"
+ "</tr>";
$( "#session-table > tbody" ).append( row );
}
row = "<tr class=\"tr-data\">"
+ "<td>Total</td>"
+ "<td>"
+ convertByteTable(getTotal(pages, 'transferred'))
+ "</td>"
+ "<td>"
+ convertByteTable(getTotal(pages, 'cached'))
+ "</td>"
+ "</tr>";
$( "#session-table > tbody" ).append( row );
}
function convertByteTotal(d, t){
var b = 0;
$.each( d, function( k, v ) {
switch(t){
case 1:
b += v.size;
break;
case 2:
b += (v.size-v.cache);
break;
case 3:
b += v.cache;
break;
default:
break;
}
});
return (b/1000000).toFixed(2) + " MB"
}
function convertByteTable(b){
return (b/1000000).toFixed(2) + " MB"
}
function convertTimer(t){
var dur = moment.duration(timer, "ms");
var string = '';
var d = dur.days();
var h = dur.hours();
var m = dur.minutes();
var s = dur.seconds();
if((dur.days() > 0 )){
string += dur.days() + ":";
}
if(dur.hours() > 0 ){
string += (dur.hours() > 9) ? dur.hours() + ':' : '0' + dur.hours() + ':';
}
if(dur.hours() > 0 ){
string += (dur.hours() > 9) ? dur.hours() + ':' : '0' + dur.hours() + ':';
}
if(dur.hours() > 0 ){
string += (dur.hours() > 9) ? dur.hours() + ':' : '0' + dur.hours() + ':';
}
return string;
}
function convertFiles(d){
var html = "";
html += "<tr>";
html += "<th>Page</th>";
html += "<th>Transferred</th>";
html += "<th>Cached</th>";
html += "</tr>";
console.log(d);
d.forEach(element => {
html += "<tr>";
html += "<td>" + element.domain + "</td>";
html += "<td>" + convertByteTable(element.transferred) + "</td>";
html += "<td>" + convertByteTable(element.cachedTransferred) + "</td>";
html += "</tr>";
});
return html;
}
function getTotal(pages, type) {
var totalData = 0;
$.each(pages, function( i, v ) {
switch(type){
case 'cached':
totalData += v.cachedTransferred;
break;
case 'transferred':
totalData += v.transferred;
break;
case 'total':
totalData += v.transferred + v.cachedTransferred;
break;
default:
break;
}
});
return totalData;
}