DEV Community

Rails Designer
Rails Designer

Posted on • Originally published at railsdesigner.com

How do Turbo Streams Work (behind the scenes)

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
Enter fullscreen mode Exit fullscreen mode

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

<turbo-stream action="append" target="resources">
  <%= render @resource %>
</turbo-stream>
Enter fullscreen mode Exit fullscreen mode

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>
Enter fullscreen mode Exit fullscreen mode

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.

Showing a browser's devtools; highlighting the β€œresources” tab

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.

<html>
  <head>
    <script src="https://unpkg.com/@hotwired/turbo"></script>
  </head>
  <body>
    <ul id="resources">
    </ul>
  </body>

  <turbo-stream action="append" target="resources">
    <template>
      <li>
        <p>I am appended using Turbo Streams! 🀯
      </li>
    </template>
  </turbo-stream>
</html>
Enter fullscreen mode Exit fullscreen mode

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="prepend" target="resources">
  <template>
    <li>
      <p>I am now prepended using Turbo Streams! πŸ₯³
    </li>
  </template>
</turbo-stream>
Enter fullscreen mode Exit fullscreen mode

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!

Top comments (1)

Collapse
 
railsdesigner profile image
Rails Designer

Knowing you could manually inject Turbo Stream elements into the DOM; what use cases you come up for that?