Skip to content

Instantly share code, notes, and snippets.

@ramhoj
Last active February 26, 2025 07:33
Show Gist options
  • Save ramhoj/5089df0be6102d688472ae0966af76d6 to your computer and use it in GitHub Desktop.
Save ramhoj/5089df0be6102d688472ae0966af76d6 to your computer and use it in GitHub Desktop.
Broadcast turbo frame refresh
class PostsController < ApplicationController
def destroy
# …
@post.broadcast_refresh_frame target: "notifications"
end
private
def broadcast_refresh_frame(target: dom_id(self))
broadcast_action "refresh", target: target, html: ""
end
end
<%= turbo_stream.replace "notification", partial: "notification", locals: { post: @post } %>
addEventListener("turbo:before-stream-render", ((event) => {
const fallbackToDefaultActions = event.detail.render
event.detail.render = (streamElement) => {
if (streamElement.action == "refresh" && streamElement.target) {
document.getElementById(streamElement.target).reload()
} else {
fallbackToDefaultActions(streamElement)
}
}
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment