Home > Web Front-end > JS Tutorial > body text

How do Turbo Streams Work (behind the scenes)

Linda Hamilton
Release: 2024-10-22 23:40:29
Original
731 people have browsed it

This article was originally published on Rails Designer


Turbo Streams allows you to update specific parts of your app upon a web request (controller action), referred to as just Turbo Streams. Or as a Turbo Stream Broadcasts when fired by your back end (on model create, update or destroy or manually from any object) over websockets, typically through ActionCable.

While the source is different, the response (HTML) for both are the same. I want to quickly explain how Turbo Streams work, so you understand that there is, just like with Rails, no magic involved ??. Just Plain Old JavaScript!

To broadcast a Turbo Stream you do something like this:

class Resource < ApplicationRecord
  after_create_commit -> { broadcast_append_to "resources" }
end
Copy after login
Copy after login

And for controller actions (or inline in the controller, if that's your jam):

<turbo-stream action="append" target="resources">
  <%= render @resource %>
</turbo-stream>
Copy after login
Copy after login

So what's the response (HTML) sent over for both options?

<turbo-stream action="append" target="resources">
  <template>
    <!-- HTML content of the Resource -->
  </template>
</turbo-stream>
Copy after login

That looks an awful lot like the Turbo Stream response you create for controller actions! The only big difference is the template-element wrapped around the HTML (coming from a partial or ViewComponent). The template-element is a container for holding HTML content that is hidden.

? You can see responses like these in your browser's devtools.

How do Turbo Streams Work (behind the scenes)

Once the turbo stream element is injected into the DOM, Turbo takes over. turbo-stream is nothing more than a custom element. It is defined here. You can see it in turn defines a connectedCallback() function. That function is called each time the element is added to the document; this is a feature of custom elements.

So what happens next? Let's go over the most important parts, step by step. Brace yourselves! ?️?

  1. a custom event, beforeRenderEvent, is dispatched;
  2. this event calls the renderElement function;
  3. then performAction is called;
  4. the action defined is then called.

In that last file, you can see all the supported, default, actions for Turbo Stream (append, prepend, replace, etc.). If you are, even a little bit, familiar with JavaScript, you should easily grasp what each separate action is doing (if not; check out JavaScript for Rails Developers ?). In essence, except for the remove action; grab the HTML from within the template-element and add it to the DOM (based on the action; append, prepend, after, etc.).

With that knowledge, you might see that you can just insert that custom turbo-stream element manually, and Turbo knows to pick it up.

class Resource < ApplicationRecord
  after_create_commit -> { broadcast_append_to "resources" }
end
Copy after login
Copy after login

Just copy above HTML and view it in the browser. You will see the li-element being appended to the ul-element. ? Then using your browser's dev-tools, paste another turbo-stream element anywhere in the DOM:

<turbo-stream action="append" target="resources">
  <%= render @resource %>
</turbo-stream>
Copy after login
Copy after login

Pretty cool, right? Turbo uses many features from the browser to give that smooth developer experience we all love. Now you know how Turbo Stream works behind the scenes!

The above is the detailed content of How do Turbo Streams Work (behind the scenes). For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!