Skip to content

Instantly share code, notes, and snippets.

@azs06
Forked from Andrew-Max/gist:305483febc3c367dbf57
Last active May 19, 2017 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azs06/93d378dd3545733511f503163cf64683 to your computer and use it in GitHub Desktop.
Save azs06/93d378dd3545733511f503163cf64683 to your computer and use it in GitHub Desktop.
Route lifecycle hooks guide from Ember meetup lightning talk
App.LibraryRoute = App.ApplicationRoute.extend({
activate: function () {
//no longer enter
this._super();
only called once on entering a route.
},
beforeModel: function () {
// any state you want in place before the model is initialized, this is called before any model promises are resolved
// also could be used to conditionally prevent access to a route by throwing transition.abort
},
model: function () {
// interesting note, if you tranisition into a route via a dynamic route segment this will never
// not get called because the model will have already been specified ie {{#link-to 'article' article}}
// in that case use beforeModel or afterModel
},
afterModel: function () {
//anything that may need to reference a model
},
serialize: function () {
// setup any dynamic routes
},
setupController: function () {
// set additional properties on the controller, or override it’s content.
},
renderTemplate: function () {
// can be useful for setting up third party libraries. with a call to this._super
//also could be used to setup a non-default template without super
},
deactivate: function () {
this._super();
//no longer exit
}
actions: {
willTransition: function () {
//can be used to prevent a transition on make sure some state is ready for the next route
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment