I have a hierarchy of nested KnockoutJS Components using 3.2.0. It's working very well but I'm looking to execute some code once my entire hierarchy of components has been loaded and rendered. It's a rough equivalent of afterRender(), needed for the same common uses cases as afterRender.
I've tried a few approaches but no luck so far:
- Added the following to the root template but it gets called before the nested components are loaded, so too early.
<!--ko template: {afterRender: onLoad.bind($data)} -->
- Using the latest 3.3.0-alpha and specifying synchronous:true on all components. But I believe since I'm using AMD, the components are still 'loaded' asynchronously which mean that just because my root applyBindings() returns, doesn't mean that all components have been loaded and rendered.
- Even tried building a collection of deferred objects that get resolved only when their corresponding components are loaded. This got overly complicated and still didn't work for reasons I won't go into.
Is there a way to get a callback called once a complete hierarchy of knockoutjs components have been loaded and rendered? Thanks!
I just came across these two threads so it seems others are looking for this as well. The key differentiator from the existing workarounds are they don't work with nested components.
I've written a knockout library that triggers an event when all components have been loaded and bound. It uses reference counting, similar to referencing counting used for garbage collection. I extensively use components in my project(s), including nesting many levels deep, and I can't live without knowing when everything is "ready to go". I haven't spend much time on documentation of usage, but the basics are there.
Git Hub wiki: https://github.com/ericraider33/ko.component.loader/wiki
Fiddle: https://jsfiddle.net/ericeschenbach/487hp5zf/embedded/result/
Usage HTML:
Usage JS:
Here is what worked for me. I did not try it in all possible variations such as mixing sync and async components, or using custom component loaders.
There is a method in KO 3.3.0 that all components loading goes through:
ko.components = { get: function(componentName, callback) { ...
the
get
method is invoked with a desiredcomponentName
and when component has been loaded - acallback
is invoked.So all you need to do is wrap
ko.components.get
andcallback
and incrementpendingComponentsCount
on each call, and decrement it aftercallback
is executed. When count reaches zero it means that all components were loaded.25 lines of JS code (using underscorejs).
You also need to handle a special case where
ko.applyBindings
did not encounter any components, in which it also means that all components (all zero of them) were loaded.Again, not sure if this works in every situation, but it seems to be working in my case. I can think of few scenarios where this can easily break (for example if somebody would cache a reference to
ko.components.get
before you get to wrap it).If you'r working with ko.components this might be of use:
1) Create a deferred object to keep track of each component loading
2) Inform knockout to tell you when the component is loaded and ready
3) Synch up both status deferreds