【Favorite】Rails いいね機能 実装
【ゴール】
ユーザーに投稿に対していいね機能を実装する
いいねを押すとハートが赤くなる
参考:https://qiita.com/nojinoji/items/2c66499848d882c31ffa
【メリット】
UI、UXの向上
アソシエーションの理解度向上
【開発環境】
■ Mac OS catalina
■ Ruby on Rails (5.2.4.2)
■ Virtual Box:6.1
■ Vagrant: 2.2.7
【実装】 "user" "post"機能実装は割愛
- favorite model作成
mac.terminal
$ rails g model Favorite
- アソシエーション 追記
$ rails g model Favorite
※ user : favorite = 1 : 多
※ post : favorite = 1 : 多
has_many :favorites
def favorited_by?(user)
favorites.where(user_id: user.id).exists?
end
has_many :favorites
belongs_to :user
belongs_to :post
route 追記
※ "favorite" は "post" に関連しているのでルートをネスト(親子)させる
resources :posts do
resources :favorites , only: [:create , :destroy]
end
favorite controller作成
※ "create" , "destroy"も一緒に作成
$ rails g controller Favorites create destroy
favorite controller記述
① , ②で user_id post_id をparameterに渡す
class FavoritesController < ApplicationController
def create
@post = Post.find(params[:post_id]) ①
favorite = @post.favorites.new(user_id: current_user.id) ②
favorite.save
flash[:success] = "Liked post"
redirect_to request.referer
end
def destroy
@post = Post.find(params[:post_id]) ①
favorite = current_user.favorites.find_by(post_id: @post.id) ②
favorite.destroy
redirect_to request.referer
end
end
view記述
※ modelで記述 ”@post.favorited_by?” を使用
<% if @post.favorited_by?(current_user) %>
<%= link_to post_favorite_path(@post), method: :DELETE do %>
<i class="fa fa-heart" aria-hidden="true" style="color: red;"></i>
<%= @post.favorites.count %>like
<% end %>
<% else %>
<%= link_to post_favorites_path(@post) , method: :POST do %>
<i class="fa fa-heart-o" aria-hidden="true"></i>
<%= @post.favorites.count %>like
<% end %>
<% end %>
以上
Author And Source
この問題について(【Favorite】Rails いいね機能 実装), 我々は、より多くの情報をここで見つけました https://qiita.com/thk__u/items/c6ab14148a08eeb89e68著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .