-
-
Save j3ck/d105bdbe1db105db3d76f734cbf2447c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def export | |
favorites = Favorite.all | |
@products = Product.where(id: favorites.map(&:product_id).uniq) | |
count = favorites.group_by(&:product_id).map do |product_id, favorites| | |
[@products.find { |product| product.id == product_id }, favorites.length] | |
end | |
@favorite_count = count.sort_by { |arr| arr.last }.reverse.to_h | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SQL:
