June 2016
Intermediate to advanced
910 pages
18h 59m
English
The reason why we decided to implement the Flux architecture in our React application is that we wanted to have a data flow that is easier to maintain. In the previous chapter, we implemented AppDispatcher, TweetActionCreators, and TweetStore. Let's quickly re-cap what they are used for:
TweetActionCreators creates and dispatches the actionsAppDispatcher dispatches all the actions to all storesTweetStore stores and manages the application dataThe only missing parts in our data flow are bits of functionality that are as follows:
TweetActionCreators to create the actions and start the data flowingTweetStore to get dataHere are some important questions to ask: Where ...
Read now
Unlock full access