Book Image

Backbone.js Blueprints

By : Andrew Burgess
Book Image

Backbone.js Blueprints

By: Andrew Burgess

Overview of this book

<p>Backbone.js is an open source, JavaScript library that helps you to build sophisticated and structured web apps. It's important to have well-organized frontend code for easy maintenance and extendability. With the Backbone framework, you'll be able to build applications that are a breeze to manage.<br /><br />In this book, you will discover how to build seven complete web applications from scratch. You'll learn how to use all the components of the Backbone framework individually, and how to use them together to create fully featured applications. In addition, you'll also learn how Backbone thinks so you can leverage it to write the most efficient frontend JavaScript code.<br /><br />Through this book, you will learn to write good server-side JavaScript to support your frontend applications. This easy-to-follow guide is packed with projects, code, and solid explanations that will give you the confidence to write your own web applications from scratch.</p>
Table of Contents (14 chapters)
Backbone.js Blueprints
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Displaying a followed user's photos


What do we do with followed users? We want to show the photos from the followed users on the home page. First, in the server.js file, we need to be able to get all the photos from all the users the current user is following. We're going to write a separate function for this:

function followingPhotos(user, callback) {
  var allPhotos = [];
  user.following.forEach(function (f) {
    photos.find({ userId: f }, function (err, photos) {
      allPhotos = allPhotos.concat(photos);
    });
  });
  callback(allPhotos);
}

Does it look familiar? It's almost identical to some of the code we had in our photo-fetching route, you know, the one with the regular expression route. Since we've put this code in a function, you can replace the appropriate lines in that function, so they look like the following code:

} else if (getting === "following") {
  followingPhotos(req.user, function (allPhotos) {
    res.json(allPhotos);
  });
} else {

The last step on the server side...