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

Commit b38d17c

Browse files
shahatatbosch
authored andcommitted
fix(ngModelOptions): do not trigger digest during debounce
This change means that anyone watching `$viewValue` will no longer see the update immediately for debounced updates Closes #8814
1 parent b474c36 commit b38d17c

File tree

2 files changed

+27
-19
lines changed

2 files changed

+27
-19
lines changed

src/ng/directive/input.js

+11-19
Original file line numberDiff line numberDiff line change
@@ -956,13 +956,7 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
956956
// value, so it may be necessary to revalidate (by calling $setViewValue again) even if the
957957
// control's value is the same empty value twice in a row.
958958
if (ctrl.$viewValue !== value || (value === '' && ctrl.$$hasNativeValidators)) {
959-
if (scope.$root.$$phase) {
960-
ctrl.$setViewValue(value, event);
961-
} else {
962-
scope.$apply(function() {
963-
ctrl.$setViewValue(value, event);
964-
});
965-
}
959+
ctrl.$setViewValue(value, event);
966960
}
967961
};
968962

@@ -1173,9 +1167,7 @@ function radioInputType(scope, element, attr, ctrl) {
11731167

11741168
var listener = function(ev) {
11751169
if (element[0].checked) {
1176-
scope.$apply(function() {
1177-
ctrl.$setViewValue(attr.value, ev && ev.type);
1178-
});
1170+
ctrl.$setViewValue(attr.value, ev && ev.type);
11791171
}
11801172
};
11811173

@@ -1207,9 +1199,7 @@ function checkboxInputType(scope, element, attr, ctrl, $sniffer, $browser, $filt
12071199
var falseValue = parseConstantExpr($parse, scope, 'ngFalseValue', attr.ngFalseValue, false);
12081200

12091201
var listener = function(ev) {
1210-
scope.$apply(function() {
1211-
ctrl.$setViewValue(element[0].checked, ev && ev.type);
1212-
});
1202+
ctrl.$setViewValue(element[0].checked, ev && ev.type);
12131203
};
12141204

12151205
element.on('click', listener);
@@ -1588,8 +1578,8 @@ var VALID_CLASS = 'ng-valid',
15881578
*
15891579
*
15901580
*/
1591-
var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$parse', '$animate', '$timeout',
1592-
function($scope, $exceptionHandler, $attr, $element, $parse, $animate, $timeout) {
1581+
var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$parse', '$animate', '$timeout', '$rootScope',
1582+
function($scope, $exceptionHandler, $attr, $element, $parse, $animate, $timeout, $rootScope) {
15931583
this.$viewValue = Number.NaN;
15941584
this.$modelValue = Number.NaN;
15951585
this.$validators = {};
@@ -2112,8 +2102,12 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
21122102
pendingDebounce = $timeout(function() {
21132103
ctrl.$commitViewValue();
21142104
}, debounceDelay);
2115-
} else {
2105+
} else if ($rootScope.$$phase) {
21162106
ctrl.$commitViewValue();
2107+
} else {
2108+
$scope.$apply(function() {
2109+
ctrl.$commitViewValue();
2110+
});
21172111
}
21182112
};
21192113

@@ -2330,9 +2324,7 @@ var ngModelDirective = function() {
23302324
var modelCtrl = ctrls[0];
23312325
if (modelCtrl.$options && modelCtrl.$options.updateOn) {
23322326
element.on(modelCtrl.$options.updateOn, function(ev) {
2333-
scope.$apply(function() {
2334-
modelCtrl.$$debounceViewValueCommit(ev && ev.type);
2335-
});
2327+
modelCtrl.$$debounceViewValueCommit(ev && ev.type);
23362328
});
23372329
}
23382330

test/ng/directive/inputSpec.js

+16
Original file line numberDiff line numberDiff line change
@@ -1414,6 +1414,22 @@ describe('input', function() {
14141414

14151415
}));
14161416

1417+
it('should not trigger digest while debouncing', inject(function($timeout) {
1418+
compileInput(
1419+
'<input type="text" ng-model="name" name="alias" '+
1420+
'ng-model-options="{ debounce: 10000 }"'+
1421+
'/>');
1422+
1423+
var watchSpy = jasmine.createSpy('watchSpy');
1424+
scope.$watch(watchSpy);
1425+
1426+
changeInputValueTo('a');
1427+
expect(watchSpy).not.toHaveBeenCalled();
1428+
1429+
$timeout.flush(10000);
1430+
expect(watchSpy).toHaveBeenCalled();
1431+
}));
1432+
14171433
it('should allow selecting different debounce timeouts for each event',
14181434
inject(function($timeout) {
14191435
compileInput(

0 commit comments

Comments
 (0)