Ruby on Rails でAction Cableを用いたリアルタイムチャットアプリを作成しています。
リアルタイムチャットでメッセージを受信したユーザに通知を送る機能を実装したいと考えているのですが、方法が思いつきません。
もし分かる方がいれば、お力をお借りしたいです。
ずっと困っているので、助けていただければ本当に助かります!
どうか宜しくお願いいたします。
以下のようなコードとなっております。
ruby
1class RoomChannel < ApplicationCable::Channel 2 def subscribed 3 stream_from "room_channel_#{params['room']}" 4 end 5 6 def unsubscribed 7 # Any cleanup needed when channel is unsubscribed 8 end 9 10 def speak(data) 11 # jsで実行されたspeakのmessageを受け取り、room_channelのreceivedにブロードキャストする 12 Message.create! content: data['message'], user_id: current_user.id, room_id: params['room'] 13 end 14end 15
ruby
1class MessageBroadcastJob < ApplicationJob 2 queue_as :default 3 4 def perform(message) 5 ActionCable.server.broadcast "room_channel_#{message.room_id}", message: render_message(message) 6 end 7 8 private 9 10 def render_message(message) 11 ApplicationController.render_with_signed_in_user(message.user, partial: 'messages/message', locals: { message: message }) 12 end 13end
Ruby
1module ApplicationCable 2 class Connection < ActionCable::Connection::Base 3 identified_by :current_user 4 5 def connect 6 reject_unauthorized_connection unless find_verified_user 7 end 8 9 private 10 11 def find_verified_user 12 self.current_user = env['warden'].user 13 end 14 end 15end
Ruby
1class Message < ApplicationRecord 2 validates :content, presence: true 3 after_create_commit { MessageBroadcastJob.perform_later self } 4 belongs_to :user 5 belongs_to :room 6 has_many :active_notifications, class_name: 'Notification', foreign_key: 'visitor_id', dependent: :destroy 7 has_many :passive_notifications, class_name: 'Notification', foreign_key: 'visited_id', dependent: :destroy 8end 9
Ruby
1class MessagesController < ApplicationController 2end 3
JavaScript
1import consumer from './consumer' 2 3// $(function() { ... }); で囲むことでレンダリング後に実行される 4// レンダリング前に実行されると $('#messages').data('room_id') が取得できない 5// turbolinks を使っている場合は $(document).on('turbolinks:load', function() { ... }); で囲う 6$(function() { 7 const chatChannel = consumer.subscriptions.create({ channel: 'RoomChannel', room: $('#messages').data('room_id') }, { 8 connected() { 9 // Called when the subscription is ready for use on the server 10 }, 11 12 disconnected() { 13 // Called when the subscription has been terminated by the server 14 }, 15 16 received: function(data) { 17 return $('#messages').append(data['message']); 18 }, 19 20 speak: function(message) { 21 return this.perform('speak', { 22 message: message 23 }); 24 } 25 }); 26 27 $(document).on('keypress', '[data-behavior~=room_speaker]', function(event) { 28 if (event.keyCode === 13) { 29 chatChannel.speak(event.target.value); 30 event.target.value = ''; 31 return event.preventDefault(); 32 } 33 }); 34 35 $(".button").on("click",function(){ 36 var message = $(".speaker_txt").val(); 37 chatChannel.speak(message); 38 $(".speaker_txt").val("") 39 }); 40}); 41
HTML
1<div class="chat-room-container"> 2<%= link_to rooms_path do%> 3 <i class="fas fa-arrow-left fa-2x" aria-hidden="true"></i> 4<% end %> 5<% if @user.image? %> 6 <%= link_to user_path(@user) do %> 7 <%= image_tag(@user.image.to_s, :class => "top-image")%> 8 <% end %> 9 <span class="name"><%= @user.name %></span> 10<% else %> 11 <%= link_to user_path(@user) do %> 12 <%= image_tag("default.png", :class => "top-image")%> 13 <% end %> 14 <span class="name"><%= @user.name %></span> 15<% end %> 16<hr> 17<div class= "messages" id ='messages' data-room_id="<%= @room.id %>"> 18 <%= render @messages %> 19</div> 20</div> 21<div class= "message-form row"> 22<div class = "send-form offset-1 col-9"> 23<form> 24 <input class="speaker_txt col-12" name="content" type="text" data-behavior="room_speaker", autofocus> 25</form> 26</div> 27<div class= "send-button col-1"> 28<button class="button btn btn-primary"><i class="fas fa-paper-plane"></i></button> 29</div> 30</div>
あなたの回答
tips
プレビュー