Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Flux

I don't agree with most of this; I consider Facebook's description of MVC to be erratic. If you are interested about this point of view, I invite you to read my notes on MVC - Unidirectional Data Flow.

The Need for Flux

In 2011, Facebook engineers had a problem, the zombie notification: users would see they had a chat notification, but when they clicked on it there would be no new message waiting for them. Each solution would only address some particular edge case.

The problem was that at that time, Facebook was using the MVC architecture, which was becoming increasingly unstable as the application grew more and more complicated.

mvc

The number of models and views had compunded, and the the relationships between them had become unmanageably difficult to keep track of. Likewise, the code which dictated their interactions was largely imperative and easily prone to breaking.

Unveiled in 2014, Flux an entirely new approach to state management. It's goal was to make changes in state predictable (and thus more easily manageable, especially in complex applications) by imposing certain restrictions on how and when could happen.

How Flux Works

Flux is a generalized pattern, not a specific library.

Unidirectional data flow is one of the integral concepts of Flux: All data must flow in only one direction, and is a significant part of what keeps everything so predictable.

Consider MVC, the views and models have arrows running in both directions, in other words, data flow in MVC is bidirectional. Bidirectional data flow becomes harder to maintain as complexity grows, because it gets increasingly difficult to pinpoint exactly where a particular change originates. Since the models and views are so complexly interconnected, effects can cascade in unanticipated ways, increasing the likelihood of unwanted bugs.

The unidirectional data flow enforced by Flux helps avoiding cascading effects.

flux

  • Actions: Representations of the ways users can interact with the application.

  • Dispatcher: Receives an action and forwards it to each of the application's store.

    • Flux only has one dispatcher.
    • Every action is sent to every store.
  • Stores: Structures which hold the application's state, as well as the logic around how to update that state.

  • Views: What the user sees and interacts with. They are the interface for displaying the data from the stores, as well as for sending actions back to the stores through the dispatcher.