前提・実現したいこと
railsで練習としてECサイトを作っている初心者です。
その中で販売数に応じたランキング機能を実装したいと思っています。
order_itemsテーブルのquantity(販売数)が多い順にItemデータを取得したいです。
現状はitemコントローラindexアクションにてItemデータの取得はできていますが、
ItemのPK(id)の昇順でデータ取得されています。
初質問で不手際もあるかと思いますが、何卒よろしくお願い致します。
table
1create_table "order_items", force: :cascade do |t| 2 t.integer "order_id", null: false 3 t.string "name", null: false 4 t.string "image_id", null: false 5 t.integer "price", null: false 6 t.integer "quantity", null: false 7 t.datetime "created_at", null: false 8 t.datetime "updated_at", null: false 9 end 10 11create_table "items", force: :cascade do |t| 12 t.string "name", null: false 13 t.string "image_id", null: false 14 t.integer "price", null: false 15 t.text "description", null: false 16 t.datetime "created_at", null: false 17 t.datetime "updated_at", null: false 18 end
発生している問題・エラーメッセージ
Itemデータを取得はできるが、ItemのPK(id)の昇順でデータ取得されている。 Itemデータの取得をOrder_itemのquantityが多い順に(降順)取得したいです。
該当のソースコード
Itemcontroller
1def index 2 @items = Item.preload(:comments).all.page(params[:page]).per(8) 3 # order_itemsのquentity(量)が多い商品ベスト3(販売数の多い商品ランキング) 4 @items_rank = Item.where(name: OrderItem.group(:name).order(quantity: "DESC").pluck(:name)) 5end
viewItemIndex
1 <div class="row my-2"> 2 <h4 class="mx-auto">人気商品ベスト3</h4> 3 </div> 4 <div class="row"> 5 <% @items_rank.each.with_index(1) do |item_rank, i| %> 6 <div class="col-md-3 mb-4"> 7 <p class="font-weight-bold"> 8 第<%= i %>位 9 </p> 10 <div class="card text-center h-100 mb-3" style="min-width: 170px;"> 11 <a href="/items/<%= item_rank.id %>"> 12 <%= attachment_image_tag item_rank, :image, :fill, 200, 200, format: 'jpeg', class: "card-img-top img-fluid" %> 13 </a> 14 <p class="card-title font-weight-bold"><%= item_rank.name %></p> 15 <!--評価の平均--> 16 <% if item_rank.comments.present? %> 17 <div class="average-review-rating" data-score=<%= item_rank.comments.pluck(:rate).sum.fdiv(item_rank.comments.pluck(:rate).length).to_f.round(1) %>></div> 18 <% else %> 19 <!--同じ高さを取るためのもの--> 20 <div> </div> 21 <% end %> 22 23 <ul class="list-group list-group-flush"> 24 <li class="list-group-item"><%= item_rank.description.truncate(15) %></li> 25 <li class="list-group-item"><%= item_rank.price %>円</li> 26 </ul> 27 28 </div> 29 </div> 30 <% end %> 31 </div>
試したこと
●最初はfindで実装しようと思いましたが、order_itemテーブルにitem_idカラムをつけていなかったため、実現できませんでした。そのため、whereメソッドを用いて
@items_rank = Item.where(name: OrderItem.group(:name).order(quantity: "DESC").pluck(:name))
と書いています。
コンソールにてOrderItem.group(:name).order(quantity: "DESC").pluck(:name))を実行して、並び順が販売数(quantity)が多い順になっているのを確認しました。
テーブル設計でorder_itemにitem_idカラムを追加すればランキング機能を実装できるのですが、現状で解決できる方法はないかと思い質問させていただきました。
参照した記事
https://qiita.com/mitsumitsu1128/items/18fa5e49a27e727f00b4
補足情報(FW/ツールのバージョンなど)
Rails 5.2.6
sqlite3
bootstrap4
足りないソースなどありましたらお教えください。
回答1件
あなたの回答
tips
プレビュー