I tried to implement Foundation Zurb's Reveal nicely in an Ember app, but I didn't succeed. Now with the pre.4 release I tried again and it turns out to be really easy, but I'm still wondering if I'm following the right patterns. If so, I hope this example will help you in your project.
Using:
- ember-1.0.0-pre.4.js
A working example can be found in this jsfiddle.
I have a list of Post objects. Clicking on a list item will open a modal dialog and shows detailed information about the post.
To show the list, I create an Ember app and have a resource for my Post model:
window.App = Em.Application.create();
App.Post = DS.Model.extend({
title: DS.attr('string'),
description: DS.attr('string')
});
App.Post.FIXTURES = [{
id: 1,
title: 'Lorem',
description: 'Lorem ipsum dolor sit amet'
}, {
id: 2,
title: 'Ipsum',
description: 'Fusce ante nulla'
}];
App.Store = DS.Store.extend({
revision: 11,
adapter: DS.FixtureAdapter.create()
});
App.Router.map(function () {
this.resource('posts', {
path: '/'
});
});
App.PostsRoute = Em.Route.extend({
model: function () {
return App.Post.find();
}
});
For the modal dialog, I include a render 'reveal' in the application template.
<script type="text/x-handlebars">
{{outlet}}
{{render "reveal"}}
</script>
I override the (by Ember on-the-fly generated) RevealController, since I need an ObjectController and I create a reveal template.
App.RevealController = Em.ObjectController.extend();
Since the content of my RevealController an instance of the Post model, I can put its properties in the template:
<script type="text/x-handlebars" data-template-name="reveal">
<div id="myModal" class="reveal-modal large">
<h2>{{title}}</h2>
<p>{{description}}</p>
<a class="close-reveal-modal">×</a>
</div>
</script>
When I click on the title of a Post I want to set the content of the RevealController the instance of the Post. For this, I call the openModal event from the posts template and pass the current Post as its context:
<script type="text/x-handlebars" data-template-name="posts">
<ul>
{{#each controller}}
<li>
<a {{action openModal this}} href='#'>{{title}}</a>
</li>
{{/each}}
</ul>
{{outlet}}
</script>
Due to target bubbling I can define the openModal event in the ApplicationRoute and I can set the content of the RevealController to the passed Post and eventually show the dialog:
App.ApplicationRoute = Em.Route.extend({
events: {
openModal: function (content) {
this.controllerFor('reveal').set('content', content);
$('#myModal').reveal();
}
}
});
With my current knowledge of ember this feels like the right way to do, but I'm excited to hear if there are any improvements.
needsi.o.controllerFor. Haven't got this working so far. – bazzel Feb 9 at 15:07