instance method
broadcast_update_to
Ruby on Rails 2.0.23
Since v1.3.3 Last seen in v2.0.23Signature
broadcast_update_to(*streamables, **rendering)
Update this broadcastable model in the dom for subscribers of the stream name identified by the passed streamables. The rendering parameters can be set by appending named arguments to the call. Examples:
# Sends <turbo-stream action="update" target="clearance_5"><template><div id="clearance_5">My Clearance</div></template></turbo-stream> # to the stream named "identity:2:clearances" clearance.broadcast_update_to examiner.identity, :clearances # Sends <turbo-stream action="update" target="clearance_5"><template><div id="clearance_5">Other partial</div></template></turbo-stream> # to the stream named "identity:2:clearances" clearance.broadcast_update_to examiner.identity, :clearances, partial: "clearances/other_partial", locals: { a: 1 } # sends <turbo-stream action="update" method="morph" target="clearance_5"><template><div id="clearance_5">Other partial</div></template></turbo-stream> # to the stream named "identity:2:clearances" clearance.broadcast_update_to examiner.identity, :clearances, attributes: { method: :morph }, partial: "clearances/other_partial", locals: { a: 1 }
Parameters
-
streamablesrest -
renderingkeyrest
Source
# File app/models/concerns/turbo/broadcastable.rb, line 290
def broadcast_update_to(*streamables, **rendering)
Turbo::StreamsChannel.broadcast_update_to(*streamables, **extract_options_and_add_target(rendering, target: self)) unless suppressed_turbo_broadcasts?
end
Defined in app/models/concerns/turbo/broadcastable.rb line 290
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Turbo::Broadcastable