Skip to content

Latest commit

 

History

History
49 lines (27 loc) · 3.77 KB

day-21.cq.md

File metadata and controls

49 lines (27 loc) · 3.77 KB

Introduction to Flux

Handling data inside large client-side applications is a complex task. Today we're looking at a one method of handling complex data proposed by Facebook called the Flux Architecture.

As our applications get bigger and more complex, we'll need a better data handling approach. With more data, we'll have more to keep track of.

Our code is required to handle more data and application state with new features. From asynchronous server responses to locally-generated, unsynchronized data, we have to not only keep track of this data, but also tie it to the view in a sane way.

Recognizing this need for data management, the Facebook team released a pattern for dealing with data called Flux.

Today, we're going to take a look at the Flux architecture, what it is and why it exists.

The Flux Pattern

Flux is a design pattern created by Facebook that manages how data flows through a client-side application. As we've seen, the appropriate method of working with components is through passing data from one parent component to its children components. The Flux pattern makes this model the default method for handling data.

The Flux pattern is usually composed of 4 parts organized as a one-way data pipeline.

The major idea behind Flux is that there is a single-source of truth (the store) that can only be updated by triggering actions. The actions are responsible for calling the dispatcher, which the store can subscribe for changes and update its own data accordingly.

I> The key idea behind Flux is data flows in one direction and kept entirely in the store.

Flux Implementations

Flux is a design pattern, not a specific library or implementation. Facebook has open-sourced a library they use that provides the interface for a dispatcher and a store that we can use in our application.

Facebook’s implementation is not the exclusive option. Since Facebook started sharing Flux with the community, the community has responded by writing tons of different Flux implementations. Redux has been made incredibly popular within the React ecosystem (and can actually be used in a Vue application with minor configuration changes).

Within the Vue community, however, Vuex is the most-widely used, flux-like, state management library.

Plug for fullstackvue

We discuss this material in-depth with regards Flux, using Vuex, and even integrating Vuex to a large server-persisted shopping-cart app. Check it out at fullstack.io/vue.

Vuex

Though Vuex was inspired largely by Flux, it is not itself a pure flux implementation. It also takes inspiration from the Elm Architecture. Vuex provides the same general principles around how to update the data in our application, but in slightly different (and easier) way.

The main principles of Vuex are:

  • The view (i.e components) dispatches actions that describe what happened.
  • The store receives these actions and determines what state changes should occur.
  • After the state updates, the new state is pushed to the view.

This simplicity is what makes Vuex a fairly easy library to understand since it doesn’t include any of the more complicated functionality often found in other flux-like libraries (e.g. middlewares, dispatcher payloads, etc).

In any case, this is enough of an introduction to the flux pattern. Tomorrow we'll actually start working with Vuex to adapt the example applications we've built in the last couple of articles.