I am wondering if there is a way (similar to Gmail) for Angular to delay showing a new route until after each model and it's data has been fetched using its respective services. For example, if there were a ProjectsController that listed all Projects and project_index.html which was the template that showed these Projects, Project.query() would be fetched completely before showing the new page. Until then, the old page would still continue to show (for example, if I were browsing another page and then decided to see this Project index.)
|
|
|
$routeProvider resolve property allows delaying of route change until data is loaded. First define a route with
notice that the
Notice that the controller definition contains a resolve object which declares things wich should be available to the controller constructor. Here the The Working demo: http://mhevery.github.com/angular-phonecat/app/#/phones Source: https://github.com/mhevery/angular-phonecat/commit/ba33d3ec2d01b70eb5d3d531619bf90153496831 |
|||||||||||||||||||||
|
|
Here's a minimal working example which works for Angular 1.0.2 Template:
JavaScript:
Streamlined version: Since $http() already returns a promise (aka deferred), we actually don't need to create our own. So we can simplify MyCtrl. resolve to:
The result of $http() contains data, status, headers and config objects, so we need to change the body of MyCtrl to:
|
|||||||
|
|
Delaying showing the route is sure to lead to an asynchronous tangle... why not simply track the loading status of your main entity and use that in the view. For example in your controller you might use both the success and error callbacks on ngResource:
Then in the view you could do whatever:
|
|||||
|
|
I worked from Misko's code above and this is what I've done with it. This is a more current solution since
|
||||
|
|
|
I see some people asking how to do this using the angular.controller method with minification friendly dependency injection. Since I just got this working I felt obliged to come back and help. Here's my solution (adopted from the original question and Misko's answer):
Since this code is derived from the question/most popular answer it is untested, but it should send you in the right direction if you already understand how to make minification friendly angular code. The one part that my own code didn't requires was an injection of "Phone" into the resolve function for 'phones', nor did I use any 'delay' object at all. I also recommend this youtube video http://www.youtube.com/watch?v=P6KITGRQujQ&list=UUKW92i7iQFuNILqQOUOCrFw&index=4&feature=plcp , which helped me quite a bit Should it interest you I've decided to also paste my own code (Written in coffeescript) so you can see how I got it working. FYI, in advance I use a generic controller that helps me do CRUD on several models:
|
||||
|
|
|
I like darkporter's idea because it will be easy for a dev team new to AngularJS to understand and worked straight away. I created this adaptation which uses 2 divs, one for loader bar and another for actual content displayed after data is loaded. Error handling would be done elsewhere. Add a 'ready' flag to $scope:
In html view:
See also: Boostrap progress bar docs |
|||
|
|
|
Further to changing $defer to $timeout you should also change:
in directives.js the gmail style loader will start to work. |
|||
|
|
|
I can't figure out how to commment on this question, but does the DI syntax in the answer at the top work with minification? |
|||
|
|
This doesn't work with minified code, you need to do DI manually: https://groups.google.com/forum/?fromgroups=#!topic/angular/DZS_YoeCcds/discussion |
|||
|
|