Redux, Firebase and the Saga in between

Omer Levy
Rumors
7 min readAug 29, 2017

--

In our previous article: React Native, Redux and Firebase for experts, by dummies we have shown the redux patterns we use to interact with Firebase Realtime Database, and the thinking process we went through to get them.

We’ve noticed that as our application grew, using asynchronous code in redux action creators tends to get intricate and lose its readability fast.
We kept thinking to ourselves:

“Surely, there must be a better way to handle side effects and async code.”

There is! It’s called redux-saga.

And so, we replaced the side effect handler in our application from redux-thunk to redux-saga.

In this article I am going to focus on how we implemented in our react native redux project the interaction with Firebase Realtime Database using redux-saga.
I would like to emphasize that these patterns aren’t specific to React Native or to React at all, and they can be adapted to any application that uses redux.

All code snippets below and a sample project are available on our Github repository.

If you’re not familiar with Redux, going through their documentation is probably the first thing you should do before reading further.

So what is redux-saga?

From redux-saga:

“redux-saga is a library that aims to make application side effects (i.e. asynchronous things like data fetching and impure things like accessing the browser cache) easier to manage, more efficient to execute, simple to test, and better at handling failures.”

redux-saga is a redux middleware, which means it can respond to actions, has access to the application state and dispatch redux actions as well.
When working with redux-saga, you can think of a saga as a separate thread in your application that’s solely responsible for side effects.

Redux-saga uses Sagas, a concept in software engineering (for more details about this concept see: A saga on sagas from MSDN site).
Redux-saga implements Sagas with Generator functions.

If you’re not familiar with Generator functions, you can think of it as a special kind of function that it’s execution flow can be controlled by the function caller.

For more information about Generator functions:

Another building block of redux-saga are Declarative Effects:
In redux-saga, Generators yield objects called “Effect”. An Effect is an object which contains instructions to the middleware to perform some operation such as: invoke some asynchronous function or dispatch an action.

Some of the main benefits of redux-saga are:

  1. Separation between actions and asynchronous operations:
    Unlike redux-thunk, the action creators return only pure actions (objects) instead of functions. The asynchronous flow is handled by the sagas.
  2. Easy to read and understand: since redux-saga uses Generators, it’s easier to read and understand asynchronous code (no more nested callbacks).
  3. Easy to manage complex flows: You can think of a saga as a ‘mini state machine’ that describes a specific flow in your application.
  4. Easy to test: The use of Generators and Declarative Effects makes the tests much easier and clean.

For more information about redux-saga: redux-saga tutorial

Integration with Firebase Realtime Database

Note:

  1. If you’ve read the previous article, you’ll may notice that the actions structure is a bit different, that because we’ve normalize it with a standard structure.
  2. The attached code is type-less. We use flow as a static type checker.

Update and remove data

Update and remove data is relatively simple.
Let’s have a look at the update example:

Actions:

Specific wrapper function:

As before, we have the same 3 pure general actions.

The wrapper function updateUserContactRequested in this example, receives the relevant parameters, and just call the action creator of FIREBASE_UPDATE_REQUESTED with a payload object (that contains the parameters) and the meta type for the saga processing.

As one can tell, no async operations were employed!

The reducer stays the same as well:

And now to the saga, where the magic happens:

The generator function watchUpdateRequested is the entry point. It always waits for FIREBASE_UPDATE_REQUESTED action. When it gets an FIREBASE_UPDATE_REQUESTED action, it calls to the appropriate getter (by the meta type), to retrieve the relevant updates, and fork updateItmes Generator with the updates.
updateItmes , which runs on a different task performs the asynchronous update operation and dispatch a FULFILLED or REJECTED action for the reducer.
Pay attention that we used fork effect to perform the asynchronous operations in a different task (since fork is a non-blocking effect), in order to let watchUpdateRequested to keep listening to other requests.
If we wouldn’t do so (use call effect for example), we would loose Update requests.

The principle of remove is more of the same. You can take a look at remove patterns in our sample repository.

Tests

An awesome benefit of employing redux-saga, is how straight forward and easy the tests are! Let’s see an example of a test:

The action’s wrapper function test is really straightforward:

We only make sure that the wrapper creates the appropriate action with the appropriate payload.

Now, let’s take a look at the sagas tests:

We can see how the use of Generators and Effect simplify the tests.
Let’s take watchUpdateRequested test as an example:
Every time we perform generator.next() we get to the next yield statement and verify what we’ve got.
As you can see, the generator lets us push values into it, what’s makes the tests really easy.
In addition the separation between Effect creation and Effect execution makes it possible to examine what Effect object was returned, without executing the effect itself.
For example, when we want to ensure that fork of updateItems was called, all we have to check is that fork(sagas.updateItems, updates, action.meta.type) was returned from the generator, but updateItems itself is not run. In order to test updateItems we’ll have to perform a specific test for it.

Fetch and listen to data

Let’s recall the problems we’ve dealt with in the previous article:

  1. Where do you set the listener?
  2. Where do you unset the listener?
  3. Where do we maintain all these open listeners and how we prevent duplicate listeners.
  4. Doing .on(‘value’, callback) gets all messages on every change (even to a single message) which is wasteful.
  5. How do we report progress while fetching the data?

In this article we’re going to tackle problems 1–4 in a different way than we previously did.
Regarding problem number 5: it stays almost the same — since the reducers were almost not affected.
The only exception is that the Firebase Database reference, which in the previous solution was saved in the store, was taken out from there and is treated in a different way.

Let’s take a look at the listener actions:

Notice that all the action creators are “pure”, which means that they return only simple JavaScript object with structure of actions and not functions.
As before, all the actions are generic and in case we want to listen to a specific path in the database, we simply wrap it with a function, and this time, we also specify the relevant path at the wrapper function, and pass it to the generic action creator as a Firebase Databbase reference:

To solution to problems 1–4 lies within the sagas.

Before showing our solution, I’d like to mention that the solution uses a redux-saga abstraction called Event channels. Event channels allow communication with external event sources, queuing their external events and translate them into objects.

You can read more about saga channels here.

Listener sagas:

Similar to what we’ve seen in the update watcher example, everything starts with the generator function watchListener .
For each path that we want to listen to (and is represented by a meta type) we initialize an instance of watchListener with the appropriate meta type.

For example: watchListener is initialized with userContacts meta type in the rootSaga Generator function (where all the listeners should be initialized):

The function rootSaga is registered as the “run list” of the saga middleware.

The watchListener generator function is in fact a small state machine. This can promise us a clear flow and a consistent state of the listener. In addition, we can be sure that there are no duplicate instances of the same listeners.

Here is watchListener state machine diagram, where M is the meta type which watchListener was initialized with:

When watchListener receives a Listen Request with meta type M, it runs getDataAndListenToChannel asynchronously (using the fork effect).
Then it’s waiting for a listener removal request or a new listener request of type M.
When it gets such request, it cancels the task (using acancel effect) and dispatches a Listener Removed action (using aput effect) to update the state (via the reducer).
Now, say it got a new LISTEN request, watchListener(M) will fork the getDataAndListenToChannel saga once again.

This way, we avoid duplicate listeners, and in case of a new listener request while listening, we’d just restart the listener.

Until now we took care of problems 1,2,3.

getDataAndListenToChannel retrieves the data in 2 stages:

  1. Reading the data from the path once
  2. Listening to the path using saga channel in order to get updates on its children.

Notice that the channel is created first, then the data is read once and then, before it start to listen to the channel, it cleans the channel (by a flush effect) to avoid duplicate data.

In case of an error, or a task cancellation, it will get to the finally block and will close the channel.
This solves problem 4.

The channel itself is created using createEventChannel function. We configured its buffer to expand in case of multiple messages in the queue to avoid of loosing events.

Conclusion

Using redux-saga could be a bit overwhelming in the beginning.
However, we believe that the benefits of using redux-saga outweigh the costs of learning and implementing it. In addition we avoided a technical debt.

you can see the full code in our sample repository on Github:
https://github.com/rmrs/react-native-redux-saga-firebase-patterns

Many thanks to Erez Rokah and Sagi Kedmi that were and are an integral part of the work that lead to this post, and for their help in reviewing it.

--

--