ダイレクトメッセージ(DM)ができるウェブサイトを練習で作っているのですがDM相手を一覧するときに相手のユーザー名を表示させることが出来ません。
chat_roomのなかのchat_room_usersに相手のユーザー名が登録されているはずなのですがNomethodErrorになってしまいます。
chat_roomのIDは表示できるのですがchat_room_usersの中の相手のユーザー名・アイコンは表示できません。
詳しい方いましたらお
chat_controller.rb
class ChatController < ApplicationController def create current_user_chat_rooms = ChatRoomUser.where(user_id: current_user.id).map(&:chat_room) chat_room = ChatRoomUser.where(chat_room: current_user_chat_rooms, user_id: params[:user_id]).map(&:chat_room).first if chat_room.blank? chat_room = ChatRoom.create ChatRoomUser.create(chat_room: chat_room, user_id: current_user.id) ChatRoomUser.create(chat_room: chat_room, user_id: params[:user_id]) end redirect_to action: :show, id: chat_room.id end def index @current_user = current_user chat_room = ChatRoom.joins(:chat_room_users). where("chat_room_users.user_id =?", @current_user.id) @chat_rooms = ChatRoom.joins(:chat_room_users). where("chat_room_users.user_id =?", @current_user.id) @chat_room_user = chat_room.chat_room_users. where.not(user_id: current_user.id).first.user end def show chat_room = ChatRoom.find_by(id: params[:id]) @current_user = User.find_by(id: session[:user_id]) @chat_room_user = chat_room.chat_room_users. where.not(user_id: current_user.id).first.user @chat_room_myuser = chat_room.chat_room_users. where.not(user_id: current_user.id).last.user @chat_rooms = ChatRoom.joins(:chat_room_users). where("chat_room_users.user_id =?", @current_user.id) @chat_messages = ChatMessage.where(chat_room: chat_room).order(:created_at) end end
index.html.erb(DM相手一覧ページ)
<% @chat_rooms.each do |e| %> <%= link_to chat_path(e.id), method: :get do%> <%= e.id %> <% end %> <% end %>
モデル
chat_rooms
カラム名 | データ型 |
---|---|
id | integer |
chat_room_users
カラム名 | データ型 |
---|---|
id | integer |
chat_room_id | integer |
user_id | integer |
chat_messages
カラム名 | データ型 |
---|---|
id | integer |
chat_room_id | integer |
user_id | integer |
message | string |
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。