ruby.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
If you are interested in the Ruby programming language, come join us! Tell us about yourself when signing up. If you just want to join Mastodon, another server will be a better place for you.

Administered by:

Server stats:

1.1K
active users

Konnor Rogers

@remi @janpet 4th option:

Keep your stimulus controller as is, but when you fetch the authors, return the turbo streams for updating.

so something like

github.com/hotwired/turbo-rail

and then in your `fetch()` call do:

```
const resp = await fetch("/authors")
const html = resp.text()

Turbo.renderStreamMessage(html)
```

And thatll apply your turbo streams to the page, not need the turbo frame, and removes any manual DOM manipulation you're currently doing. It kinda just cuts out the turbo-frame

GitHubSyntax for returning multiple turbo streams · Issue #77 · hotwired/turbo-railsBy ghiculescu