aboutsummaryrefslogtreecommitdiff
path: root/mottovote/public/script.js
diff options
context:
space:
mode:
authorLarsVomMars2020-10-03 00:41:10 +0200
committerLarsVomMars2020-10-03 00:41:10 +0200
commit467eb283888328b977871b6899bede744cedfdd8 (patch)
treec5f4c4184b0257c3e88e52ed9953ffe37d99f7be /mottovote/public/script.js
parentc80656abf09459c8b13c9cdb33c9a8d3a8cee502 (diff)
Multivote
Diffstat (limited to 'mottovote/public/script.js')
-rw-r--r--mottovote/public/script.js30
1 files changed, 16 insertions, 14 deletions
diff --git a/mottovote/public/script.js b/mottovote/public/script.js
index 7216af4..9fada2e 100644
--- a/mottovote/public/script.js
+++ b/mottovote/public/script.js
@@ -1,3 +1,4 @@
+const maxVotes = 3;
get();
async function get() {
@@ -7,17 +8,18 @@ async function get() {
for (const motto of mottos) {
const row = document.createElement("div");
const id = motto.id;
-
- const cb = document.createElement("input");
- cb.type = "checkbox";
- cb.id = "motto" + id;
- cb.name = id;
-
- const label = document.createElement("label");
- label.for = "motto" + id;
- label.textContent = `${motto.name} ${motto.description ? "-" : ""} ${motto.description}`
-
- row.append(cb, label);
+
+ for (let i = 0; i < maxVotes; i++) {
+ const cb = document.createElement("input");
+ cb.type = "checkbox";
+ cb.name = id;
+ row.append(cb);
+ }
+
+ const text = document.createElement("span");
+ text.textContent = `${motto.name} ${motto.description ? "-" : ""} ${motto.description}`
+
+ row.append(text);
window.vote.appendChild(row);
}
addListeners();
@@ -29,15 +31,15 @@ function addListeners() {
boxes.forEach((box) => {
box.addEventListener("change", (evt) => {
const checkedSiblings = document.querySelectorAll("input[type=checkbox]:checked");
- if (checkedSiblings.length > 3) evt.target.checked = false;
+ if (checkedSiblings.length > maxVotes) evt.target.checked = false;
});
});
window.voteButton.addEventListener("click", async () => {
const checked = document.querySelectorAll("input[type=checkbox]:checked");
- if (checked.length !== 3) return;
+ if (checked.length > maxVotes) return; // Shouldn't be necessary
const req = {};
- for (const box of checked) req[box.name] = 1; // Amount of votes
+ for (const box of checked) req[box.name] = box.name in req ? req[box.name] + 1 : 1; // Amount of votes
const resp = await fetch("api/vote", {
method: "PUT",
headers: { "Content-Type": "application/json" },