Meteor.js how can I use templates with the same name, multiple times

793 Views Asked by At

How can I use the same template name multiple times across different files? I have the same template naming pattern for every page, and the problem is when for example <template name="defaultContent"></template> was already used on another page, it can't be used again.

example URLs:

/home
/home/first
/home/second
/home/third

homePage.html

/template: homePage
  template: default
  template: first
  template: second
  template: third

userPage.html

/template: userPage
  template: default
  template: first
  template: second
  template: third

Iron router code:

// mainpage
Router.route('/home', function () {
    this.render('homePage');
    this.render('default', {to: 'content'});
});

// subpages
Router.route('/home/:content', function () {
  this.render('homePage');
  var templateName = this.params.content;
  if(Template[templateName]){
    this.render(templateName, {to: 'content'});
  };
});

[update] By the way, that's how Meteor kitchen solved this problem:

<template name="CoolPageSubPageBSubPageB1LoremIpsum">
2

There are 2 best solutions below

1
On BEST ANSWER

You can't define multiple templates with the same name.

Meteor defines your templates in a global object, Template (for example, Template.homePage). An object can't have multiple times the same field, so defining multiple times a single template would lead to errors (possibly silent ones).

Plus, how could the router know which defaultContent you are talking about?
How could you?

Instead of shadowing templates, you could simply define multiple templates (Template.homeDefault, Template.userDefault) which would allow you to debug them and refer to them easily.

4
On

You need to wrap it in one parent template per page. You add then your template inside the parent template in its HTML using {{> defaultContent}} if the template you want to reuse is called "defaultContent".