This addon provides an implementation of the prefetch
hook from Ember RFC #97.
yarn add ember-prefetch
- alternate:
npm install [--save|--save-dev] ember-prefetch
Usage
Route#prefetch
The prefetch
hook is used largely the same as the model
hook.
It takes the same parameters (params
and transition
) and is not called if an object has been passed to the transition.
However, the prefetch
hook of all routes involved in a transition are invoked at the beginning of that transition.
This enables child routes to settle faster because their network requests are made in parallel with their parents'.
AppPostRoute = EmberRoute; AppPostCommentsRoute = EmberRoute;
The default functionality of the model
hook will pick up whatever is returned from the prefetch
hook.
A route that defines a prefetch
hook is not required to define a model
hook.
Route#prefetched
The prefetched
method provides access to routes' prefetched data.
prefetched
always returns a promise, but ES7 async function syntax simplifies working with promises.
AppPostCommentsRoute = EmberRoute;
Contributing
Make sure you have Yarn installed. (How do I install Yarn?)
git clone
this repositoryyarn install
Running Tests
ember test
ember test --server