forked from pkp/usageStats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUsageStatsFrontendHandler.js
164 lines (148 loc) · 4.72 KB
/
UsageStatsFrontendHandler.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
/**
* @file plugins/generic/usageStats/js/UsageStatsFrontendHandler.js
*
* Copyright (c) 2013-2020 Simon Fraser University
* Copyright (c) 2003-2020 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @package plugins.generic.usageStats
*
* @brief A small handler to initialize Chart.js graphs on the frontend
*/
(function() {
if (typeof pkpUsageStats === 'undefined' || typeof pkpUsageStats.data === 'undefined') {
return;
}
var graphs, noStatsNotice;
// Check for .querySelectorAll in browser support
try {
graphs = document.querySelectorAll('.usageStatsGraph');
noStatsNotice = document.querySelectorAll('.usageStatsUnavailable');
} catch (e) {
console.log('Usage stats graph could not be loaded because your browser is too old. Please update your browser.');
return;
}
// Hide the unavailable stats notice when a chart is loaded
document.addEventListener('usageStatsChartLoaded.pkp', function(e) {
for (var i = 0; i < noStatsNotice.length; i++) {
if (typeof noStatsNotice[i].dataset.objectType !== 'undefined' && typeof noStatsNotice[i].dataset.objectId !== 'undefined' && noStatsNotice[i].dataset.objectType === e.target.dataset.objectType && noStatsNotice[i].dataset.objectId === e.target.dataset.objectId ) {
noStatsNotice[i].parentNode.removeChild(noStatsNotice[i]);
}
}
});
// Define default chart options
var chartOptions = {
legend: {
display: false,
},
tooltips: {
titleColor: '#333',
bodyColor: '#333',
footerColor: '#333',
backgroundColor: '#ddd',
cornerRadius: 2,
},
elements: {
line: {
borderColor: 'rgba(0,0,0,0.3)',
borderWidth: 1,
borderJoinStyle: 'round',
backgroundColor: 'rgba(0,0,0,0.3)',
},
rectangle: {
backgroundColor: 'rgba(0,0,0,0.3)',
},
point: {
radius: 2,
hoverRadius: 6,
borderWidth: 0,
hitRadius: 5,
},
},
scales: {
xAxes: [{
gridLines: {
color: 'rgba(0,0,0,0.05)',
drawTicks: false,
},
}],
yAxes: [{
gridLines: {
color: 'rgba(0,0,0,0.05)',
drawTicks: false,
},
}],
},
};
if (pkpUsageStats.config.chartType === 'bar') {
chartOptions.scales.xAxes = [{
gridLines: {
color: 'transparent',
}
}];
}
// Fire an event to allow third-party customization of the options
var optionsEvent = document.createEvent('Event');
optionsEvent.initEvent('usageStatsChartOptions.pkp', true, true);
optionsEvent.chartOptions = chartOptions;
document.dispatchEvent(optionsEvent);
var graph, objectType, objectId, graphData, initializedEvent;
pkpUsageStats.charts = {};
for (var g = 0; g < graphs.length; g++) {
graph = graphs[g];
// Check for markup we can use
if (typeof graph.dataset.objectType === 'undefined' || typeof graph.dataset.objectId === 'undefined' ) {
console.log('Usage stats graph is missing data-object-type and data-object-id attributes', graph);
continue;
}
objectType = graph.dataset.objectType;
objectId = graph.dataset.objectId;
// Check that data exists for this graph
if (typeof pkpUsageStats.data[objectType] === 'undefined' || pkpUsageStats.data[objectType][objectId] === 'undefined' ) {
console.log('Could not find data for this usage stats graph.', objectType, objectId);
continue;
}
// Do nothing if there's no data for this chart
if (typeof pkpUsageStats.data[objectType][objectId].data === 'undefined') {
graph.parentNode.removeChild(graph);
continue;
}
graphData = pkpUsageStats.data[objectType][objectId];
// Turn the data set into an array
var dataArray = [], labelsArray = [], currentDate = new Date(),
currentYear = currentDate.getFullYear(), currentMonth = currentDate.getMonth();
// Get the data from the last year
for (month = currentMonth + 1; month <= 11; month++) {
if (!(currentYear - 1 in graphData.data)) {
dataArray.push(0);
} else {
dataArray.push(graphData.data[currentYear - 1][month+1]);
}
labelsArray.push(pkpUsageStats.locale.months[month]);
}
// Get the data from the current year
for (month = 0; month <= currentMonth; month++) {
if (!(currentYear in graphData.data)) {
dataArray.push(0);
} else {
dataArray.push(graphData.data[currentYear][month+1]);
}
labelsArray.push(pkpUsageStats.locale.months[month]);
}
pkpUsageStats.charts[objectType + '_' + objectId] = new Chart(graph, {
type: pkpUsageStats.config.chartType,
data: {
labels: labelsArray,
datasets: [{
label: graphData.label,
data: dataArray,
}]
},
options: chartOptions,
});
// Fire an event when the chart is initialized
var initializedEvent = document.createEvent('Event');
initializedEvent.initEvent('usageStatsChartLoaded.pkp', true, true);
graph.dispatchEvent(initializedEvent);
}
})();