Flux este un șablon de arhitectură (de la Facebook) pentru gestionarea state cu flux de date unidirecțional (într-o singură direcție). A fost baza conceptuală pentru Redux și a influențat majoritatea bibliotecilor de state moderne. Ideea principală: datele curge într-o singură direcție previzibilă.
The unidirectional cycle
Action → Dispatcher → Store → View
↑ │
└───────────────────────────────────┘
(user interaction creates a new Action)
1. Action — a plain object describing WHAT happened ({ type: 'ADD_TODO', text })
2. Dispatcher — a central hub that sends every action to the stores
3. Store — holds state + logic; updates itself in response to actions
4. View — renders from the store; user interactions dispatch new actions
