Refactoring the Stream component

Now, with the Flux architecture in place, we will rethink how our React components get the data that they need to render. As you know, there are usually two sources of data for a React component:

  • Calling another library; for example, in our case, calling the jQuery.ajax() method or SnapkiteStreamClient.initializeStream()
  • Receiving data from a parent React component via the props object

We want our React components not to use any external libraries to receive data. Instead, from now on, they will get that same data from stores. Keeping this plan in mind, let's refactor our Stream component.

Here is how it looks now:

var React = require('react'); var SnapkiteStreamClient = require('snapkite-stream-client'); var StreamTweet ...

Get React: Building Modern Web Applications now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.