Skip to content

virtualforce/FLux

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

FLux

Flux is the application architecture that Facebook uses for building client-side web applications. Flux is basically a pattren. it uses to persist states between different components and it follows uni-directional data flow unlinke other framework which support two way data-binding like angularjs.

As Flux is pattren, here are many implementations exist, few of them listed blow

Most popular are

Flux in detail

We are going to discuss flux implementation of flux pattren this is basic of all implementation.

Three major parts of flux

  • the dispatcher
  • the stores
  • views

Flow

Views generate actions. Dispatcher it only exist per application. it is publisher/subscriber sort of things which receive actions and payload then it call registerd callback and pass payload to that action in stores.registered callback exist in store where data updates then store update views by call.

#Flux is probably better explained by explaining its individual components:

Actions – Helper methods that facilitate passing data to the Dispatcher
Dispatcher – Receives actions and broadcasts payloads to registered callbacks
Stores – Containers for application state & logic that have callbacks registered to the dispatcher
Controller Views – React Components that grab the state from Stores and pass it down via props to child components.

Releases

No releases published

Packages

No packages published