add other option for dropdown radio

This commit is contained in:
kara Diaby 2021-10-21 11:55:23 +02:00
parent dc35d9521f
commit 0e65916e44
3 changed files with 80 additions and 0 deletions

View file

@ -20,3 +20,67 @@ delegate('click', '.dropdown-button', (event) => {
button.setAttribute('aria-expanded', !buttonExpanded);
}
});
const radios = document.querySelectorAll('input[type="radio"]');
const selects = Array.from(
document.querySelectorAll('.select_drop_down_other')
);
const radioInputs = Array.from(
document.querySelectorAll('.text_field_drop_down_other_radio')
);
const radioNotices = Array.from(
document.querySelectorAll('.drop_down_other_radio_notice')
);
const selectInputs = Array.from(
document.querySelectorAll('.text_field_drop_down_other_select')
);
const radioButtons = Array.from(
document.querySelectorAll('.radio_button_drop_down_other')
);
const radioButtonsObject = radioButtons.map((radioButton, index) => {
return {
radioButton: radioButton,
input: radioInputs[index],
notice: radioNotices[index],
key: radioButton.getAttribute('name')
};
});
const selectObject = selects.map((select, index) => {
return {
select: select,
input: selectInputs[index],
key: select.getAttribute('name')
};
});
for (const el of selectObject) {
selects.forEach((select) => {
select.addEventListener('change', () => {
if (el.select.value === 'Autre') {
el.input.style.display = 'block';
el.input.setAttribute('name', el.key);
} else {
el.input.style.display = 'none';
el.input.setAttribute('name', '');
}
});
});
}
for (const el of radioButtonsObject) {
radios.forEach((radio) => {
radio.addEventListener('click', () => {
if (el.radioButton.checked) {
el.notice.style.display = 'block';
el.input.setAttribute('name', el.key);
} else {
el.notice.style.display = 'none';
el.input.setAttribute('name', '');
}
});
});
}