I've been upgrading my custom directives to the new component architecture. I've read that components do not support watchers. Is this correct? If so how do you detect changes on an object? For a basic example I have custom component myBox
which has a child component game with a binding on the game . If there is a change game within the game component how do I show an alert message within the myBox? I understand there is rxJS method is it possible to do this purely in angular? My JSFiddle
JavaScript
var app = angular.module('myApp', []);
app.controller('mainCtrl', function($scope) {
$scope.name = "Tony Danza";
});
app.component("myBox", {
bindings: {},
controller: function($element) {
var myBox = this;
myBox.game = 'World Of warcraft';
//IF myBox.game changes, show alert message 'NAME CHANGE'
},
controllerAs: 'myBox',
templateUrl: "/template",
transclude: true
})
app.component("game", {
bindings: {game:'='},
controller: function($element) {
var game = this;
},
controllerAs: 'game',
templateUrl: "/template2"
})
HTML
<div ng-app="myApp" ng-controller="mainCtrl">
<script type="text/ng-template" id="/template">
<div style='width:40%;border:2px solid black;background-color:yellow'>
Your Favourite game is: {{myBox.game}}
<game game='myBox.game'></game>
</div>
</script>
<script type="text/ng-template" id="/template2">
<div>
</br>
Change Game
<textarea ng-model='game.game'></textarea>
</div>
</script>
Hi {{name}}
<my-box>
</my-box>
</div><!--end app-->
Writing Components without Watchers
This answer outlines five techniques to use to write AngularJS 1.5 components without using watchers.
ng-change
Directive$onChanges
Life-cycle Hook$doCheck
Life-cycle HookUse the
ng-change
DirectiveYou can use the
ng-change
directive to react to input changes.And to propagate the event to a parent component, the event handler needs to be added as an attribute of the child component.
JS
And in the parent component:
This is the preferred method going forward. The AngularJS strategy of using
$watch
is not scalable because it is a polling strategy. When the number of$watch
listeners reaches around 2000, the UI gets sluggish. The strategy in Angular 2 is to make the framework more reactive and avoid placing$watch
on$scope
.Use the
$onChanges
Life-cycle HookWith version 1.5.3, AngularJS added the
$onChanges
life-cycle hook to the$compile
service.From the Docs:
The
$onChanges
hook is used to react to external changes into the component with<
one-way bindings. Theng-change
directive is used to propogate changes from theng-model
controller outside the component with&
bindings.Use the
$doCheck
Life-cycle HookWith version 1.5.8, AngularJS added the
$doCheck
life-cycle hook to the$compile
service.From the Docs:
Intercomponent Communication with
require
Directives can require the controllers of other directives to enable communication between each other. This can be achieved in a component by providing an object mapping for the require property. The object keys specify the property names under which the required controllers (object values) will be bound to the requiring component's controller.
For more information, see AngularJS Developer Guide - Intercomponent Communicatation
Push Values from a Service with RxJS
Build a service with RxJS Extensions for Angular.
Then simply subscribe to the changes.
Clients can subscribe to changes with
DataService.subscribe
and producers can push changes withDataService.set
.The DEMO on PLNKR.