aboutsummaryrefslogtreecommitdiff
path: root/admin/public/participation.js
diff options
context:
space:
mode:
authorMarvin Borner2020-10-20 21:53:57 +0200
committerMarvin Borner2020-10-20 21:54:15 +0200
commit36936cbc7e79e4eef2f2e49432eeb31e4198e5bd (patch)
tree8f54b905a24c92aff95957c867891a37d11e8723 /admin/public/participation.js
parent5e345852a79e7f803d7796cb14c0c13a5be3ad14 (diff)
Quick and dirty participation statistics
Diffstat (limited to 'admin/public/participation.js')
-rw-r--r--admin/public/participation.js52
1 files changed, 52 insertions, 0 deletions
diff --git a/admin/public/participation.js b/admin/public/participation.js
new file mode 100644
index 0000000..84525a4
--- /dev/null
+++ b/admin/public/participation.js
@@ -0,0 +1,52 @@
+let date;
+let chart;
+
+fetch("api/participation")
+ .then((response) => response.json())
+ .then((response) => {
+ data = response;
+ console.log(data);
+ render("bar");
+ });
+
+function render(type) {
+ const ctx = document.getElementById("participation").getContext("2d");
+ chart = new Chart(ctx, {
+ type,
+ data: {
+ labels: data.map((v) => v.name),
+ datasets: [
+ {
+ label: "% of Participation",
+ data: data.map((v) => Math.round(v.percentage * 100) / 100 || 0),
+ backgroundColor: () => "#" + (Math.random().toString(16) + "0000000").slice(2, 8),
+ borderWidth: 1,
+ },
+ ],
+ },
+ options: {
+ legend: {
+ display: false,
+ },
+ scales: {
+ yAxes: [
+ {
+ ticks: {
+ beginAtZero: true,
+ precision: 0,
+ },
+ },
+ ],
+ },
+ },
+ });
+}
+
+let index = 0;
+const types = ["pie", "doughnut", "polarArea", "radar", "line", "bar"];
+document.getElementById("switch").addEventListener("click", () => {
+ chart.destroy();
+ render(types[index]);
+ if (index + 1 < types.length) index++;
+ else index = 0;
+});