Accessing /documents/new/1 directly works fine, but when coming from /documents/select the record is already available due to the query Ember did earlier in the Select route.
Routes
this.resource('documents', function() {
this.route('new', { path: '/new/:document_id' });
this.route('show', { path: '/:document_id' });
this.route('select');
});
Route
App.DocumentsSelectRoute = Ember.Route.extend({
model: function() {
return App.Document.find({public: true});
}
});
App.DocumentsNewRoute = Ember.Route.extend({
model: function (params) {
console.log('New Model')
var originalDoc = App.Document.find(params.document_id),
newDoc = App.Document.createRecord();
originalDoc.one('didLoad', function () {
newDoc.setProperties(this.serialize());
});
return newDoc;
}
});
model never gets called when coming from the Select route since the record already got loaded there. I found some information about this behavior but it doesn't help my situation http://stackoverflow.com/a/14591851/555240
Update:
Templates
application.handlebars
<li>{{#linkTo "documents.select"}}New{{/linkTo}}</li>
select.handlebars
<ul>
{{#each doc in controller}}
<li>
{{#linkTo "documents.new" doc}}<div class="cover"></div>{{/linkTo}}
{{#linkTo "documents.new" doc}}{{doc.title}}{{/linkTo}}
</li>
{{/each}}
</ul>
new.handlebars
{{ model }}
{{#if model.slug }}
{{ view App.DocumentView templateNameBinding="model.slug" class="document portrait" }}
{{ else }}
Loading...
{{/if}}
{{ model }} in new.handlebars show <App.Document:ember340:1> when transitioned to, but <App.Document:ember304:null> when navigated to directly.