DMの一覧機能を作りたいのですがよくわかりません。
DM機能は完成しています。
Chat_roomのなかのChat room usersの中に自分のIDが入っているチャットルームだけを表示するにはどのようにしたら良いのでしょうか
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 end
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 show chat_room = ChatRoom.find_by(id: params[:id]) @chat_room_user = chat_room.chat_room_users. where.not(user_id: current_user.id).first.user @chat_messages = ChatMessage.where(chat_room: chat_room).order(:created_at) 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 |
関係するモデルの定義を追加してください。
追記しました