How to render nested collections in Meteor?

handlebars.js, html, javascript, meteor

Solution

Your model is kind of iffy... Consider

`{name:"Category name", parent:"_id of parent category"}`

Okay, that's a lot simpler. To create a category.

var moviesId = Categories.insert({name:"Movies"});
Categories.insert({name:"Horror",parent:moviesId});

That was easy enough. Now, to render in a way that `{{#each}}` works:

Template.categories.categories = function(parent) {
  if (parent) {
    return Categories.find({parent:parent}).fetch();
  } else {
    return Categories.find({parent:{$exists:false}});
  }
}

You might be seeing where this is going...

<template name="categories">
   {{#each categories}}
   <ul>{{name}}
       {{#each categories _id}}
          <li>{{name}}</li>
       {{/each}}
   </ul>
   {{/each}}
</template>

Now I'm not sure if the `{{#each}}` block helper can take a function argument when it calls another helper. If it doesn't...

Template.categories.categories = function() {
  return Categories.find({parent:{$exists:false}}).map(function(parentCategory) {
    return _.extend(parentCategory,
                    {children:Categories.find({parent:parentCategory._id}).fetch()});
  }); 
}

That's a real doozy. It returns parent categories with a new "children" list property, that contains all the children categories. Now you can do:

<template name="categories">
   {{#each categories}}
   <ul>{{name}}
       {{#each children}}
          <li>{{name}}</li>
       {{/each}}
   </ul>
   {{/each}}
</template>

Clever, eh?

Problem

Summary: Child categories nested inside of Parent Categories are not getting rendered in a Meteor template. Details: Consider a data model for 'Category' as such: ``` // Model Schema Category { idCategory : 20, (id of the category itself) idCategoryParent : 0, (idCategory of our parent category) defaultLabel : "Movies" (our label) } ``` There are parent categories and child categories. Parent categories have an idCategoryParent property value of 0. Child categories store the idCategory of their parents as their idCategoryParent property. I'm trying to loop through a collection of these Categories and render them in the following way: ``` <b>Movies</b> // parent category is in bold <ul> // child categories are rendered as an unordered list <li>Horror</li> <li>Comedy</li> <li>Action</li> <li>Drama</li> </ul> <b>Music</b> <ul> <li>Rock</li> <li>Classical</li> <li>Ambient</li> </ul> ``` However, this is what I actually get: ``` <b>Movies</b> <ul> // empty... </ul> <b>Music</b> <ul> </ul> ``` Source Code: ``` // How we get the 'categories_parents' data Template.content.categories_parents = function (){ /* * Get all parent categories (categories with an idCategoryParent of 0) */ var parents = Categories.find({idCategoryParent:0}); var pCount = parents.count(); for (var i = 0; i < pCount; i++){ var pId = parents.db_objects[i]['idCategory']; /* * Get all child categories of the parent (categories with * an idCategoryParent equal to value of parent category's idCategory). */ var children = Categories.find({idCategoryParent:pId}); var cCount = children.count(); /* * Assign the child categories array as a property of the parent category * so that we can access it easily in the template #each expression */ parents.db_objects[i]['children'] = children; } return parents; } // This is our template <template name="content"> <h1>Categories</h1> {{#each categories_parents}} <b>{{defaultLabel}}</b><br /> <ul> {{#each children}} <li>{{defaultLabel}}</li> {{/each}} </ul> {{/each}} </template> ``` Other template configurations I have tried in troubleshooting: ``` {{#each children}} <li>A Child Exists Here</li> // Even this never rendered... no children? {{/each}} ``` Any clues as to why this is happening would be appreciated.

Original source