1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Rails】DMしたことがある人をマイページに表示して、チャットページにリンクできるようにする!【備忘録】

Last updated at Posted at 2020-10-31

を用いてDM機能を実装した際、チャットページに飛ぶリンクをユーザーの一覧表示ページ以外に実装したい!と思ったことがある方も多いと思います。

そこで、一度DMのやりとりをしたことがある人に関しては、以下の画像のようにユーザーのマイページからチャットを再び再開できるようにしようと思います。(LINEのマイページみたいなイメージですかね)

解説は気が向いたら書きます!

#view/users/show.html.erb

<% if current_user.id == @user.id %>
  <h3>チャット一覧</h3>
  <% @rooms.each do |r| %>
    <% r.users.each do |u| %>
     <% if u.id == current_user.id %>
     <% else %>
        <p><a href="/rooms/<%= r.id %>"><%= u.name %>さんとのチャット</a></p>
     <% end %>
    <% end %> 
  <% end %>
<% else %>
      
<% end %>

#models/user.rb

#追記
has_many :rooms, through: :entries, source: :room

#models/room.rb

#追記
has_many :users, through: :entries, source: :user

#UsersController#show

#追記
@user = User.find(params[:id])
@rooms = @user.rooms
1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?