mirror of
https://github.com/Wolvan/poll.horse.git
synced 2024-11-23 05:07:59 +01:00
32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
|
"use strict";
|
||
|
(() => {
|
||
|
const inputList = [];
|
||
|
const pollOptionsAnchor = document.querySelector(".poll-options");
|
||
|
|
||
|
function createPollOptionInput() {
|
||
|
if (inputList.length >= parseInt(MAX_POLL_OPTIONS)) return;
|
||
|
const optionEl = document.createElement("div");
|
||
|
optionEl.classList.add("poll-option");
|
||
|
const input = document.createElement("input");
|
||
|
input.type = "text";
|
||
|
input.maxLength = MAX_CHARACTER_LENGTH;
|
||
|
input.name = "poll-option";
|
||
|
input.placeholder = "Enter your option here";
|
||
|
optionEl.appendChild(input);
|
||
|
|
||
|
input.addEventListener("keydown", () => {
|
||
|
if (inputList.every(el => el.value) && pollOptionsAnchor) pollOptionsAnchor.appendChild(createPollOptionInput());
|
||
|
});
|
||
|
inputList.push(input);
|
||
|
|
||
|
return optionEl;
|
||
|
}
|
||
|
|
||
|
pollOptionsAnchor.querySelectorAll(".poll-option input").forEach(el => {
|
||
|
el.addEventListener("keydown", () => {
|
||
|
if (inputList.every(el => el.value) && pollOptionsAnchor) pollOptionsAnchor.appendChild(createPollOptionInput());
|
||
|
});
|
||
|
inputList.push(el);
|
||
|
});
|
||
|
return createPollOptionInput;
|
||
|
})();
|