Ember Route Hooks - A Complete Look
If you are like me and want to get your hands on something to hack around, I created this Ember Twiddle. Play around with it to get a better feel for Ember’s route hook order. Add your own custom logging, transitions, nested routes and other things. The route hook lifecycle in Ember can be broken up into two distinct phases: the validation phase and the setup phase. These two phases are surrounded by two separate actions that get triggered within the context of the route: willTransition() at the beginning and didTransition() at the end after a successful transition. ...