HOME
|
COMMUNITY
|
BLOG
|
Typed Redux

Typed Redux

In short

Explore how Flowtype, when integrated with Redux, enhances code clarity and scalability, using the F8 app by Meta as an example. By replacing constants with a unified union type (Action), developers gain better insight into actions and their payloads. The article shares an evolved approach, addressing scalability challenges encountered in larger apps with multiple developers, offering insights for improved development practices.

How Flowtype can save your life

One of the most popular examples on using Flowtype with Redux is the F8 app, open-sourced by Meta last year.

It deeply integrates with Flow, most notably:

  • It replaces constants in favor of a single union type Action that describes the type and payload of every action that can be dispatched,
  • Later in reducers, typed Action helps developers to reason about the purpose of action and what could be done with its payload,
  • Each branch of the state has a corresponding type that helps with transforming it.

I have been using similar approach in most of my apps recently. However, I quickly noticed that some of these do not scale well as the app grows, especially when there are several developers working on the app. The setup I want to share with you today is a result of the tweaks and improvements that we added over time to the original F8 App approach. I hope you’ll find it useful!

#1 — Keep types in a single file

Our codebases tend to grow quickly as we add new reducers, actions and selectors. Having types spread across multiple files makes it harder to see them all at a glance and import to your components. It also creates a lot of cross references between files when you need to build a type that composes others inside.

In most of our apps, we tend to keep all the types in a single file. Usually we call it types.js and place it in the root folder. Types that it contains are just named exports, like below:

that can be later imported in a very easy way:

#2 — Describe your state

Although we promote keeping reducers small and atomic, they still contain the logic necessary to change the app state in a response to an action. Things get tricky when we fetch details from the API. We need to describe initial state and the lack of value as the request is pending.

Take the following example of two reducers’ state:

It has flow types for the friends.js and app.js reducers. All good — now we can use them inside our reducers like below:

Did you actually notice that the above code has a type error?

We declared that the friends.list in state will always be an array, either empty or containing some fetched details. However, in our initialState, it’s default value is null. That would potentially cause an exception, since it changes the contract that was settled at the beginning.

Thanks to Flow and the state having a corresponding type, we were able to catch that tiny mistake as early as it happened. It’s these trivial mistakes that can potentially turn our app into an inconsistent or broken state. That’s why it is important to describe the state controlled by a reducer, so that you can catch these things as early as possible.

#3 — Connect like a pro

When working with Redux, we use connect to map state to props of our containers and let them react to changes when they happen.

A simple example could be:

How many times writing something similar you had to step back, check reducers and see the state shape? I guess a lot.

Now, since each of our reducers has its own type, like FriendsState as we saw in the previous paragraph, we can easily introduce yet another one, called State:

and use it in our connect:

This pattern helps us to reason about the entire app state as well as eliminate common issues, like misspelling the property names. Thanks to that, we can catch them early, as we type, instead of debugging it during runtime.

#4 — Be careful with typing actions

Following the F8 app approach, we describe our actions as a single, union type, called Action:

However, union type holding information about all the actions, in the form as above, was something that stopped working for us as the app grew.

The main problem was that we were using redux-promise-middleware to automatically dispatch success and failure case as the promise was either resolved or rejected.

What we really wanted is to have each action, especially the one that’s a result of an API call, to be fully typed, so that it’s easier to map response body of an HTTP request to the state. At the same time, we didn’t want to repeat things like key and payload every time, since effectively the only thing that’s changing is the response body itself.

So, instead of focusing on typing actions, we decided to create one generic type, called ApiAction:

that can be used inside reducers to map an action with the payload.

Thanks to that, we could focus on typing payloads instead, as in this example:

Note: We already have a Friend and Friends type that we are using inside FriendsState, so it’s less typing for the same security.

Finally, implementing it in our reducer is as simple as this:

In this example, we define handlers as an object where each key is a type of an action to handle and function is a transform to be applied to the state. It can be described with the following Flow type:

If you are interested in an implementation of createReducer, check this gist!

#5 — Use constants or not

Last important concept are constants. I haven’t payed too much attention to them just yet, mainly because they are not the main bottleneck inside the app, as it grows.

The focus we had was always on ensuring that it’s as easy for the developer to work with the action payload inside reducer rather than checking whether the action key is correct.

Having said so, up to this point, we tend to define constants in a separate file the old school way, however sometimes we define an enum, called ActionType that can be used in all the above types we mentioned as a replacement to string:

Flow will warn us in case of a spelling mistake.

Wrapping up

There’s definitely a lot of fun when it comes to typing Redux with Flow. The amount of possible solutions, especially with actions, constants and reducers opens up a room for a lot of discussion and improvements. As always in this case, pick the solution that works for you and gives you the most benefits in that very project you are working. I hope the tips that I shared today will give you yet another point of view on using Flow with Redux!

Thanks to Max Stoiber and Nader Dabit for making sure it can be understood by more than just me.

Discover services offered by our React Native development company.

FAQ

No items found.
React Galaxy City
Get our newsletter
Sign up

By subscribing to the newsletter, you give us consent to use your email address to deliver curated content. We will process your email address until you unsubscribe or otherwise object to the processing of your personal data for marketing purposes. You can unsubscribe or exercise other privacy rights at any time. For details, visit our Privacy Policy.

Callstack astronaut
Download our ebook
Download

I agree to receive electronic communications By checking any of the boxes, you give us consent to use your email address for our direct marketing purposes, including the latest tech & biz updates. We will process your email address and names (if you have entered them into the above form) until you withdraw your consent to the processing of your names, or unsubscribe, or otherwise object to the processing of your personal data for marketing purposes. You can unsubscribe or exercise other privacy rights at any time. For details, visit our Privacy Policy.

By pressing the “Download” button, you give us consent to use your email address to send you a copy of the Ultimate Guide to React Native Optimization.