いいねの数の多い順番にソートしたい
railsを使って、ユーザーによる「いいね数の多い順」に、コンテンツを並び替える機能を実装しようとしています。
発生している問題・エラーメッセージ
cloud9で開発しているのですが、cloud9では、うまく表示されています。
ところがherokuにデプロイ後に確認すると、heroku上では「いいね数の多い順」では表示されていません。
具体的には以下のようであり、いいね数の少ない順(昇順)になっているようにも見えるのですが、最後の方は必ずしも昇順ではなかったりします。
該当のソースコード
models(content.rb)
→いいね数の取得(favorites_count)を定義
class Content < ApplicationRecord has_many :favorites, dependent: :destroy ransacker :favorites_count do query = '(SELECT COUNT(favorites.content_id) FROM favorites where favorites.content_id = contents.id GROUP BY favorites.content_id)' Arel.sql(query) end end
contents.controller
class ContentsController < ApplicationController before_action :set_content, only: %i[ show edit update destroy ] def index if params[:q] != nil params[:q]['group_or_author_or_title_or_keyword_cont_all'] = params[:q]['group_or_author_or_title_or_keyword_cont_all'].to_s.split(/[\p{blank}\p{cntrl}\p{punct}\s、・]+/) @q = Content.ransack(params[:q]) else params[:q] = { sorts: 'favorites_count desc' } @q =Content.ransack() @q.sorts = 'favorites_count desc' if @q.sorts.empty? end @contents = @q.result.page(params[:page]).per(21) @contents_all = Content.select(:author).distinct end (略)
views(ソート部分)
<%= f.select( :sorts, {'いいね!の多い順': 'favorites_count desc', '新しい順': 'fiscalyear desc','古い順': 'fiscalyear asc', } , { selected: params[:q][:sorts] }) %> <%= f.submit '検索' %>
gemfile(development,test,productionで異なる部分)
group :development, :test do gem 'sqlite3' gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] end group :development do gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0' end group :test do gem 'capybara', '>= 2.15' gem 'selenium-webdriver' gem 'chromedriver-helper' end group :production do gem 'pg' end
試したこと
cloud9上ではうまく機能しているので、postgresqlの問題か、、、?とは思うのですが、何をしたら良いかがわからず、質問させていただきます。
恐れ入りますが、どなたかご教授いただけると幸いです。
あなたの回答
tips
プレビュー