mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 08:46:21 +00:00
feat: campos obligatorios
This commit is contained in:
parent
34aa8822f2
commit
19e8933388
7 changed files with 58 additions and 17 deletions
19
app/views/posts/_required_checkbox.haml
Normal file
19
app/views/posts/_required_checkbox.haml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
-#
|
||||||
|
Para el controlador required-checkbox necesitamos un checkbox oculto
|
||||||
|
que es obligatorio según si alguno de los checkboxes reales está
|
||||||
|
seleccionado o no. Al ser obligatorio, va a tener feedback de
|
||||||
|
validación. Sin embargo, como está oculto, no podemos mostrar el
|
||||||
|
mensaje de validación nativo del navegador.
|
||||||
|
|
||||||
|
@param :required [Boolean]
|
||||||
|
@param :name [String,Symbol]
|
||||||
|
@param :initial [Boolean]
|
||||||
|
@param :feedback [String]
|
||||||
|
@param :type [String]
|
||||||
|
|
||||||
|
- if required
|
||||||
|
- local_assigns[:feedback] ||= t('.required')
|
||||||
|
- local_assigns[:type] ||= 'checkbox'
|
||||||
|
|
||||||
|
%input.form-control.d-none{ type: local_assigns[:type], name: name, data: { target: 'required-checkbox.required', action: 'invalid->required-checkbox#invalid' }, required: initial }
|
||||||
|
.invalid-feedback.mt-0= local_assigns[:feedback]
|
|
@ -4,8 +4,10 @@
|
||||||
id = id_for(base, attribute)
|
id = id_for(base, attribute)
|
||||||
name = "#{base}[#{attribute}][]"
|
name = "#{base}[#{attribute}][]"
|
||||||
form_id = random_id
|
form_id = random_id
|
||||||
|
controllers = %w[modal array enter]
|
||||||
|
controllers << 'required-checkbox' if metadata.required
|
||||||
|
|
||||||
%div{ data: { controller: "modal array enter#{' required-checkbox' if metadata.required}", 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_array_value_path(site) } }
|
%div{ data: { controller: controllers.join(' '), 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_array_value_path(site) } }
|
||||||
%template{ data: { target: 'array.placeholder' } }
|
%template{ data: { target: 'array.placeholder' } }
|
||||||
.col.mb-3{ 'aria-hidden': 'true' }
|
.col.mb-3{ 'aria-hidden': 'true' }
|
||||||
%span.placeholder.w-100
|
%span.placeholder.w-100
|
||||||
|
@ -18,9 +20,7 @@
|
||||||
.d-flex.align-items-center.justify-content-between
|
.d-flex.align-items-center.justify-content-between
|
||||||
%div
|
%div
|
||||||
= label_tag id, post_label_t(attribute, post: post), class: 'mb-0'
|
= label_tag id, post_label_t(attribute, post: post), class: 'mb-0'
|
||||||
- if metadata.required
|
= render 'posts/required_checkbox', required: metadata.required, name: name, initial: metadata.empty?
|
||||||
%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.
|
||||||
|
|
||||||
|
|
|
@ -17,8 +17,10 @@
|
||||||
post_modal_id = random_id
|
post_modal_id = random_id
|
||||||
post_form_loaded_id = random_id
|
post_form_loaded_id = random_id
|
||||||
value_list_id = random_id
|
value_list_id = random_id
|
||||||
|
controllers = %w[modal array]
|
||||||
|
controllers << 'required-checkbox' if metadata.required
|
||||||
|
|
||||||
%div{ id: modal_id, data: { controller: 'modal array', 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_related_post_path(site) } }
|
%div{ id: modal_id, data: { controller: controllers.join(' '), 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_related_post_path(site) } }
|
||||||
%template{ data: { target: 'array.placeholder' } }
|
%template{ data: { target: 'array.placeholder' } }
|
||||||
.col.p-3{ 'aria-hidden': 'true' }
|
.col.p-3{ 'aria-hidden': 'true' }
|
||||||
%span.placeholder.w-100
|
%span.placeholder.w-100
|
||||||
|
@ -26,7 +28,9 @@
|
||||||
.form-group
|
.form-group
|
||||||
= hidden_field_tag name, ''
|
= hidden_field_tag name, ''
|
||||||
.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'
|
||||||
|
= render 'posts/required_checkbox', required: metadata.required, name: name, initial: metadata.empty?, type: 'radio'
|
||||||
= 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.
|
||||||
|
|
|
@ -17,8 +17,10 @@
|
||||||
post_modal_id = random_id
|
post_modal_id = random_id
|
||||||
post_form_loaded_id = random_id
|
post_form_loaded_id = random_id
|
||||||
value_list_id = random_id
|
value_list_id = random_id
|
||||||
|
controllers = %w[modal array]
|
||||||
|
controllers << 'required-checkbox' if metadata.required
|
||||||
|
|
||||||
%div{ id: modal_id, data: { controller: 'modal array', 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_related_post_path(site) } }
|
%div{ id: modal_id, data: { controller: controllers.join(' '), 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_related_post_path(site) } }
|
||||||
%template{ data: { target: 'array.placeholder' } }
|
%template{ data: { target: 'array.placeholder' } }
|
||||||
.col.p-3{ 'aria-hidden': 'true' }
|
.col.p-3{ 'aria-hidden': 'true' }
|
||||||
%span.placeholder.w-100
|
%span.placeholder.w-100
|
||||||
|
@ -26,8 +28,11 @@
|
||||||
.form-group
|
.form-group
|
||||||
= hidden_field_tag name, ''
|
= hidden_field_tag name, ''
|
||||||
.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)
|
||||||
|
= render 'posts/required_checkbox', required: metadata.required, name: name, initial: metadata.empty?
|
||||||
= 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.
|
||||||
|
|
||||||
Al aceptar el modal, se vacía el listado y se completa en base a
|
Al aceptar el modal, se vacía el listado y se completa en base a
|
||||||
|
@ -55,7 +60,7 @@
|
||||||
.form-group.mb-0{ id: value_list_id }
|
.form-group.mb-0{ id: value_list_id }
|
||||||
- metadata.values.each_pair do |value, uuid|
|
- metadata.values.each_pair do |value, uuid|
|
||||||
.mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: uuid } }
|
.mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: uuid } }
|
||||||
= render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value
|
= render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value, data: { action: 'required-checkbox#change', target: 'required-checkbox.checkbox' }
|
||||||
|
|
||||||
-#
|
-#
|
||||||
Según la definición del campo, si hay un filtro, tenemos que poder
|
Según la definición del campo, si hay un filtro, tenemos que poder
|
||||||
|
|
|
@ -17,8 +17,10 @@
|
||||||
post_modal_id = random_id
|
post_modal_id = random_id
|
||||||
post_form_loaded_id = random_id
|
post_form_loaded_id = random_id
|
||||||
value_list_id = random_id
|
value_list_id = random_id
|
||||||
|
controllers = %w[modal array]
|
||||||
|
controllers << 'required-checkbox' if metadata.required
|
||||||
|
|
||||||
%div{ id: modal_id, data: { controller: 'modal array', 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_related_post_path(site) } }
|
%div{ id: modal_id, data: { controller: controllers.join(' '), 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_related_post_path(site) } }
|
||||||
%template{ data: { target: 'array.placeholder' } }
|
%template{ data: { target: 'array.placeholder' } }
|
||||||
.col.p-3{ 'aria-hidden': 'true' }
|
.col.p-3{ 'aria-hidden': 'true' }
|
||||||
%span.placeholder.w-100
|
%span.placeholder.w-100
|
||||||
|
@ -26,8 +28,11 @@
|
||||||
.form-group
|
.form-group
|
||||||
= hidden_field_tag name, ''
|
= hidden_field_tag name, ''
|
||||||
.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)
|
||||||
|
= render 'posts/required_checkbox', required: metadata.required, name: name, initial: metadata.empty?
|
||||||
= 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.
|
||||||
|
|
||||||
Al aceptar el modal, se vacía el listado y se completa en base a
|
Al aceptar el modal, se vacía el listado y se completa en base a
|
||||||
|
@ -55,7 +60,7 @@
|
||||||
.form-group.mb-0{ id: value_list_id }
|
.form-group.mb-0{ id: value_list_id }
|
||||||
- metadata.values.each_pair do |value, uuid|
|
- metadata.values.each_pair do |value, uuid|
|
||||||
.mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: uuid } }
|
.mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: uuid } }
|
||||||
= render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value
|
= render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value, data: { action: 'required-checkbox#change', target: 'required-checkbox.checkbox' }
|
||||||
|
|
||||||
-#
|
-#
|
||||||
Según la definición del campo, si hay un filtro, tenemos que poder
|
Según la definición del campo, si hay un filtro, tenemos que poder
|
||||||
|
|
|
@ -6,8 +6,10 @@
|
||||||
id = id_for(base, attribute)
|
id = id_for(base, attribute)
|
||||||
name = "#{base}[#{attribute}][]"
|
name = "#{base}[#{attribute}][]"
|
||||||
form_id = random_id
|
form_id = random_id
|
||||||
|
controllers = %w[modal array]
|
||||||
|
controllers << 'required-checkbox' if metadata.required
|
||||||
|
|
||||||
%div{ data: { controller: 'modal array', 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_array_value_path(site) } }
|
%div{ data: { controller: controllers.join(' '), 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_array_value_path(site) } }
|
||||||
%template{ data: { target: 'array.placeholder' } }
|
%template{ data: { target: 'array.placeholder' } }
|
||||||
.col.mb-3{ 'aria-hidden': 'true' }
|
.col.mb-3{ 'aria-hidden': 'true' }
|
||||||
%span.placeholder.w-100
|
%span.placeholder.w-100
|
||||||
|
@ -15,7 +17,9 @@
|
||||||
.form-group
|
.form-group
|
||||||
= hidden_field_tag name, ''
|
= hidden_field_tag name, ''
|
||||||
.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)
|
||||||
|
= render 'posts/required_checkbox', required: metadata.required, name: name, initial: metadata.empty?
|
||||||
= 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.
|
||||||
|
@ -44,7 +48,7 @@
|
||||||
-# Eliminamos las tildes para poder buscar independientemente de cómo se escriba
|
-# Eliminamos las tildes para poder buscar independientemente de cómo se escriba
|
||||||
- metadata.values.each_pair do |value, key|
|
- metadata.values.each_pair do |value, key|
|
||||||
.mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: value } }
|
.mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: value } }
|
||||||
= render 'bootstrap/custom_checkbox', name: name, id: random_id, value: key, checked: metadata.value.include?(key), content: value
|
= render 'bootstrap/custom_checkbox', name: name, id: random_id, value: key, checked: metadata.value.include?(key), content: value, data: { action: 'required-checkbox#change', target: 'required-checkbox.checkbox' }
|
||||||
|
|
||||||
- content_for :"#{id}_footer" do
|
- content_for :"#{id}_footer" do
|
||||||
-# Alinear los botones a la derecha
|
-# Alinear los botones a la derecha
|
||||||
|
|
|
@ -17,8 +17,10 @@
|
||||||
post_modal_id = random_id
|
post_modal_id = random_id
|
||||||
post_form_loaded_id = random_id
|
post_form_loaded_id = random_id
|
||||||
value_list_id = random_id
|
value_list_id = random_id
|
||||||
|
controllers = %w[modal array]
|
||||||
|
controllers << 'required-checkbox' if metadata.required
|
||||||
|
|
||||||
%div{ id: modal_id, data: { controller: 'modal array', 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_array_value_path(site) } }
|
%div{ id: modal_id, data: { controller: controllers.join(' '), 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_array_value_path(site) } }
|
||||||
%template{ data: { target: 'array.placeholder' } }
|
%template{ data: { target: 'array.placeholder' } }
|
||||||
.col.p-3{ 'aria-hidden': 'true' }
|
.col.p-3{ 'aria-hidden': 'true' }
|
||||||
%span.placeholder.w-100
|
%span.placeholder.w-100
|
||||||
|
@ -26,7 +28,9 @@
|
||||||
.form-group
|
.form-group
|
||||||
= hidden_field_tag name, ''
|
= hidden_field_tag name, ''
|
||||||
.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)
|
||||||
|
= render 'posts/required_checkbox', required: metadata.required, name: name, initial: metadata.empty?, type: 'radio'
|
||||||
= 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.
|
||||||
|
|
Loading…
Reference in a new issue