gpt4 book ai didi

ruby-on-rails - rails : How to conditionally apply ActiveRecord sorting by one attribute based on through association or other property

转载 作者:行者123 更新时间:2023-11-29 12:26:17 34 4
gpt4 key购买 nike

我正在 Rails 4 中构建一个基于标签的论坛,其中的主题可以与标签相关联。

class Topic < ActiveRecord::Base
...
has_many :taggings, dependent: :destroy
has_many :tags, through: :taggings
...
scope :sort_by_latest_message, -> { order(latest_message_at: :desc) }
scope :sort_by_sticky, -> { order(sticky: :desc) }
...
scope :without_tags, -> { where.not(id: Tagging.select(:topic_id).uniq) }
scope :with_tags, -> { joins(:tags).where("tag_id IS NOT NULL").uniq }
...
end

主题还有一个名为“sticky”的 bool 列。

问题:我希望能够以将具有粘性属性的主题放在列表顶部的方式对主题进行排序,但前提是该主题与 at 相关联指定标签列表中的至少一个。然后主题将按 latest_message_at 属性排序。

这一切都发生在过滤过程之后。

因此,例如,主题列表将包含带有标签 X、Y 和 Z 的主题,但只有带有标签 X 的粘性主题才真正被视为粘性,因此任何具有粘性属性但与标签 Y 相关联的主题或 Z 而不是标签 X 应该正常排序(按最新消息)。所以最终,列表将在顶部的标签 X 下具有粘性主题(按最新消息排序),然后是标签 X 下的所有其他主题加上标签 Y 和 Z 下的主题,无论它们是否粘性,按 latest_message_at 属性排序。

我目前有这样的设置:

def self.combine_sort_with_sticky(tag_ids, primary_sort)
if tag_ids.empty?
relevent_sticky_topics = without_tags.where(sticky: true)
other_topics = union_scope(*[with_tags, without_tags.where(sticky: false)]) # union_scope is a method that creates an SQL union based on the scopes within
else
relevent_sticky_topics = joins(:tags).where("tag_id IN (?)", tag_ids).uniq.where(sticky: true)
other_topics = joins(:tags).where("tag_id NOT IN (?) OR sticky = ?", tag_ids, false).uniq
end
combined_topics = relevent_sticky_topics.send(primary_sort) + other_topics.send(primary_sort) # Order is important, otherwise stickies will be at the bottom.
combined_topics.uniq
end

因此,当我调用 combine_sort_with_sticky([1], :sort_by_latest_message) 时,只有带有 ID 1 标签和 sticky 属性的粘性主题才会移动到列表的前面。我还会注意到,当不对任何标签进行过滤时,只有没有标签的主题才应该被认为是粘性的。

这似乎给出了我想要的结果,但是两个排序查询之间的 + 运算符让我担心,因为它将 ActiveRecord 关联转换为数组对象。

我正在寻找的是一种在有条件地应用两个排序范围中的第一个的同时维护 ActiveRecord 关联(例如范围,或可能是另一个类模型)的方法。 Topic.all.sort_by_sticky.sort_by_latest_message 接近我想要的,但问题是它不加区别地按粘性属性排序,而不是只将具有某些标签的粘性主题视为真正的粘性。

我一直在研究如下范围:

scope :sort_by_relevant_sticky, ->(tag_ids) { joins(:tags).order("CASE WHEN tag_id IN (?) THEN sticky ELSE latest_message_at END DESC", tag_ids).uniq }

但这似乎不起作用。我对条件 SQL 不是很熟悉。

我的生产数据库是 Postgresql。

最佳答案

这不是您问题的实际解决方案,但我会看一下:https://github.com/mbleigh/acts-as-taggable-on :)

关于ruby-on-rails - rails : How to conditionally apply ActiveRecord sorting by one attribute based on through association or other property,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35053345/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com