-
-
Save igbanam/f9719c3e49b36504df6871db20011d93 to your computer and use it in GitHub Desktop.
Ember.Route hook order
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
// Ember 1.10 | |
export default Ember.Route.extend({ | |
//---fire in order on route enter--- | |
beforeModel(transition) { | |
//empty by default | |
//Primarily for redirecting before the model is fetched | |
}, | |
model(params, transition) { | |
//empty by default | |
// fetch the model from server here | |
// return a model | |
}, | |
afterModel(model, transition) { | |
//empty by default | |
//accepts model for optional model setup | |
}, | |
serialize(model, params) { | |
//has default behavior that serializes parameter out of passed model | |
//works perfectly if naming scheme is followed. More on this later. | |
//override to implement custom behavior | |
return {paramName: paramValue}; | |
} | |
redirect(model, transition) { | |
//empty by default | |
// almost identical to afterModel | |
//but route is now considered active | |
}, | |
activate() { | |
// empty by default | |
// used for optional setup after all model hooks | |
}, | |
setupController(controller, model) { | |
//default implmentation sets model as property on controller | |
//must keep default behavior an optionally do more controller setup | |
controller.set('model', model); | |
}, | |
renderTemplate(controller, model) { | |
//default implementation renders the template with the same name as the route | |
//with the default controller | |
// template name is passed as string | |
// override the function to customize which template and controller | |
// or to render mutiple templates | |
this.render(this.routeName, { | |
into: 'applcation', | |
controller: controller, | |
model: model | |
}); | |
}, | |
//----on route exit---- | |
resetController(controller, isExiting, transition) { | |
//empty by default | |
//fires when route changes or model is refreshed | |
// isExiting property true when exiting (obviously) | |
}, | |
deactivate() { | |
//empty by default | |
//fires on route exit | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment