現状
Ruby初学者です。
現在、オリジナルの掲示板アプリを作成中で、ユーザー管理機能、投稿機能、コメント機能を実装済みです。新しくコメント一つ一つに対していいね機能を実装しようと思いましたが、うまく実装できません。構成としては、投稿機能のshowアクションの中に、投稿とコメントが表示されていて、新たにそのコメント一つ一つにいいねがつくようにしたかったのですが、この実装は難しいのでしょうか?一日中実装方法を調べてもだめだったので、諦めようか迷っています。もし、可能であるならどのようなデータベース設計になるのでしょうか?
エラー内容
https://gyazo.com/3b5e90b9e8a21ee7d8116d0bf56fb70d
https://gyazo.com/94b3b69c4d0da4324e5866f410471938
ソースコード
like.rb class Like < ApplicationRecord belongs_to :user belongs_to :board belongs_to :comment validates_uniqueness_of :comment_id, scope: :user_id end
comment.rb class Comment < ApplicationRecord belongs_to :user belongs_to :board has_many :likes validates :text, presence: true end
likes_controller class LikesController < ApplicationController def create @board = Board.find(params[:board_id]) @comment = Comment.find(params[:comment_id]) @like = Like.create(user_id: current_user.id, board_id: board.id, comment_id: comment.id) redirect_to board_path(comment.board) end def destroy @board = Board.find(params[:board_id]) @comment = Comment.find(params[:comment_id]) Like.find_by(user_id: current_user.id, board_id: board.id, comment_id: comment.id).destroy redirect_to board_path(comment.post) end end
_like.html.erb <%if user_signed_in? %> <% if Like.find_by(user_id: current_user.id, board_id: @board.id, comment_id: @comment.id) %> <%= link_to board_comment_like_path(@board, @comment, @comment.likes), {class: "like-link", method: :delete } do %> <i class="fas fa-grin-squint-tears unlike-btn"></i> <% end %> <p class="count"><%= @comment.likes.count %></p> <% else %> <%= link_to board_comment_likes_path(@board, @comment_like), {class: "like-link", method: :post } do %> <i class="far fa-grin-squint-tears like-btn"></i> <% end %> <p class="count"><%= @comment.likes.count %></p> <% end %> <% else %> <i class="fas fa-grin-squint-tears unlike-btn"></i><p class="count"><%= @comment.likes.count %></p> <% end %>
boards_controller def show @board = Board.find(params[:id]) @comment_like = Comment.find(params[:id]) @comment = Comment.new @comments = @board.comments.includes(:user) end
routes.rb Rails.application.routes.draw do devise_for :users root to: "boards#index" resources :users, only: [:show, :edit, :update, :destroy] resources :boards do resources :comments, only: :create do resources :likes, only: [:create, :destroy] end end end
補足説明
以前も全く同じ質問をしていて、このエラー文は以下のURLのベストアンサーが原因だと回答してもらいました。
https://teratail.com/questions/332695
いいね機能は、ログインユーザーが一回だけいいねを押すことができる設計にしています。
もし、よろしければ実装方法をご教授していただけると嬉しいです。
あなたの回答
tips
プレビュー