Beast Mode StimulusReflex with AllFutures
Building a reactive, server-rendered faceted search UI in Rails with StimulusReflex
I’m going to show you how to use StimulusReflex and AllFutures to build faceted UIs in Rails with startling ease.
We’re going to step through the creation of an interface for filtering, sorting and paginating tabular data. I call it… 👉 Beast Mode StimulusReflex 👈.
Beast Mode is literally a Single Page Application; it has one page that displays Customer records in a table. The current demo runs on Rails 8.1, Ruby 3.4, public StimulusReflex 3.5.5 / CableReady 5.0.6, and AllFutures 2.0 — Stimulus only, no Turbo.

I recommend that you open the app in a separate tab and clone the code so that you can follow along.

The Customer model
Beast Mode displays Customer records in a table. Each Customer has five attributes:
- name
- company
- age
- status
The Faker gem is used in seed.rb to populate the cus...








