前提・実現したいこと
ruby on rails5でaction cableを用いて非同期のチャットアプリを作っています。
送信したメッセージを画面に表示する際、指定のcssを適応させたいです。
発生している問題・エラーメッセージ
送信したメッセージを画面に表示させることはできるのですが、画面を更新しないとcssが適応されません。
該当のソースコード
roomcaffee
1App.room = App.cable.subscriptions.create "RoomChannel", 2 connected: -> 3 console.log("connected") 4 disconnected: -> 5 console.log("disconnected") 6 received: (data) -> 7 console.log("received") 8 url = "/posts/#{data['id']}" 9 $('#posts').append "<li><a href='#{url}'>#{data['id']}</a> : #{data['content']}, #{data['importance']}</li>" 10 speak: (post, importance) -> 11 console.log("speak") 12 @perform 'speak', Post: post, Importance: importance 13 $(document).on 'keypress', '[data-behavior~=room_speaker]', (event) -> 14 if event.keyCode is 13 15 importance = $('#importance').val() 16 App.room.speak event.target.value, importance 17 event.target.value = '' 18 event.preventDefault()
roomchannel
1class RoomChannel < ApplicationCable::Channel 2 def subscribed 3 stream_from "room_channel" 4 end 5 6 def unsubscribed 7 end 8 9 def speak(data) 10 Rails.logger.info data 11 post = Post.new(content: data['Post'], importance: data['Importance']) 12 post.save 13 Rails.logger.info post.errors.full_messages 14 ActionCable.server.broadcast 'room_channel', { id: post.id, content: post.content, importance: post.importance } 15 end 16end
indexhtml
1<h1>全体チャット</h1> 2 3<ul style="list-style-type: none;" id="posts"> 4 <% @posts.each do |post| %> 5 <li class="post <%= importance_class(post) %>"> 6 <%= post.id %> : <%= post.content %><br> 7 <div class="time"> 8 (<%= post.created_at.strftime('%Y/%m/%d %H:%M:%S') %>) 9 </div> 10 </li> 11 <% end %> 12</ul> 13 14 15<label>メッセージ:</label><br> 16<select name="importance" id="importance"> 17 <option value="1">***</option> 18 <option value="2">***</option> 19 <option value="3" selected>***</option> 20 <option value="4">***</option> 21</select> 22<input type="text" data-behavior="room_speaker">
css
1.post { 2 border-style: ridge; padding-left: 30px; font-size: 30px; 3}
試したこと
room.coffeeのliタグにidを加えてみましたがrunningerrorが出ました。
補足情報(FW/ツールのバージョンなど)
rubyを始めて2ヶ月程度の超初心者です。よろしくお願いします。
あなたの回答
tips
プレビュー