Quantcast
Channel: 懒得折腾
Viewing all articles
Browse latest Browse all 764

Real-Time Charts with Meteor, React and D3

$
0
0

Real-Time Charts with Meteor, React and D3

Meteor has recently announced official support for React as its rendering engine (together with Blaze). This is great news, once React is becoming more and more popular and brings improvements in many aspects of your code (reusability, unit-testing, no spaghetti code…).

Since the React fever, many tutorials explain how to integrate it with the most popular libraries outside. The perspective of a reactive chart using React components and D3.js is pretty exciting and in fact there are many guides out there exploring this subject. This one correlates D3 and React lifecycles and this other explores svg components.

The aim of this tutorial is to take a step further and show how to build reactive charts with React and D3, but using the Meteor ecosystem. Note: this hackpad is pretty useful if you want to use D3 in Meteor but with Blaze rendering your templates instead.

If you are not familiar at all with React and D3 I suggest you to take a break and read about them. A good way to start thinking in React + Meteor is to read this tutorial as well.

In order to make things nicer, we will develop a full-functional web application that will keep track of how many beers you drink on each day of the week. More than detecting if you are an alcoholic, the aim of this app is to show how we can take advantage of React power to build reactive components that comprises D3 elements and receive data from Meteor.

You can see how the app looks like in this live preview. You might want to follow the code in thegithub. Time to start!

0. Designing the App

As React is component-based this step is important and may save you a lot of time in the future. The plan is to have two columns:

  • The leftmost will have a form to insert data and a list of all data previously inserted when one will be able to remove it by clicking.
  • The rightmost will render a bar chart.

If you haven’t seen the live preview, now it’s a good time for it. Let’s breakdown our app into components:

React Components

The App component encompasses all components and will be responsible for gathering data from the MongoDB and passing it accordingly.

The black rectangle is the BeerForm component. It’s a basic form where we will add the number of beers and the day that event happened.

The red rectangle is the BeerList component, which encapsulates the data and renders a BeerItem component (in pink), formatting the data nicely and allowing us to click in any record to delete it.

Finally, the blue rectangle is our star – the BarChart component. It will receive data from Meteor and render this nice bar chart. This component was designed to be reusable, so the only thing you will need to do is to pass the correspondent data and it will be able to render the chart (with an horizontal label and a top label informing quantity).

Now time to dig into some code!

1. Setting up the environment

This is the default step. In your console, type:

$ meteor create beer-dashboard
$ cd beer-dashboard

You will note that three files were automatically generated. Get rid of them. Time for adding packages:

$ meteor add react
$ meteor add d3js:d3
$ meteor add momentjs:moment
$ meteor add twbs:bootstrap
$ meteor add fortawesome:fontawesome

The first is the official react package bundled by the Meteor Development Group. The second isthe official D3.js package for Meteor. We are doing some date manipulation, so MomentJS is a good choice. Fourth and fifth are Bootstrap and FontAwesome, just for styling purposes.

2. Defining the Collection

Let’s begin defining the only server-side piece of our app (although it is also client-side in order to achieve latency compensation). In the top-level directory of your app, create a collections.js file and add the following:

We are defining our collection (Beers) and two methods which will be called in our components. Here, insertBeers takes the number of beers and the date, checks for inconsistencies and saves into the DB. On the other hand, removeBeer takes an id and removes the entry.

3. BeerForm Component

This is the top panel of the left-side column and should be straightforward. Create a client/ folder and beerform.jsx inside it. Then add the code:

If you are familiar with React, there’s no news in there. For those that are not so much, let me explain a little bit.

React.createClass() is where you create your components. The only mandatory function every component must have is the render function, the place you will actually render something into the DOM.

From line 17-42 is just Bootstrap markup. Two important points:

  1. When writing JSX files (which React will take care of translating to pure JavaScript for you) you write className instead of class.
  2. Line 22 handles the submit calling the handleSubmit() function defined previously.

From line 2-13, our custom function handleSubmit() will take care of any event it was attached (in this case, onSubmit as you can guess). Notes on this code:

  1. Line 3 we prevent the form to be actually sent.
  2. Lines 4-5 get the DOM nodes of the fields through the ref attribute, passing in Lines 7-9 their correspondent value to the Meteor method we defined before. Note this call is asynchronous.
  3. Lines 11-12 we just clean the form up.

Great! Our first component is done and we are able to insert data into our collection. Go to your browser console and type Beers.find().fetch() to see if it’s working. The only missing point is we haven’t defined where BeerForm will be rendered.

4. Meteor-powered React

It’s time for starting sketching our App component – which will render all components together. But before that we need to render the component, so create the files client/index.html and client/init.jsx and put the following:

Here we are instructing React to render the App component into document.body when client starts.

Now create client/app.jsx:

Try to run your code now to see if everything is working. It should display the BeerForm component and the header. The only tricky thing here is Line 2-8. There is where Meteor shines and really empowers React.

While in Line 2 you tell React you are going to fetch data from your Meteor database, the function getMeteorData() says you are storing the object beers in this.data. Better still, it’s reactive! You now can pass it via props to children components, so you can add that to your code:

The BeerList component is receiving whatever you have in this.data.beers, which in our case is the recently-fetched data from the Beers collection. Everything nice, let’s move forward.

5. BeerList and BeerItem Components

That’s a easy one and pretty much the same you can find in the official Meteor-React tutorial. In client/beerlist.jsx:

Because it makes sense to handle the logic in every individual component, we define BeerItem, which receives the beer object. Note the data fetched from Meteor is now accessible in this.props.data.

Let’s end this part creating client/beeritem.jsx:

Comments:

  • Be careful: data now is in this.props.beer in spite of what happened on the parent component.
  • We do some formatting to display things nicer.
  • Remember the removeBeer method we created at first? Here is when it’s invoked.

See your work now on the browser. Our left column is done and you are able to insert elements through the form and delete any record simply by clicking on each item in the bottom panel.

6. Mapping Data

Before coding the BarChart component, it’s worthy to spare a couple minutes to think about its functionality and how we could reuse it in a future project. That’s what I thought for this case:

  • It must have a label indicating the quantity of each bar.
  • It must have a label grouping each bar in some concept (e.g.: weekday, month, country, brand…).
  • It must have flexible width and height.

You can think in many more functionalities (bar colors and transition effects for example) but we are sticking to the aforementioned.

Our goal is to receive the data in a specific format and then render the chart “agnostically”. This will allow you to reuse this component in any other module, or even a project that is not Meteor-based! All you need is to ensure the data is passed in the correct format.

That being said, let’s define the data parameter will be an array of objects, each object comprising two parameters: qty and xLabel. Our component will iterate over every object and draw a bar associated with it, labeling it horizontally with the xLabel value and defining its height based on theqty value.

More specifically, go back to app.jsx and add the function:

Check the mapData function. It initializes the array of objects with no quantities but previously defined labels. Next we map the beers object (returned from our collection) with the aid of MomentJS to add the number of beers to the qty property. The code might seem weird but it’s just JavaScript.

Our last change in this file is to render the BarChart component with mapped data. So go the render() function and add in the second column:

Differently from the BeerList component, here the data object is coming through mapData()function.

Everything set, let’s bring D3 to the show.

7. BarChart Component

Let’s code the state-of-art of reactive chart rendering. Create client/barchart.jsx and add:

Let’s start easy. React has well-defined components lifecycle, some of them we will use now. Starting from the bottom:

  • render() returns an empty div. In a while we will render our svg into it.
  • getDefaultProps() is a protection for the case not all props are passed. In this case, we are setting the default values for width and height.
  • componentWillUpdate() is invoked every time the props change. Means that as our data is reactive, any change will trigger the custom updateChart(props) function (which we will define soon). Note the function takes a nextProps parameter, which is exactly what we need – whenever the props change, pass the new props to the rendering function.
  • componentDidMount() is invoked once when the component is first rendered. Here we create our svg tag inside the div the component is rendering (returned by the this.getDOMNode()function) with the sizing properties we established. After that, we call the rendering function to draw the bars in case there are any data.

It’s worthy to note that our App component might take a while to fetch all information, so the component might be initialized without any data. The guard for this is to update accordingly in response to the componentWillUpdate() callback.

Canvas set, but we are not rendering anything! Let’s fix that adding the following:

If you are familiarized with D3, there’s nothing to worry about it. For those who aren’t, some explanation:

  • Line 4 uses Underscore to get the maximum value of qty. We use it to define our vertical scale. Note we give some space on the top to add the label.
  • Lines 15-18 we bind all rect elements to the data we mapped before and handle when a new rect is detected (appending into svg and setting its color).
  • Lines 20-31 is where we perform updates. Transitions smooth the changes and we set the new values of x, y, width and height. Note we also give some space now at the bottom to insert another label.
  • Lines 33-34 deletes unnecessary rects.
  • Lines 36-70 describe pretty much the same, now with labels and some positioning adjustment. This is nothing but a trial-and-error game until you feel comfortable.

And we are done! More important than the code is how to behave when integrating React and D3 – you first render the svg and then updates the elements (rect and text in this case) whenever your data changes.

8. Summarizing

This was a very comprehensive and long tutorial. Take a time to digest everything but keep the notion that integrating Meteor, React and D3 shouldn’t be painful. Moreover, if you are careful when designing your components, they will be reusable from now on.

Exercise: how could you improve BeerForm, BeerList and BeerItem to become a single solid and reusable component?

In the likely event that something could have be implemented better or more efficiently, don’t hesitate and make a comment or start a new discussion. See you around!



Viewing all articles
Browse latest Browse all 764

Trending Articles