mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 21:36:21 +00:00
Merge branch 'issue-7537' into 17.3.alpine.panel.sutty.nl
This commit is contained in:
commit
5d406081a3
5 changed files with 13 additions and 9 deletions
|
@ -5,7 +5,7 @@ class MetadataOrder < MetadataTemplate
|
||||||
# El valor según la posición del post en la relación ordenada por
|
# El valor según la posición del post en la relación ordenada por
|
||||||
# fecha, a fecha más alta, posición más alta
|
# fecha, a fecha más alta, posición más alta
|
||||||
def default_value
|
def default_value
|
||||||
super || (site.indexed_posts(locale: locale).first.order + 1)
|
super || ((site.indexed_posts.where(locale: locale).first&.order || 0) + 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
def save
|
def save
|
||||||
|
|
|
@ -34,14 +34,14 @@ class MetadataRelatedPosts < MetadataArray
|
||||||
#
|
#
|
||||||
# @return [IndexedPost::ActiveRecord_AssociationRelation]
|
# @return [IndexedPost::ActiveRecord_AssociationRelation]
|
||||||
def posts
|
def posts
|
||||||
site.indexed_posts.where(locale: locale).where.not(post_id: post.uuid.value).where(**filter)
|
site.indexed_posts.where(locale: locale).where.not(post_id: post.uuid.value).where(filter)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Encuentra el filtro desde el esquema del atributo
|
# Encuentra el filtro desde el esquema del atributo
|
||||||
#
|
#
|
||||||
# @return [Hash]
|
# @return [Hash,nil]
|
||||||
def filter
|
def filter
|
||||||
layout.metadata.dig(name, 'filter')&.to_h&.symbolize_keys || {}
|
layout.metadata.dig(name, 'filter')&.to_h&.symbolize_keys
|
||||||
end
|
end
|
||||||
|
|
||||||
def sanitize(uuid)
|
def sanitize(uuid)
|
||||||
|
|
|
@ -51,7 +51,7 @@ class Post
|
||||||
indexable_attributes.select do |attr|
|
indexable_attributes.select do |attr|
|
||||||
self[attr].front_matter?
|
self[attr].front_matter?
|
||||||
end.each do |attr|
|
end.each do |attr|
|
||||||
ifm[attr] = self[attr].indexable_values
|
ifm[attr] = self[attr].try(:indexable_values)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -16,7 +16,12 @@ class Site
|
||||||
|
|
||||||
def index_posts!
|
def index_posts!
|
||||||
Site.transaction do
|
Site.transaction do
|
||||||
docs.each(&:index!)
|
jekyll.read
|
||||||
|
jekyll.documents.each do |doc|
|
||||||
|
doc.read!
|
||||||
|
|
||||||
|
Post.new(document: doc, site: self, layout: layouts[doc['layout'].to_sym]).index!
|
||||||
|
end
|
||||||
|
|
||||||
update(last_indexed_commit: repository.head_commit.oid)
|
update(last_indexed_commit: repository.head_commit.oid)
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,10 +2,9 @@
|
||||||
%th= post_label_t(attribute, post: post)
|
%th= post_label_t(attribute, post: post)
|
||||||
%td
|
%td
|
||||||
%ul{ dir: dir, lang: locale }
|
%ul{ dir: dir, lang: locale }
|
||||||
- metadata.value.each do |v|
|
- site.indexed_posts.where(locale: post.lang.value, post_id: metadata.value).find_each do |p|
|
||||||
- p = site.indexed_posts(locale: post.lang.value).find_by(post_id: v)&.post
|
|
||||||
-#
|
-#
|
||||||
XXX: Ignorar todos los posts no encontrados (ej: fueron
|
XXX: Ignorar todos los posts no encontrados (ej: fueron
|
||||||
borrados o el uuid cambió)
|
borrados o el uuid cambió)
|
||||||
- next unless p
|
- next unless p
|
||||||
%li= link_to p.title.value, site_post_path(site, p.id)
|
%li= link_to p.title, site_post_path(site, p.path)
|
||||||
|
|
Loading…
Reference in a new issue