Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($interval): do not invoke $apply when invokeApply is false #7988

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/ng/interval.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ function $IntervalProvider() {
iteration = 0,
skipApply = (isDefined(invokeApply) && !invokeApply);

deferred.$$skipApply = skipApply;
count = isDefined(count) ? count : 0;

promise.then(null, null, fn);
Expand Down
14 changes: 7 additions & 7 deletions src/ng/q.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@
function $QProvider() {

this.$get = ['$rootScope', '$exceptionHandler', function($rootScope, $exceptionHandler) {
return qFactory(function(callback) {
$rootScope.$evalAsync(callback);
return qFactory(function(callback, skipApply) {
$rootScope.$evalAsync(callback, skipApply);
}, $exceptionHandler);
}];
}
Expand Down Expand Up @@ -208,7 +208,7 @@ function qFactory(nextTick, exceptionHandler) {
if (pending) {
var callbacks = pending;
pending = undefined;
value = ref(val);
value = ref(val, deferred.$$skipApply);

if (callbacks.length) {
nextTick(function() {
Expand All @@ -217,7 +217,7 @@ function qFactory(nextTick, exceptionHandler) {
callback = callbacks[i];
value.then(callback[0], callback[1], callback[2]);
}
});
}, deferred.$$skipApply);
}
}
},
Expand All @@ -239,7 +239,7 @@ function qFactory(nextTick, exceptionHandler) {
callback = callbacks[i];
callback[2](progress);
}
});
}, deferred.$$skipApply);
}
}
},
Expand Down Expand Up @@ -331,14 +331,14 @@ function qFactory(nextTick, exceptionHandler) {
};


var ref = function(value) {
var ref = function(value, skipApply) {
if (value && isFunction(value.then)) return value;
return {
then: function(callback) {
var result = defer();
nextTick(function() {
result.resolve(callback(value));
});
}, skipApply);
return result.promise;
}
};
Expand Down
35 changes: 26 additions & 9 deletions src/ng/rootScope.js
Original file line number Diff line number Diff line change
Expand Up @@ -904,18 +904,35 @@ function $RootScopeProvider(){
* - `function(scope)`: execute the function with the current `scope` parameter.
*
*/
$evalAsync: function(expr) {
$evalAsync: function(expr, skipApply) {
// if we are outside of an $digest loop and this is the first time we are scheduling async
// task also schedule async auto-flush
if (!$rootScope.$$phase && !$rootScope.$$asyncQueue.length) {
$browser.defer(function() {
if ($rootScope.$$asyncQueue.length) {
$rootScope.$digest();
}
});
if (!skipApply) {
if (!$rootScope.$$phase && !$rootScope.$$asyncQueue.length) {
$browser.defer(function() {
if ($rootScope.$$asyncQueue.length) {
$rootScope.$digest();
}
});
}
this.$$asyncQueue.push({scope: this, expression: expr});
} else {
var asyncQueue = ($rootScope.$$liteAsyncQueue || ($rootScope.$$liteAsyncQueue = []));
var asyncTask;
if (!asyncQueue.length) {
$browser.defer(function() {
while (asyncQueue.length) {
try {
asyncTask = asyncQueue.shift();
asyncTask.scope.$eval(asyncTask.expression);
} catch (e) {
$exceptionHandler(e);
}
}
});
}
asyncQueue.push({scope: this, expression: expr});
}

this.$$asyncQueue.push({scope: this, expression: expr});
},

$$postDigest : function(fn) {
Expand Down
15 changes: 15 additions & 0 deletions test/ng/intervalSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,21 @@ describe('$interval', function() {
}));


it('should NOT call $rootScope.$digest if invokeApply is set to false',
inject(function($interval, $rootScope, $window, $browser) {
var digestSpy = spyOn($rootScope, '$digest').andCallThrough();
var resolveSpy = jasmine.createSpy('resolve');
var notifySpy = jasmine.createSpy('notify');
$interval(noop, 1000, 1, false).then(resolveSpy, null, notifySpy);

$window.flush(4000);
$browser.defer.flush();
expect(digestSpy).not.toHaveBeenCalled();
expect(resolveSpy).toHaveBeenCalledOnce();
expect(notifySpy).toHaveBeenCalledOnce();
}));


it('should allow you to specify the delay time', inject(function($interval, $window) {
var counter = 0;
$interval(function() { counter++; }, 123);
Expand Down