mirror of
https://github.com/Wolvan/poll.horse.git
synced 2024-11-22 21:07:58 +01:00
23445f7509
The options only appeared when at least 2 letters were typed into the input field as the event triggered before a value was set into the input field. Using `keyup` instead of `keydown` delays the event after a letter has been typed into it.
32 lines
No EOL
1.2 KiB
JavaScript
32 lines
No EOL
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("keyup", () => {
|
|
if (inputList.every(el => el.value) && pollOptionsAnchor) pollOptionsAnchor.appendChild(createPollOptionInput());
|
|
});
|
|
inputList.push(input);
|
|
|
|
return optionEl;
|
|
}
|
|
|
|
pollOptionsAnchor.querySelectorAll(".poll-option input").forEach(el => {
|
|
el.addEventListener("keyup", () => {
|
|
if (inputList.every(el => el.value) && pollOptionsAnchor) pollOptionsAnchor.appendChild(createPollOptionInput());
|
|
});
|
|
inputList.push(el);
|
|
});
|
|
return createPollOptionInput;
|
|
})(); |