Last active
February 26, 2025 07:33
-
-
Save ramhoj/5089df0be6102d688472ae0966af76d6 to your computer and use it in GitHub Desktop.
Broadcast turbo frame refresh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= turbo_stream.replace "notification", partial: "notification", locals: { post: @post } %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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