As the structure of the following example indicates, we have three controllers - one that coordinates and two that handle user input. We have taken the liberty of using underscore to simplify checking if all conditions are met.
Here, the FormCheckboxCtrl
has no validation, but does coerce its results to be human readable, while FormTextInputCtrl
returns the text input and is invalid if none is provided.
What remains is, simply, to make it work.
By recursively traversing the $$childHead
and $$nextSibling
properties of the scope, we can give ask if any controller nested within the hierarchy wishes to respond to the hook, thereby influencing the life cycle of our parent controller.
This simple implemnation will look for and call the name
function on any scope, starting from the $$childHead
of the scope passed in. Once all the results have been accumulated, the callback
is called with those results, allowing for a nice functional interface, as in the case of passing in _.every
.
Since the callback is required in this naive implementation, it would be possible to pass in angular.noop
as the callback to discard the results, thereby issuing some call to arbitrarily nested controllers. In that case, however, a more reasonable approach would be to $broadcast
an event.
When is this approach of registering hooks more appropriate than using events? Primarily when you need to get the data back from the user via collaborating controllers. The way event broadcasting requires an event to the child controllers, each of which must call another event for the parent controller to handle quickly becomes brittle. In cases where the data is not transient, it is likely best to use a service object to store all the data and have the collaborators reference it directly.
That said, there is certainly still a place for hooks like the one outlined above, but it is necessary to use it in appropriate situations. Littering our code with hooks that would be best treated as services for their persistence or events for their unidirectionality will not be an improvement.
But in cases where data transience and bidirectional collaboration between controllers at different levels of nesting is present, hooks reign supreme by exposing carefully selected points of interaction.
Herein, we have only examined a very simple hooking mechanism, which can certainly be built out to have some additional interesting properties. Optional callbacks and the ability to handle arguments would be straight forward changes. More interesting is the possibility to return more than just a single function for accumulating results, but instead having a more robust interface. This could include functionality akin to that in ActiveRecord
callbacks, wherein returning false prevents future hooks from running and prevents some default action.