add other option for dropdown select

This commit is contained in:
kara Diaby 2021-10-21 16:03:13 +02:00
parent 0e65916e44
commit c2fcd3992d
2 changed files with 15 additions and 5 deletions

View file

@ -32,6 +32,11 @@ const radioInputs = Array.from(
const radioNotices = Array.from( const radioNotices = Array.from(
document.querySelectorAll('.drop_down_other_radio_notice') document.querySelectorAll('.drop_down_other_radio_notice')
); );
const selectNotices = Array.from(
document.querySelectorAll('.drop_down_other_select_notice')
);
const selectInputs = Array.from( const selectInputs = Array.from(
document.querySelectorAll('.text_field_drop_down_other_select') document.querySelectorAll('.text_field_drop_down_other_select')
); );
@ -53,6 +58,7 @@ const selectObject = selects.map((select, index) => {
return { return {
select: select, select: select,
input: selectInputs[index], input: selectInputs[index],
notice: selectNotices[index],
key: select.getAttribute('name') key: select.getAttribute('name')
}; };
}); });
@ -61,10 +67,10 @@ for (const el of selectObject) {
selects.forEach((select) => { selects.forEach((select) => {
select.addEventListener('change', () => { select.addEventListener('change', () => {
if (el.select.value === 'Autre') { if (el.select.value === 'Autre') {
el.input.style.display = 'block'; el.notice.style.display = 'block';
el.input.setAttribute('name', el.key); el.input.setAttribute('name', el.key);
} else { } else {
el.input.style.display = 'none'; el.notice.style.display = 'none';
el.input.setAttribute('name', ''); el.input.setAttribute('name', '');
} }
}); });

View file

@ -22,7 +22,11 @@
- else - else
= form.select :value, = form.select :value,
champ.options, champ.drop_down_other? ? champ.options.concat(["Autre"]) : champ.options,
disabled: champ.disabled_options, { selected: champ.other_value_present? ? "Autre" : champ.value,
required: champ.mandatory? required: champ.mandatory? },
{ class: champ.drop_down_other? ? "select_drop_down_other" : ""}
- if champ.drop_down_other?
.notice.drop_down_other_select_notice{ style: "#{champ.other_value_present? ? "display:block" : "display:none"}" }
= render partial: "shared/dossiers/drop_down_other_input", locals: { champ: champ, class_name: "text_field_drop_down_other_select" }