やろうとしていること
Ruby on Railsでオリジナルアプリケーションを作成中です。
投稿詳細ページにコメント機能をつけたいと思っています。
勉強も兼ねてActionCableで実装を試みています。
解決したいこと
ActionCableを用いた実装が終わったので挙動確認をしてみました。
フォームにテキストを入力してエンターキーを押しても
何の反応もしません。
エラーメッセージが表示されないので困っています。
どなたか解決へのアプローチや
原因についてお教えいただけませんか?
実装したこと
commentsコントローラー
ruby
1class CommentsController < ApplicationController 2 def create 3 comment = Comment.new(comment_params) 4 ActionCable.server.broadcast 'comment_channel', content: comment if comment.save 5 end 6 7 private 8 9 def comment_params 10 params.require(:comment).permit(:text).merge(event_id: params[:event_id]) 11 end 12end 13
コメントはviews/events/show.html.erbで表示させたいので
eventsコントローラーでは以下のように記述しました。
関係ない部分は省略しております。
ruby
1 def show 2 @comment = Comment.new 3 @comments = @event.comments.all.order('created_at DESC') 4 @event = Event.find(params[:id]) 5 end
views/events/show.html.erb
ruby
1 <div class="comments-container"> 2 <%= form_with model: [@event, @comment], local: true do |f| %> 3 <%= f.text_field :text, placeholder: "コメントする", rows:"2", id:"comment_text" %> 4 <%= f.submit 'SEND' %> 5 <% end %> 6 <h4><コメント一覧></h4> 7 <div id ='comments'> 8 <% @comments.each do |comment| %> 9 <p class = "latest_comment"><%= comment.created_at %></p> 10 <p class="comment"><%= comment.text %></p> 11 <% end %> 12 </div> 13 </div> 14</div>
app/channels/comment_channel.js
javascript
1import consumer from "./consumer" 2 3consumer.subscriptions.create("CommentChannel", { 4 connected() { 5 // Called when the subscription is ready for use on the server 6 }, 7 8 disconnected() { 9 // Called when the subscription has been terminated by the server 10 }, 11 12 received(data) { 13 const time = `<p>${data.content.created_at}</p>` 14 const text = `<p>${data.content.text}</p>`; 15 const comments = document.getElementById('comments'); 16 const newComment = document.getElementById('comment_text'); 17 comments.insertAdjacentHTML('afterbegin', text); 18 comments.insertAdjacentHTML('afterbegin', time); 19 newComment.value=''; 20 } 21}); 22
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。