I'd like to redirect the router to the last state a user was in.
What's the best way to do this? Is it possible to use redirectTo in the router somehow?
Here's an example. Suppose there are two main routes for a post, show and edit
App.Router = Ember.Router.extend({
post: Ember.Route.extend({
route: '/:post',
show: Ember.Route.extend({
route: '/',
connectOutlets: function(router, context) {
router.get('applicationController').connectOutlet("showPost", post);
}
}),
edit: Ember.Route.extend({
route: '/edit',
connectOutlets: function(router, context) {
router.get('applicationController').connectOutlet("editPost", post);
}
})
})
})
Now, I'd like to do something like:
post: Ember.Route.extend({
initialState: 'edit',
route: '/:post',
redirectTo: function(router) {
router.transitionTo(router.currentState.name)
}.property()
})
Additional complication:
The redirectTo is specific to a given post, i.e., post/3 may default to edit, but post/4 may default to show depending on their last respective states.
I'm guessing the other way to do this is in by using a parent controller / view that has it's own stateManager, and navigates to the appropriate child view. If that's the preferred method, what's wrong with using the router for this?
Any clarity here is greatly appreciated!