I’ve been working with redux-saga for half a year and I love it because it allows to write clean declarative code.
Every time that I approach a technology I research patterns, conventions, best practices to improve my knowledge of it.I found a lot of resources (documentation is very good) on redux-saga but nothing that explains how to structure and define sagas on the application to be more maintainable and scalable.
Considering that, I would like to share how I manage sagas hoping that this article can help someone and receive some feedbacks to improve. The simple concept is to define two kind of sagas, flow and common.
are sagas that have only one responsibility and could be used from all part of our application.They should include every time the actions lifecycle (START, SUCCESS, FAILURE)They should return always something and to be called they should be exported as generators.They delegate the error management to the flow sagas.The actions dispatched from here can manage the state of the redux store.
Example: Get the preferences of the user.
are sagas that manage the behaviour of a feature and should be used only by one feature.**We can also define a flow saga, a saga that creates a behaviour using common sagas.**They’re always invoked by a dispatched action and describe the behaviour (flow) of a specific feature.They should manage the success and the failure behaviour, for which we use the TRY-CATCH statement.Inside the try we have the success behaviour and inside the catch the failure one.
Example: How the feature works on the bootstrap.
I hope that this article can help you to avoid some of the problems I encountered.I’m curious on what is your approach, and what do you think about the article.
Have fun coding 🚀
Follow me on Github: https://github.com/CVariscoFollow me on Twitter: https://twitter.com/chrivarisco