I'm building a single page application with Angular2.
Several of my component properties are provided by async service calls, and the service returning the data is slow. While waiting, the template shows in the browser with several {{variable}} incomplete evaluations.
How can I hook into Angular2's template processor so I am notified when all template expressions have been evaluated? I can show a spinner until that event fires, then remove the spinner.
This example comes close, but doesn't tie into the template processor: Show loading screen when navigating between routes in Angular 2
Thanks!