mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:11:42 +00:00
los artículos filtrados también tienen un sitio
This commit is contained in:
parent
227e48681e
commit
1fb53168e2
1 changed files with 21 additions and 18 deletions
|
@ -92,11 +92,13 @@ class PostRelation < Array
|
|||
def where(**args)
|
||||
return self if args.empty?
|
||||
|
||||
PostRelation[*select do |post|
|
||||
@where ||= {}
|
||||
@where[args.hash.to_s] ||= begin
|
||||
PostRelation.new(site: site).concat(select do |post|
|
||||
result = args.map do |attr, value|
|
||||
next unless post.attribute?(attr)
|
||||
|
||||
attribute = post.public_send(attr)
|
||||
attribute = post[attr]
|
||||
|
||||
# TODO: Si el valor del atributo también es un Array deberíamos
|
||||
# cruzar ambas.
|
||||
|
@ -111,8 +113,9 @@ class PostRelation < Array
|
|||
end.compact
|
||||
|
||||
# Un Array vacío devuelve true para all?
|
||||
!result.empty? && result.all?
|
||||
end]
|
||||
result.present? && result.all?
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
# Como Array#select devolviendo una relación
|
||||
|
@ -120,7 +123,7 @@ class PostRelation < Array
|
|||
# @return [PostRelation]
|
||||
alias array_select select
|
||||
def select(&block)
|
||||
PostRelation[*array_select(&block)]
|
||||
PostRelation.new(site: site).concat array_select(&block)
|
||||
end
|
||||
|
||||
# Intenta guardar todos y devuelve true si pudo
|
||||
|
|
Loading…
Reference in a new issue