Experience the future of React with full RSC integration in your Rails apps:
- Seamlessly use React Server Components
- Reduce client bundle sizes
- Enable powerful new patterns for data fetching
- ⚡️ Requires React on Rails Pro - See the full tutorial
Major improvements to component and store hydration:
- Components and stores now hydrate immediately rather than waiting for page load
- Enables faster hydration, especially beneficial for streamed pages
- Components can hydrate before the page is fully streamed
- Can use
async
scripts in the page with no fear of race condition - No need to use
defer
anymore
-
The
defer_generated_component_packs
andforce_load
configurations now default tofalse
andtrue
respectively. This means components will hydrate early without waiting for the full page load. This improves performance by eliminating unnecessary delays in hydration.- The previous need for deferring scripts to prevent race conditions has been eliminated due to improved hydration handling. Making scripts not defer is critical to execute the hydration scripts early before the page is fully loaded.
- The
force_load
configuration makereact-on-rails
hydrate components immediately as soon as their server-rendered HTML reaches the client, without waiting for the full page load. - If you want to keep the previous behavior, you can set
defer_generated_component_packs: true
orforce_load: false
in yourconfig/initializers/react_on_rails.rb
file. - If we want to keep the original behavior of
force_load
for only one or more components, you can setforce_load: false
in thereact_component
helper orforce_load
configuration. - Redux store support
force_load
option now and it usesconfig.force_load
value as the default value. Which means that the redux store will hydrate immediately as soon as its server-side data reaches the client. You can override this behavior for individual redux stores by settingforce_load: false
in theredux_store
helper.
-
ReactOnRails.reactOnRailsPageLoaded()
is now an async function:- If you are manually calling this function to ensure components are hydrated (e.g. with async script loading), you must now await the promise it returns:
// Before ReactOnRails.reactOnRailsPageLoaded(); // Code expecting all components to be hydrated // After await ReactOnRails.reactOnRailsPageLoaded(); // Code expecting all components to be hydrated
When using Redux stores with multiple components, you need to explicitly declare store dependencies to optimize hydration. Here's how:
If you have deferred Redux stores and components like this:
<% redux_store("SimpleStore", props: @app_props_server_render, defer: true) %>
<%= react_component('ReduxApp', {}, {prerender: true}) %>
<%= react_component('ComponentWithNoStore', {}, {prerender: true}) %>
<%= redux_store_hydration_data %>
By default, React on Rails assumes components depend on all previously created stores. This means:
- Neither
ReduxApp
norComponentWithNoStore
will hydrate untilSimpleStore
is hydrated - Since the store is deferred to the end of the page, both components are forced to wait unnecessarily
Explicitly declare store dependencies for each component:
<% redux_store("SimpleStore", props: @app_props_server_render, defer: true) %>
<%= react_component('ReduxApp', {}, {
prerender: true
<!-- No need to specify store_dependencies - it automatically depends on SimpleStore -->
}) %>
<%= react_component('ComponentWithNoStore', {}, {
prerender: true,
store_dependencies: [] <!-- Explicitly declare no store dependencies -->
}) %>
<%= redux_store_hydration_data %>
This allows ComponentWithNoStore
to hydrate immediately without waiting for SimpleStore
, improving page performance.