I've simplified my scenario to the code posted here: click a button, which takes you to some search results loaded asynchronously. I wanted to see if I could implement this without overriding serialize/deserialize.
The default serialization routines appear to expect the context to be non-empty and having an id property, so to satisfy this requirement before the data has been loaded, I push an empty hash to the array and assign the array an id. This works, but is there a better way?
var App = Ember.Application.create();
App.ApplicationController = Ember.Controller.extend();
App.SubPageController = Ember.ArrayController.extend({
loaded: false
});
App.ApplicationView = Ember.View.extend({
templateName: "application"
});
App.SubPageView = Ember.View.extend({
templateName: "subPage"
});
App.DefaultView = Ember.View.extend({
templateName: "default",
goToSub: function() {
var cxt = App.SubPage.find("5");
return this.get("controller.target").send("goToSubPage", cxt);
}
});
App.Router = Ember.Router.extend({
root: Ember.Route.extend({
goToSubPage: Ember.Route.transitionTo('subPage'),
index: Ember.Route.extend({
route: "/",
connectOutlets: function(router) {
return router.get("applicationController").connectOutlet("body", "default");
}
}),
subPage: Ember.Route.extend({
route: "/subPage/:sub_page_id",
connectOutlets: function(router, cxt) {
return router.get("applicationController").connectOutlet("body", "subPage", cxt);
}
})
})
});
App.SubPage = Ember.Object.extend();
App.SubPage.reopenClass({
_list: Em.A(),
_stub: [
{
id: 1,
name: "Product 1"
}, {
id: 2,
name: "Product 2"
}
]
}, {
find: function(id) {
var observed, self;
observed = this._list;
observed.pushObjects({});
self = this;
this._list.id = id;
setTimeout((function() {
observed.clear();
observed.pushObjects(self._stub);
App.router.get("subPageController").set('loaded', true);
}), 1000);
return this._list;
}
});
App.initialize();
and the templates
<script type="text/x-handlebars" data-template-name="application">
{{outlet body}}
</script>
<script type="text/x-handlebars" data-template-name="default">
This is the default page.
<div>
<button {{action goToSub target="this"}}>Go</button>
</div>
</script>
<script type="text/x-handlebars" data-template-name="subPage">
{{#if controller.loaded }}
{{#if controller.firstObject}}
<h2>Results</h2>
{{#each result in controller}}
<div>Result: {{result.name}}</div>
{{/each}}
{{else}}
<h2>No Results Found.</h2>
{{/if}}
{{else}}
<h2>Loading Subpage ...</h2>
{{/if}}
</script>