Take for example:
Ember.Model.reopen({
show: Ember.observer( function(){
var target = this.get( 'showPath' ),
waypoint = Ember.Route.transitionTo( 'root' ),
destination = Ember.Route.transitionTo( target ),
router = App.get( 'router' );
waypoint( router );
destination( router, this );
})
});
App.Post.reopen({
showPath: 'posts.show'
});
Here we have defined a show method on a model which transitions from the current state to the destination, first stopping at root.
I've found this makes code relating to the simple task of showing an object super trivial:
App.Post.find(1).show();
Putting aside whether this is helpful, my trouble with it is that we have some pretty blatant coupling of the model class to the router.
My question is...
Is this something to worry about?