mirror of
https://0xacab.org/sutty/sutty
synced 2025-01-20 05:23:37 +00:00
hacer funcionar los metadatos booleanos
de yapa, eliminar casos especiales en el formulario
This commit is contained in:
parent
b18dae8b8e
commit
5f3bbbfb1f
4 changed files with 18 additions and 10 deletions
|
@ -6,8 +6,23 @@ class MetadataBoolean < MetadataTemplate
|
||||||
false
|
false
|
||||||
end
|
end
|
||||||
|
|
||||||
# Convertir el valor que pasemos a boolean
|
# Los checkboxes son especiales porque la especificación de HTML
|
||||||
|
# indica que no se envían aquellos checkboxes con valores vacíos, con
|
||||||
|
# lo que nunca sabemos cuándo se los está deshabilitando. Rails
|
||||||
|
# subsana esto enviando un valor vacío bajo el mismo nombre
|
||||||
|
# (generalmente '0').
|
||||||
|
#
|
||||||
|
# En este caso, queremos priorizar el dato enviado por le usuarie
|
||||||
|
# antes que el generado internamente.
|
||||||
def value
|
def value
|
||||||
|
return false if false?
|
||||||
|
|
||||||
self[:value].present? || document.data.fetch(name.to_s, default_value)
|
self[:value].present? || document.data.fetch(name.to_s, default_value)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def false?
|
||||||
|
self[:value] == '0'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -21,9 +21,6 @@
|
||||||
|
|
||||||
-# Dibuja cada atributo
|
-# Dibuja cada atributo
|
||||||
- post.attributes.each do |attribute|
|
- post.attributes.each do |attribute|
|
||||||
-# El borrador se muestra distinto
|
|
||||||
- next if attribute == :draft
|
|
||||||
|
|
||||||
- metadata = post.send(attribute)
|
- metadata = post.send(attribute)
|
||||||
- type = metadata.type
|
- type = metadata.type
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,5 @@
|
||||||
.form-group
|
.form-group
|
||||||
= submit_tag t('.save'), class: 'btn submit-post'
|
= submit_tag t('.save'), class: 'btn submit-post'
|
||||||
-# Permitir guardar como borrador
|
|
||||||
- if post.attributes.include? :draft
|
|
||||||
= submit_tag t('.save_draft'),
|
|
||||||
class: 'btn submit-post-draft',
|
|
||||||
name: 'post[draft]'
|
|
||||||
.invalid_help.alert.alert-danger.d-none
|
.invalid_help.alert.alert-danger.d-none
|
||||||
= site.config.fetch('invalid_help', t('.invalid_help'))
|
= site.config.fetch('invalid_help', t('.invalid_help'))
|
||||||
.sending_help.alert.alert-success.d-none
|
.sending_help.alert.alert-success.d-none
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
.form-check
|
.form-check
|
||||||
= check_box_tag "post[#{attribute}", metadata.value, metadata.value,
|
= hidden_field_tag "post[#{attribute}]", '0'
|
||||||
|
= check_box_tag "post[#{attribute}]", metadata.value, metadata.value,
|
||||||
class: "form-check-input #{invalid(post, attribute)}",
|
class: "form-check-input #{invalid(post, attribute)}",
|
||||||
aria: { describedby: id_for_help(attribute) },
|
aria: { describedby: id_for_help(attribute) },
|
||||||
autofocus: autofocus
|
autofocus: autofocus
|
||||||
|
|
Loading…
Reference in a new issue