-
Notifications
You must be signed in to change notification settings - Fork 28
/
app.js
463 lines (409 loc) · 13.6 KB
/
app.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
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
/*https://developers.google.com/chart/interactive/docs/library_loading_enhancements#frozen-versions
* init()
* urlForEfficiency() //create url based on parameters
* getEfficiencyData()//get json obj
* calcEfficiency()
* calcHours()
* filter()
* findAvg()
* downloadEfficiencyData()
*
*
* urlForActivity()
* getActivityData()
* calcActivity()
* groupByCategory()
* printInfo()
* .toHHMMSS
*
* downloadActivityData()
* updateProdTrend()
* datePickerOptions()
* */
var key = "",
rb = "",
re = "",
pv = "",
rk = "",
rs = "hour",
format = "json";
var activityUrl = "",
efficiencyUrl = "";
var failCount = 0;
var usingFiles = false;
var topAct = 90;
var degreeTrend = 10;
google.charts.load('43', {
'packages': ['corechart', 'table', 'gauge', 'controls']
});
$(".spinner").hide();
function init() {
usingFiles = false;
$("#downloadSection").empty();
$(".spinner").show();
key = document.getElementById('api_key').value;
rb = document.getElementById('from').value;
re = document.getElementById('to').value;
urlForEfficiency();
getEfficiencyData();
urlForActivity();
getActivityData();
}
function datePickerOptions() {
$('#datepicker').datepicker({
format: "yyyy-mm-dd",
clearBtn: true,
todayHighlight: true
});
}
var efficencyUploaded;
var activityUploaded;
(function () {
function onChangeEfficency(event) {
var reader = new FileReader();
reader.onload = onReaderLoadEfficency;
reader.readAsText(event.target.files[0]);
}
function onReaderLoadEfficency(event) {
efficencyUploaded = JSON.parse(event.target.result);
console.log(efficencyUploaded);
}
function onChangeActivity(event) {
var reader = new FileReader();
reader.onload = onReaderLoadActivity;
reader.readAsText(event.target.files[0]);
}
function onReaderLoadActivity(event) {
activityUploaded = JSON.parse(event.target.result);
console.log(activityUploaded);
}
document.getElementById('fileEfficency').addEventListener('change', onChangeEfficency);
document.getElementById('fileActivity').addEventListener('change', onChangeActivity);
}());
function checkFiles() {
usingFiles = true;
$("#act-display").empty();
if (efficencyUploaded != null) {
calcEfficiency(efficencyUploaded);
calcHours(efficencyUploaded);
}
if (activityUploaded != null) {
calcActivity(activityUploaded);
}
}
function urlForEfficiency() {
pv = "interval"; // #do not change this
rk = "efficiency";
efficiencyUrl = "http://www.rescuetime.com/anapi/data?key=" + key + "&perspective=" + pv + "&restrict_kind=" + rk + "&interval=" + rs + "&restrict_begin=" + rb + "&restrict_end=" + re + "&format=json";
console.log(efficiencyUrl);
}
function urlForActivity() {
pv = "rank"; // #do not change this
rk = "activity";
activityUrl = "http://www.rescuetime.com/anapi/data?key=" + key + "&perspective=" + pv + "&restrict_kind=" + rk + "&interval=" + rs + "&restrict_begin=" + rb + "&restrict_end=" + re + "&format=json";
console.log(activityUrl);
}
function getEfficiencyData() {
$.getJSON('http://allow-any-origin.appspot.com/' + efficiencyUrl, function (data) {
if (typeof data.rows === 'undefined') {
console.log("undefined: maybe invalid parameters!?");
} else {
calcEfficiency(data);
calcHours(data);
if (document.getElementById('download').checked) {
downloadEfficiencyData(data);
}
}
}).fail(function () {
failCount++;
if (failCount < 3) {
console.log("failed in getEfficiencyData");
init();
} else console.log("Failed 3 times attempting to: getJSON!");
});
}
function getActivityData() {
$.getJSON('http://allow-any-origin.appspot.com/' + activityUrl, function (data) {
if (typeof data.rows === 'undefined') {
console.log("undefined: maybe invalid parameters!?");
} else {
calcActivity(data);
if (document.getElementById('download').checked) {
downloadActivityData(data);
}
}
}).fail(function () {
failCount++;
if (failCount < 3) {
console.log("failed in getEfficiencyData");
init();
} else console.log("Failed 3 times attempting to: getJSON!");
});
}
function downloadEfficiencyData(data) {
var JSONString = JSON.stringify(data);
var file = "text/json;charset=utf-8," + encodeURIComponent(JSONString);
$('<a href="data:' + file + '" download="EfficiencyData.json" id="downEfficency">downloadEfficiencyData</a> <br>').appendTo('#downloadSection');
//$('#downEfficency').get(0).click();
}
function downloadActivityData(data) {
var JSONString = JSON.stringify(data);
var file = "text/json;charset=utf-8," + encodeURIComponent(JSONString);
$('<a href="data:' + file + '" download="ActivityData.json" id="downEfficency">downloadActivityDataa</a> <br>').appendTo('#downloadSection');
//$('#downEfficency').get(0).click();
}
function calcEfficiency(file) {
var Combined = [];
Combined[0] = ['Hours', 'Productivity'];
for (var i = 0; i < file.rows.length; i++) {
Combined[i + 1] = [new Date(file.rows[i][0]), file.rows[i][4]];
}
degreeTrend = parseInt(document.getElementById("numberSpinner").value);
//second parameter is false because first row is headers, not data.
var data = google.visualization.arrayToDataTable(Combined, false);
var options = {
height: 600,
title: 'Productivity for the selected range',
vAxis: {
title: 'Productivity',
titleTextStyle: {
color: '#FF0000'
}
},
hAxis: {
title: 'Time',
titleTextStyle: {
color: '#FF0000'
}
},
crosshair: {
trigger: 'both'
}, // Display cross-air on focus and selection.
legend: {
position: 'top'
},
trendlines: {
0: {
type: 'polynomial',
degree: degreeTrend,
color: '#1c91c0',
lineWidth: 5,
opacity: 1
}
},
series: {
0: {
color: '#F6C5BA',
opacity: 0.5
}
},
animation: {
duration: 500,
startup: true,
easing: 'in'
}
};
var chart = new google.visualization.LineChart(document.getElementById('efficiency_graph'));
chart.draw(data, options);
}
function updateProdTrend() {
if (efficencyUploaded != null && usingFiles)
calcEfficiency(efficencyUploaded);
if (!usingFiles)
getEfficiencyData();
}
function calcHours(file) {
var combinedPoints = [];
var groupBy = [];
var combinedAvg = [];
var plotAvg = [];
combinedPoints[0] = ['Hour', 'Productivity'];
console.log("debg");
for (var i = 0; i < file.rows.length; i++) {
combinedPoints[i + 1] = [parseInt(file.rows[i][0].substr(11, 2)), file.rows[i][4]];//note: I can't use Date()
}
for (var i = 0; i < 24; i++) {
groupBy[i] = filter(combinedPoints, i);
}
for (var i = 0; i < 24; i++) {
combinedAvg[i] = [i, findAvg(groupBy[i])];
}
//second parameter is false because first row is headers, not data.
var data = google.visualization.arrayToDataTable(combinedPoints, false);
var avgData = google.visualization.arrayToDataTable(combinedAvg, true);
var options = {
title: 'Productivity for hour',
'height': 600,
hAxis: {
title: 'Hour',
gridlines: {
count: 24
}
},
vAxis: {
title: 'Productivity',
minValue: 0
},
legend: {
position: 'bottom'
}
};
var avgOptions = {
title: 'Your average pro through the day',
'height': 600,
curveType: 'function',
hAxis: {
title: 'Hour',
gridlines: {
count: 24
}
},
vAxis: {
title: 'Productivity',
minValue: 0
},
animation: {
duration: 500,
startup: true,
easing: 'in'
},
legend: {
position: 'none'
},
crosshair: {
trigger: 'selection'
}
};
var avgChart = new google.visualization.LineChart(document.getElementById('avg_hour_graph'));
var chart = new google.visualization.ScatterChart(document.getElementById('hour_graph'));
$(".spinner").hide();
avgChart.draw(avgData, avgOptions);
chart.draw(data, options);
}
//This function groups the data for every hour in an array
function filter(arr, cond) {
return arr.filter(function (element) {
return element[0] === cond;
});
}
//This function finds the average productivity for an hour. (Is executed 24 times)
function findAvg(arr) {
var length = arr.length;
var avg;
var sum = 0;
for (var i = 0; i < length; i++) {
sum += arr[i][1];
}
avg = sum / length;
return avg;
}
function calcActivity(file) {
$("#act-display").empty();
console.log(topAct);
topAct=document.getElementById("numberSpinnerTop").value;
var Combined = [];
var color;
Combined[0] = ['Results', 'Minutes', {
role: 'style'
}];
// topAct = parseInt(document.getElementById("numberSpinnerTop"));
// TODO: fixthis
for (var i = 0; i < topAct; i++) {
switch (file.rows[i][5]) {
case -2:
color = "#C5392F";
break;
case -1:
color = "#92343B";
break;
case 0:
color = "#655568";
break;
case 1:
color = "#395B96";
break;
case 2:
color = "#2F78BD;";
break;
}
var tmp = file.rows[i][1];
//todo: inseire tempo formattato o almeno la possibilità di sceglire minuti/secondi etc
var mins = tmp / 60;
Combined[i + 1] = [file.rows[i][3], mins, color];
}
groupByCategory(file);
//second parameter is false because first row is headers, not data.
var data = google.visualization.arrayToDataTable(Combined, false);
var dashboard = new google.visualization.Dashboard(document.getElementById('act-numberRangeFilter_dashboard_div'));
var control = new google.visualization.ControlWrapper({
'controlType': 'NumberRangeFilter',
'containerId': 'act-numberRangeFilter_control_div',
'options': {
'filterColumnIndex': 1,
'minValue': Combined[topAct][1],
'maxValue': Combined[1][1]
}
});
var chart = new google.visualization.ChartWrapper({
'chartType': 'BarChart',
'containerId': 'act-numberRangeFilter_chart_div',
'options': {
'height': 900,
'legend': 'none',
'chartArea': {
'width': '75%',
'height': '90%'
},
vAxis: {
textStyle: {
color: 'black',
fontSize: '12',
paddingRight: '100',
marginBottom: '100',
marginRight: '100'
}
}
}
});
dashboard.bind(control, chart);
dashboard.draw(data);
}
function groupByCategory(file) {
var distracting = 0,
neutral = 0,
productive = 0;
var totalRows = file.rows.length;
for (var i = 0; i < totalRows; i++) {
if (file.rows[i][5] === -2 || file.rows[i][5] === -1) {
distracting += parseInt(file.rows[i][1]);
}
if (file.rows[i][5] === 1 || file.rows[i][5] === 2) {
productive += parseInt(file.rows[i][1]);
}
if (file.rows[i][5] === 0) {
neutral += parseInt(file.rows[i][1]);
}
}
printInfo(distracting, neutral, productive);
}
function printInfo(distracting, neutral, productive) {
var summaryText = $('#act-display');
summaryText.append('<h3> Total productive time: ' + productive.toHHMMSS() + " <div style=' width: 18px; height: 18px;background: #2F78BD;display: inline-block;'></div> + <div style='width: 18px; height: 18px; background: #395B96; display: inline-block;'></div> </h3> ");
summaryText.append("<h3> Total neutral time: " + neutral.toHHMMSS() + "<div style='width: 18px; height: 18px; background: #655568; display: inline-block;'></div> </h3> ");
summaryText.append("<h3> Total distracting time: " + distracting.toHHMMSS() + "<div style=' width: 18px; height: 18px;background: #C5392F;display: inline-block;'></div> + <div style='width: 18px; height: 18px; background: #92343B; display: inline-block;'></div></h3>");
}
Number.prototype.toHHMMSS = function () {
var numdays = Math.floor(this / 86400);
var numhours = Math.floor((this % 86400) / 3600);
var numminutes = Math.floor(((this % 86400) % 3600) / 60);
var numseconds = ((this % 86400) % 3600) % 60;
return numdays + " days " + numhours + " hours " + numminutes + " minutes " + numseconds + " seconds";
};
function updateTopAct() {
if (activityUploaded != null && usingFiles){
// $("#act-numberRangeFilter_chart_div > div").remove();
calcActivity(activityUploaded);
}
if (!usingFiles)
getActivityData();
}