5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 03:06:21 +00:00

feat: validación de new_array

This commit is contained in:
f 2024-06-19 13:13:30 -03:00
parent 4cdfbb7b2f
commit 2ec752ee14
No known key found for this signature in database
4 changed files with 22 additions and 4 deletions

View file

@ -20,5 +20,20 @@ export default class extends Controller {
} else { } else {
this.requiredTarget.required = !Array.from(this.checkboxTargets).some(x => x.checked); this.requiredTarget.required = !Array.from(this.checkboxTargets).some(x => x.checked);
} }
for (const checkbox of this.checkboxTargets) {
if (checkbox === event.target) continue;
checkbox.required = !event.target.checked;
}
}
/*
* Si el checkbox es considerado
*/
invalid(event) {
for (const checkbox of this.checkboxTargets) {
checkbox.required = true;
}
} }
} }

View file

@ -15,11 +15,12 @@
Si la lista es obligatoria, al menos uno de los ítems tiene que Si la lista es obligatoria, al menos uno de los ítems tiene que
estar activado. Logramos esto con un checkbox oculto que se marca estar activado. Logramos esto con un checkbox oculto que se marca
como obligatorio al validar el formulario. como obligatorio al validar el formulario.
- if metadata.required
%input.form-control{ type: 'checkbox', name: name, data: { target: 'required-checkbox.required' }, required: metadata.value.empty? }
.invalid-feedback Requerido!
.d-flex.align-items-center.justify-content-between .d-flex.align-items-center.justify-content-between
= label_tag id, post_label_t(attribute, post: post) %div
= label_tag id, post_label_t(attribute, post: post), class: 'mb-0'
- if metadata.required
%input.form-control.d-none{ type: 'checkbox', name: name, data: { target: 'required-checkbox.required', action: 'invalid->required-checkbox#invalid' }, required: metadata.value.empty? }
.invalid-feedback.mt-0= t('.required')
= render 'bootstrap/btn', content: t('.edit'), action: 'modal#show' = render 'bootstrap/btn', content: t('.edit'), action: 'modal#show'
-# Mostramos la lista de valores actuales. -# Mostramos la lista de valores actuales.

View file

@ -764,6 +764,7 @@ en:
edit: "Edit" edit: "Edit"
new_array: new_array:
edit: "Edit" edit: "Edit"
required: "Please select at least one option."
new_has_one: new_has_one:
edit: "Edit" edit: "Edit"
new_belongs_to: new_belongs_to:

View file

@ -772,6 +772,7 @@ es:
edit: "Editar" edit: "Editar"
new_array: new_array:
edit: "Editar" edit: "Editar"
required: "Seleccioná al menos una opción."
new_has_one: new_has_one:
edit: "Editar" edit: "Editar"
new_belongs_to: new_belongs_to: