|
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
|
@@ -2499,6 +2505,12 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
|
2499 | 2505 | $exceptionHandler(e);
|
2500 | 2506 | }
|
2501 | 2507 | }
|
| 2508 | + if (isFunction(controllerInstance.$doCheck)) { |
| 2509 | + controllerInstance.$doCheck(); |
| 2510 | + } |
| 2511 | + if (isFunction(controllerInstance.$doCheck)) { |
| 2512 | + controllerInstance.$doCheck(); |
| 2513 | + } |
2502 | 2514 | if (isFunction(controllerInstance.$onDestroy)) {
|
2503 | 2515 | controllerScope.$on('$destroy', function callOnDestroyHook() {
|
2504 | 2516 | controllerInstance.$onDestroy();
|
@@ -3151,7 +3163,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
|
3151 | 3163 | forEach(bindings, function initializeBinding(definition, scopeName) {
|
3152 | 3164 | var attrName = definition.attrName,
|
3153 | 3165 | optional = definition.optional,
|
3154 |
| - mode = definition.mode, // @, =, or & |
| 3166 | + mode = definition.mode, // @, =, <, or & |
3155 | 3167 | lastValue,
|
3156 | 3168 | parentGet, parentSet, compare, removeWatch;
|
3157 | 3169 |
|
@@ -3263,6 +3275,11 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
|
3263 | 3275 | }
|
3264 | 3276 | });
|
3265 | 3277 |
|
| 3278 | + if (isFunction(destination.$doCheck)) { |
| 3279 | + var doCheckWatch = scope.$watch(triggerDoCheckHook); |
| 3280 | + removeWatchCollection.push(doCheckWatch); |
| 3281 | + } |
| 3282 | + |
3266 | 3283 | function recordChanges(key, currentValue, previousValue) {
|
3267 | 3284 | if (isFunction(destination.$onChanges) && currentValue !== previousValue) {
|
3268 | 3285 | // If we have not already scheduled the top level onChangesQueue handler then do so now
|
@@ -3290,6 +3307,10 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
|
3290 | 3307 | changes = undefined;
|
3291 | 3308 | }
|
3292 | 3309 |
|
| 3310 | + function triggerDoCheckHook() { |
| 3311 | + destination.$doCheck(); |
| 3312 | + } |
| 3313 | + |
3293 | 3314 | return {
|
3294 | 3315 | initialChanges: initialChanges,
|
3295 | 3316 | removeWatches: removeWatchCollection.length && function removeWatches() {
|
|
0 commit comments