traer los valores de anidaciones recursivas
This commit is contained in:
parent
96597db1d6
commit
02733728a3
3 changed files with 5 additions and 2 deletions
|
@ -292,11 +292,13 @@ class Post
|
||||||
# Si hay un subatributo, tenemos que averiguar todos los
|
# Si hay un subatributo, tenemos que averiguar todos los
|
||||||
# valores dentro de el
|
# valores dentro de el
|
||||||
# TODO volver elegante!
|
# TODO volver elegante!
|
||||||
|
# TODO volver recursivo!
|
||||||
elsif subattr
|
elsif subattr
|
||||||
post.site.everything_of(attr, lang: collection)
|
post.site.everything_of(attr, lang: collection)
|
||||||
.compact
|
.compact
|
||||||
.map { |sv| sv[subattr] }
|
.map { |sv| sv[subattr] }
|
||||||
.flatten
|
.flatten
|
||||||
|
.compact
|
||||||
.uniq
|
.uniq
|
||||||
else
|
else
|
||||||
post.site.everything_of(attr, lang: collection).compact
|
post.site.everything_of(attr, lang: collection).compact
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
- value = [] if value.nil?
|
- value = [] if value.nil?
|
||||||
- values = template.values.empty? ? value : template.values
|
- values = template.values.empty? ? [value].flatten : template.values
|
||||||
= select_tag field_name_for_post_as_string(name),
|
= select_tag field_name_for_post_as_string(name),
|
||||||
options_for_select(values, value),
|
options_for_select(values, value),
|
||||||
{ class: 'form-control select2',
|
{ class: 'form-control select2',
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
-# todos los que sean necesarios si estamos editando un post.
|
-# todos los que sean necesarios si estamos editando un post.
|
||||||
-# Obtenemos todos los valores. Puede ser un Hash o un Array
|
-# Obtenemos todos los valores. Puede ser un Hash o un Array
|
||||||
-# Creamos un array con un elemento solo para poder tener acceso a :each
|
-# Creamos un array con un elemento solo para poder tener acceso a :each
|
||||||
- groups = @post.get_front_matter(template.key)
|
- groups = @post.get_front_matter(name)
|
||||||
-# TODO volver a revisar cuando get_front_matter() tenga valores por defecto
|
-# TODO volver a revisar cuando get_front_matter() tenga valores por defecto
|
||||||
- groups = [{}] unless groups
|
- groups = [{}] unless groups
|
||||||
- if groups.is_a? Hash
|
- if groups.is_a? Hash
|
||||||
|
@ -45,6 +45,7 @@
|
||||||
-# Si el campo es un array, groups es un array de hashes
|
-# Si el campo es un array, groups es un array de hashes
|
||||||
-# y group un hash. De lo contrarios, groups va a ser un
|
-# y group un hash. De lo contrarios, groups va a ser un
|
||||||
-# Hash
|
-# Hash
|
||||||
|
-# TODO cambiar por get_front_matter
|
||||||
- value = (template.array? || template.nested?) ? group[nf.key] : groups[nf.key]
|
- value = (template.array? || template.nested?) ? group[nf.key] : groups[nf.key]
|
||||||
= render 'posts/template_field/nested',
|
= render 'posts/template_field/nested',
|
||||||
template: nf,
|
template: nf,
|
||||||
|
|
Loading…
Reference in a new issue