带参数的Ransack排序顺序范围

时间:2019-02-21 14:26:27

标签: ruby-on-rails ransack

我有一个带有通知通知的Site模型。 该网站每天都有几条通知。我尝试计算几天的通知总数,并希望按照该总数对网站进行排序。

class Site
  has_many :notifications
  scope :sort_by_notifications_between_dates_asc, -> (start_date, end_date) { left_joins(:notifications).merge(Notification.between_dates(start_date, end_date)).order(Arel.sql("count(notifications.*) asc")) }
  scope :sort_by_notifications_between_dates_desc, -> (start_date, end_date) { left_joins(:notifications).merge(Notification.between_dates(start_date, end_date)).order(Arel.sql("count(notifications.*) desc")) } 
end

class Notification
  belongs_to :site
  scope :between_dates, -> (start_date, end_date) {where(self.arel_table[:created_at].gteq(start_date.at_beginning_of_day).and(self.arel_table[:created_at].lteq(end_date.at_end_of_day)))} 
end

有可能让ransack创建一个排序范围,但是我还没有找到一种将参数(起始日期和结束日期)传递给该范围的方法。

= sort_link(@q, :notifications_between_dates, t('.notifications_between_dates'), default_order: :desc)

我不需要按日期过滤网站。我需要根据一段时间内的通知总数来对网站进行排序。这有可能吗?

1 个答案:

答案 0 :(得分:0)

我找到了一半的解决方案。我用参数创建了ransacker

ransacker :notifications_between_dates, args: [:parent, :ransacker_args] do |parent, args|
start_date, end_date = args
query = <<-SQL
 COALESCE(
  (SELECT COUNT(notifications.*) 
     FROM notifications
    WHERE notifications.site_id = sites.id
      AND notifications.created_at >= '#{start_date}'
      AND notifications.created_at <= '#{end_date}' 
    GROUP BY notifications.site_id)
 ,0)
SQL
Arel.sql(query)
end

然后我们可以通过这种方式对记录进行排序

q = Site.ransack(sorts: [{name: :notifications_between_dates,
                           dir: 'asc',
                ransacker_args: [Time.now-20.days,Time.now]}])

但是 sort_link 助手似乎不支持通过 s 参数中的GET请求传递ransacker_args。