Part 1: History of Redux State Management at Vingle
In this part two, I am going to describe our team’s current best practices to make Typescript work for you when working with Redux.
- Creating Type-safe Actions and Reducers
- Properly typing Redux Container
Creating Type-safe Actions and Reducers
Considering how reducers are just simple functions that accept two arguments, you would expect Typescript to work well with those two. States do. But actions, because dispatch
accepts any types of arguments, cannot be typed safely without developers’ involvement. If you don’t type your actions, your reducer will end up in the not-so-ideal state:
You can catch some of type errors with unit tests, but you will miss some properties and lose easy refactoring provided by Typescript. To acheive type-safety before Typescript 2.8, you could use string enum:
IOtherAction
is needed so that Typescript won’t complain about default case in switch statement (that is, exhaustiveness checking). This works OK if you ignore the fact that there are essentially two duplicate type definitions in your action interfaces, and action creators. Starting with Typescript 2.8, you can use ReturnType
to remove action interfaces. The code below is our way to type actions and reducers.
Typing Redux Container components
Typing Redux container components correctly is important to use, and test the components correctly. Before our team learned how to type components, we ended up with tests like this:
So let’s dive in.
Before you try to type Redux container components properly, you need to understand the type definition of connect
. Carefully read the code below I quoted from Redux type definition (comments are mine). The definition uses a lot of type overloading but I will go through some cases to help you understand what exactly goes on.
Please note that the definitions below are from @types/react-redux@5.0.19
.
When you don’t pass in any argument to connect
This is when you only need dispatch
inside your container.
As there are no arguments to connect
, all connect will do is to inject dispatch<any>
into props.
When you pass in mapStateToProps to connect
If you want to map only state to props, say for render only components, you
It almost looks like a magic as Redux type definition does a lot of heavy lifting for us. Let’s examine what actually happens inside the code above.
This^ connect
definition is the overloaded type definition used. In the definition, mapStateToProps
is expanded to
So Typescript will infer TStateProps
, and State
to be {query: string}
, and AppState
from the argument mapStateToProps
. InferableComponentEnhancerWithProps
is expanded to
And Typescript will infer P
to be Props
, and check whether the container component’s props
is larger than the union of TStateProps
, DispatchProp<any>
, and TOwnProps
.
If I put the logic above into code, it looks like the following:
When you pass in both mapStateToProps and mapDispatchToProps to connect
This isn’t hard to understand once you understood how Redux type definition handles mapStateToProps
. mapDispatchToProps
is treated like mapStateToProps
. For your reference, I included the overloaded type below.
When you also pass in mergeProps
This is also rather straightforward. Instead of merging TStateProps
, TDispatchProps
, and TOwnProps
naively for the component definition, Connect
will now depend on mergeProps
to merge these props. The only additional check, (or inference) is whether mergeProps
is of type (stateProps: TStateProps, dispatchProps: TDispatchProps, ownProps: TOwnProps): TMergedProps;
.
What this means
First of all, congratulations on getting through all these different types! Now you get how Connect
works. But, it turns out you don’t need to type things directly when you use Redux’s Connect
. However, other HOC’s definitions will vary, and you will need to learn how their type systems work.
Extracredit (Typescript tips not related to Redux)
Know your types in React
Knowing React types helps your code to work with React seamlessly. Here is the usual go-to list for us.
How to type HOCs that inject props
The following code is an excerpt from react-intl
. This type definition is straight-forward to set up, but expects the users of the library to know which props are injected into.
Use Ambient Types to simplify your dependencies
This is an easy-to-miss option when you first start using Typescript. You should use typeRoots
option to avoid adding unnecessary dependencies.
Afterword
As we develop, and maintain our React apps, we have encountered many bugs. Based on our experience, the harder-to-track, and more critical bugs often stemmed from typeless part of the code. That is why we are determined to type things both comprehensively, and correctly. This isn’t the farthest we can go with Typescript, but this is where we are at, and I hope this article has helped you understand Typescript and Redux more deeply.