|
300 | 300 | * `changesObj` is a hash whose keys are the names of the bound properties that have changed, and the values are an
|
301 | 301 | * object of the form `{ currentValue, previousValue, isFirstChange() }`. Use this hook to trigger updates within a
|
302 | 302 | * component such as cloning the bound value to prevent accidental mutation of the outer value.
|
| 303 | + * * `$doCheck()` - Called on each turn of the digest cycle. Provides an opportunity to detect and act on |
| 304 | + * changes. Any actions that you wish to take in response to the changes that you detect must be |
| 305 | + * invoked from this hook; implementing this has no effect on when `$onChanges` is called. For example, this hook |
| 306 | + * could be useful if you wish to perform a deep equality check, or to check a Date object, changes to which would not |
| 307 | + * be detected by Angular's change detector and thus not trigger `$onChanges`. This hook is invoked with no arguments; |
| 308 | + * if detecting changes, you must store the previous value(s) for comparison to the current values. |
303 | 309 | * * `$onDestroy()` - Called on a controller when its containing scope is destroyed. Use this hook for releasing
|
304 | 310 | * external resources, watches and event handlers. Note that components have their `$onDestroy()` hooks called in
|
305 | 311 | * the same order as the `$scope.$broadcast` events are triggered, which is top down. This means that parent
|
@@ -2512,6 +2518,12 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
|
2512 | 2518 | $exceptionHandler(e);
|
2513 | 2519 | }
|
2514 | 2520 | }
|
| 2521 | + if (isFunction(controllerInstance.$doCheck)) { |
| 2522 | + controllerInstance.$doCheck(); |
| 2523 | + } |
| 2524 | + if (isFunction(controllerInstance.$doCheck)) { |
| 2525 | + controllerInstance.$doCheck(); |
| 2526 | + } |
2515 | 2527 | if (isFunction(controllerInstance.$onDestroy)) {
|
2516 | 2528 | controllerScope.$on('$destroy', function callOnDestroyHook() {
|
2517 | 2529 | controllerInstance.$onDestroy();
|
@@ -3158,7 +3170,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
|
3158 | 3170 | forEach(bindings, function initializeBinding(definition, scopeName) {
|
3159 | 3171 | var attrName = definition.attrName,
|
3160 | 3172 | optional = definition.optional,
|
3161 |
| - mode = definition.mode, // @, =, or & |
| 3173 | + mode = definition.mode, // @, =, <, or & |
3162 | 3174 | lastValue,
|
3163 | 3175 | parentGet, parentSet, compare, removeWatch;
|
3164 | 3176 |
|
@@ -3270,6 +3282,11 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
|
3270 | 3282 | }
|
3271 | 3283 | });
|
3272 | 3284 |
|
| 3285 | + if (isFunction(destination.$doCheck)) { |
| 3286 | + var doCheckWatch = scope.$watch(triggerDoCheckHook); |
| 3287 | + removeWatchCollection.push(doCheckWatch); |
| 3288 | + } |
| 3289 | + |
3273 | 3290 | function recordChanges(key, currentValue, previousValue) {
|
3274 | 3291 | if (isFunction(destination.$onChanges) && currentValue !== previousValue) {
|
3275 | 3292 | // If we have not already scheduled the top level onChangesQueue handler then do so now
|
@@ -3297,6 +3314,10 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
|
3297 | 3314 | changes = undefined;
|
3298 | 3315 | }
|
3299 | 3316 |
|
| 3317 | + function triggerDoCheckHook() { |
| 3318 | + destination.$doCheck(); |
| 3319 | + } |
| 3320 | + |
3300 | 3321 | return {
|
3301 | 3322 | initialChanges: initialChanges,
|
3302 | 3323 | removeWatches: removeWatchCollection.length && function removeWatches() {
|
|
0 commit comments