Хорошо, так что я получил это работает!:)
Существует функция rails, которая делает именно то, что я хочу: render_to_string , которая не отправляет HTTP-ответ.У меня были некоторые проблемы с веб-сокетами, поэтому я установил Redis +, изменив способ вещания, и теперь все работает нормально!
Для записей вот все:
# config/routes.rb
Rails.application.routes.draw do
resources :posts
mount ActionCable.server => '/cable'
end
-
# config/cable.yml
development:
adapter: redis
url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
-
# app/channels/posts_channel.rb
class PostsChannel < ApplicationCable::Channel
def subscribed
stream_for 'post'
end
end
-
// app/assets/javascripts/channels/posts.js
App.cable.subscriptions.create('PostsChannel', {
received: function({ html }) {
$("#timeline-container").prepend(html);
}
});
-
<!-- app/views/posts/_post.html.erb -->
<div class="cd-timeline__block js-cd-block">
<div class="cd-timeline__img cd-timeline__img--picture js-cd-img">
<p>?</p>
</div>
<div class="cd-timeline__content js-cd-content">
<%= image_tag post.picture.variant(resize: '400x400') %>
<p><%= post.text %></p>
<span class="cd-timeline__date"><%= post.created_at.strftime('%d/%m/%Y %T') %></span>
</div>
</div>
-
# POST /posts
# POST /posts.json
def create
@post = Post.new(post_params)
picture = params[:post][:picture]
respond_to do |format|
if @post.save
@post.picture.attach(picture) if picture.present?
ActionCable.server.broadcast 'posts:post', html: render_to_string(partial: 'post', locals: { post: @post })
format.html { redirect_to posts_url, notice: 'Post was successfully created.' }
format.json { render :show, status: :created, location: @post }
else
format.html { render :new }
format.json { render json: @post.errors, status: :unprocessable_entity }
end
end
end