Last week I had the chance to give a talk at the Meteor San Diego Meetup. My goal was to give some techniques and ideas for building component based Meteor applications. You can check out the slides here and read my write-up below!

What do AngularJS, Polymer and React all have in common? They emphasize building complex web applications by combining and composing together simple, independent components. By “component”, I mean a stand-alone piece of functionality (usually) tied to a visual element. Because they’re responsible only for their own view and functionality and communicate with the outside world through an established interface, they’re very easy to understand and digest. Once you start building applications as compositions of components, you’ll start to see them everywhere!

So how about Meteor? Can we build component based web applications with our favorite framework? Templates and inclusion tags are presented as the go-to system for building components in Meteor in just about every beginner resource and in the official docs. In fact, as a beginner I believed that this was the only way to pull templates into my application.

As I began to build more complex applications, I quickly began to realize that this simple template inclusion just wasn’t cutting it. A modal dialog is a fantastic example to illustrate the issues I was having with this system. Suppose I had a basic modal component. It’s purpose was to render content in a container centered on the screen, and to de-emphasise the rest of the content on the page. When the user clicks outside of the content container, the modal would be dismissed.

If I only had one modal in my application, a naive approach would be to create a single template and include it with inclusion tag syntax:

{{> modal}}

What if I wanted other content in the modal? Maybe I would pass it in through the data context:

{{> modal content="This is my content"}}

What if I wanted more complex content? Like a sign-out button? I may either add a flag to my data context, or create an entirely new modal template:

{{> modal content="Content..." signout=true}}
{{> signoutModal content="Content..."}}

If you take the first route, the complexity of your modal template will soon spiral out of control. The modal now has to concern itself with the complexities of the data it contains, along with the complexities of just being a modal. If you go the second route, you’ll quickly have an explosion of modal-esque templates. A change to your modal’s behavior would require updating each of these templates, instead of making your change in a single place. Both of these scenarios are far from ideal.

Custom Block Helpers

Thankfully, there is a solution! Deep within the Spacebars readme, you’ll find a section on custom block helpers. Custom block helpers give us a new syntax for pulling templates into our application, and even allow us to pass content into our templates. Within our template we can use standard inclusion tag syntax to pull in a special block, Template.contentBlock, which injects the content we’ve passed into our template into the DOM at this point. If you’re familiar with AngularJS, you’ll notice that this is very similar to the ng-transclude directive.

Using custom block helpers, we can build a more powerful modal template:

<body>
    {{#modal}}
        <h1>Hello!</h1>
        <p>I'm modal content!</p>
    {{/modal}}
</body>

<template name="modal">
    <div class="modal fade">
        <div class="modal-dialog">
            <div class="modal-content">
                {{> Template.contentBlock}}
            </div>
        </div>
    </div>
</template>
if (Meteor.isClient) {
    Template.modal.rendered = function() {
        $('.modal').modal();
    };
}

Now, our modal template is only concerned with being a modal. The template sets up the DOM structure required to create a Bootstrap modal and instantiates the modal when it’s rendered. It doesn’t have to concern itself with the complexities of the content you want to place inside of it.

Dynamic Template Includes

We can elevate our modal template to the next level by leveraging another powerful Meteor feature, dynamic template includes. Dynamic templates includes let us provide the name of the template we want to include along with a data context at runtime, rather than at compile time.

What if we wanted to define custom content for our modal’s header, content container and footer? With dynamic template includes, it’s easy:

<template name="modal">
    <div class="modal fade" tabindex="-1">
        <div class="modal-dialog">
            <div class="modal-content">
                <div class="modal-header">
                    {{> Template.dynamic
                        template=header
                        data=headerData}}
                </div>
                {{> Template.dynamic
                    template=content
                    data=contentData}}
                <div class="modal-footer">
                    {{> Template.dynamic
                        template=footer
                        data=footerData}}
                </div>
            </div>
        </div>
    </div>
</template>
<body>
    {{> modal
        header='myHeader'
        content='myContent'
        footer='myFooter'}}
</body>

<template name="myHeader">
    <em>This is the header</em>
</template>

<template name="myContent">
    <p>This is where the content goes.</p>
    <p>There can be multiple elements.</p>
</template>

<template name="myFooter">
    <button>Footer!</button>
</template>

While it is a little more work defining our modal content in templates instead of in-line, it makes our modal template much more powerful and versatile.

Build Your Own Data Context

Our new modal template even allows us to explicitly pass data contexts into our content templates. Check out how we would pass a data context into our footer template:

<body>
    {{> modal
        header='myHeader'
        content='myContent'
        footer='myFooter' footerData=getFooterData}}
</body>
Template.body.helpers({
    getFooterData: function() {
        return {
            runInFooterContext: function() {
                console.log('in footer');
            },
            runInBodyContext: function() {
                console.log('in body');
            }.bind(this)
        };
    }
});

Template.myFooter.events({
    'click button': function() {
        this.runInFooterContext();
        this.runInBodyContext();
    }
});

In this example, we’re building our footer’s data context in a helper method on the body template. This data context has two methods: runInFooterContext and runInBodyContext. When the button in the footer template is clicked, we call both of these functions.

An interesting trick that can be used when juggling data contexts is that methods bound to the current data context can be passed into a child template’s data context. In this example, the runInBodyContext function is bound to the body’s data context before it’s passed into the footer template. When it’s accessed and called within the footer data context, it is executed under the body’s data context.

Final Thoughts

I hope this gave you a few ideas for building more component based systems with Meteor. Check out the slide deck for this talk, and let me know if you have any feedback or questions!