#実現したいこと
Railsアプリケーションで作成しているチャット機能でメッセージを受け取った際に、JavaScriptのイベントハンドラーを発火させたい。
##現在のコード
現在は下記URLを参考に 'message' ハンドラーを使用している。
https://developer.mozilla.org/ja/docs/Web/API/WebSocket/message_event
ページを読み込んだ際は 'message' ハンドラーが発火していることが、デベロッパーツールのコンソールで確認できる。
一方で他のブラウザで入力されたメーセージを受け取った際に 'message' ハンドラーは発火しない。
チャットページのview
erb
1<div class="talk_room"> 2 3 <div class="talk_room_content"> 4 5 <h5 class="title">オープンチャット</h5> 6 7 <!==チャットの内容==> 8 <!==websoketで受け取ったメッセージもここで受け取る==> 9 <div id="chat-index"> 10 <%= render @talks %> 11 </div> 12 13 <!== フォーム ==> 14 <form class="talk_room_form"> 15 <input id="content" type="text" class="form-control"> 16 <button id="button" class="btn btn-info">送信</button> 17 </form> 18 19 </div> 20 21</div> 22 23<script> 24 //最下部スクロール 25 function scrollBottom(){ 26 var a = document.documentElement; 27 var y = a.scrollHeight - a.clientHeight; 28 window.scroll(0, y); 29 } 30 scrollBottom(); 31 32 window.addEventListener("message", () => { 33 console.log('hoge'); 34 }) 35 36</script>
メッセージを受け取った際、addEventListener
を発火させるイベントハンドラーをご教示頂きたいです。
よろしくお願いします。
#追加情報
WebSoket受信箇所のコードを記述します
postというアクションを持つ、chatチャンネルを作成。
chat_channel.rb
rb
1class ChatChannel < ApplicationCable::Channel 2 def subscribed 3 stream_from 'chat_channel' 4 end 5 6 def unsubscribed 7 # Any cleanup needed when channel is unsubscribed 8 end 9 10 def post(data) 11 message = Talk.create! content: data['message'][0] 12 templete = ApplicationController.renderer.render(partial: 'talks/talk', locals: { talk: message }) 13 ActionCable.server.broadcast('chat_channel', templete) 14 end 15 16end 17
chat.js
js
1App.chat = App.cable.subscriptions.create("ChatChannel", { 2 connected: function() { 3 // Called when the subscription is ready for use on the server 4 }, 5 6 disconnected: function() { 7 // Called when the subscription has been terminated by the server 8 }, 9 10 //メッセージを受け取った際の処理 11 received: function(data) { 12 return $('#chat-index').append(data); 13 }, 14 15 //フォームの入力を受け取る 16 post: function(content) { 17 return this.perform('post', { message: content }); 18 } 19}); 20 21document.addEventListener('DOMContentLoaded', function () { 22 var input = document.getElementById('content'); 23 var button = document.getElementById('button'); 24 button.addEventListener('click', function () { 25 var content = [input.value]; 26 App.chat.post(content); 27 input.value = ''; 28 }) 29});
回答1件
あなたの回答
tips
プレビュー