Skip to content

Redux Guidelines FAQs

Cyndi Chin edited this page Oct 16, 2024 · 12 revisions

Before you continue

This page involves some tidbits and guidelines when implementing or working with Redux in our application. If you are looking where to get started, please visit our other Redux wiki pages first:

Now that you have the gist of it from the other wikis, proceed!

Guidelines

We are adopting Redux on the team to utilize the benefits of structuring information in a single directional flow and maintaining state. To help establish best practices and maintain readable code, here are some guidelines.

Structure

State

  • Views get its data through the state and states should be fairly simple. The reducer should not contain complex logic and simply should return the state for the view
  • A new state is returned by dispatching action to a store, which is calculated by the reducer

Actions

  • New actions should be created as classes and in it's own separate class file. For each action, there are associated action types.
  • Payload for actions are created as properties on the action classes. They should be properties and not an associated value on the enum case

Middlewares

  • Middlewares are optional and are only created if intentional.
  • Some use cases for middlewares is to handle side effects of actions or include complex logic such as making network requests or reading data from storage
  • Dependencies in the flow should live here
  • A new action may be sent as a byproduct of an action that gets sent to the middleware, but does not have to be if we don’t need to change the view’s state

Tips

Naming Convention

  • When creating action types, lean towards using user and API action names over state change names. We want our actions to read clearly on what action was taken and not the consequence of the action. The view should not know the consequences.

No view models should exist

  • Redux and MVVM are two different systems that don’t really work together
  • There are some cases in which we want to take the model and add some logic so that it's presentable for the view. Although this is essentially a view model, we prefer to name these classes as states.
  • Business logic should be handled by the middleware
  • Presentation logic should be handled by the reducer by returning the proper state

Switch Statements

  • The reducer and the middleware always switch over action types
  • There is a 2 lines maximum rule for the switch statement case so that they can maintain readability

No need to explicitly call main thread

  • The store will automatically ensure actions are executed on the main thread so we don’t need to add another check for main thread

Call reducers explicitly

  • We want to explicitly call to reducers instead of passing in the previous state i.e MicrosurveyPromptState.reducer(state.microsurveyState, action) instead of state.microsurveyState

Tests

  • At a minimum, state should have tests. See example here:
  • Middlewares should also be tested. See example here:

FAQs

How do I know which action to dispatch and where? Do I always need to dispatch an action from the middleware?

In Redux, it should simplify how we think without caring about the consequences of it. Therefore, when it comes to naming convention, we dispatch general action names from the view and the middleware dispatches middleware actions.
i.e. GeneralActionType.show lives in the view and GeneralMiddlewareActionType.show lives in the middleware

A dispatched action can update state in multiple places. However, we should only fire an event if needed. Therefore, we don't need to always fire an event from the middleware unless we are waiting for a response in the middleware to update the state. For example, if we're capturing telemetry, then we only need to dispatch an action to the middleware and not to be handled in the reducer. Here is a place where we were dispatching unnecessary actions and removed it in the PR.

What's the preferred pattern when a middleware starts to get too big?

Let's try to split the middleware up based on responsibilities.

Context: One example is our Tabs middleware is already at 1k lines, which means its too broad of a concept for one middleware to be responsible for.

Is there such thing as dispatching too many redux actions? Should views optimize for reloading content?

Don't optimize unless you run into performance issues. If we need to solve this problem, bring it up to the team and can discuss whether we want to add to our system a way to only dispatch newState to observers where the state has changed.

Clone this wiki locally