mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
37 lines
1.3 KiB
JavaScript
37 lines
1.3 KiB
JavaScript
|
import { $, $$, clearEl, removeEl, insertBefore } from './utils/dom';
|
||
|
|
||
|
function pollOptionCreator() {
|
||
|
const addPollOptionButton = $('.js-poll-add-option');
|
||
|
|
||
|
if (!addPollOptionButton) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const form = addPollOptionButton.closest('form');
|
||
|
const maxOptionCount = parseInt($('.js-max-option-count', form).innerHTML, 10);
|
||
|
addPollOptionButton.addEventListener('click', e => {
|
||
|
e.preventDefault();
|
||
|
|
||
|
let existingOptionCount = $$('.js-poll-option', form).length;
|
||
|
if (existingOptionCount < maxOptionCount) {
|
||
|
// The element right before the add button will always be the last field, make a copy
|
||
|
const prevFieldCopy = addPollOptionButton.previousElementSibling.cloneNode(true);
|
||
|
// Clear its value and increment the N in "Option N" in the placeholder attribute
|
||
|
clearEl($$('.js-option-id', prevFieldCopy));
|
||
|
const input = $('.js-option-label', prevFieldCopy);
|
||
|
input.value = '';
|
||
|
input.setAttribute('placeholder', input.getAttribute('placeholder').replace(/\d+$/, m => parseInt(m, 10) + 1));
|
||
|
// Insert copy before the button
|
||
|
insertBefore(addPollOptionButton, prevFieldCopy);
|
||
|
existingOptionCount++;
|
||
|
}
|
||
|
|
||
|
// Remove the button if we reached the max number of options
|
||
|
if (existingOptionCount >= maxOptionCount) {
|
||
|
removeEl(addPollOptionButton);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export { pollOptionCreator };
|