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

feat(FormController): add $rollbackViewValue to rollback all controls #7595

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
17 changes: 17 additions & 0 deletions src/ng/directive/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,23 @@ function FormController(element, attrs, $scope, $animate) {
$animate.addClass(element, (isValid ? VALID_CLASS : INVALID_CLASS) + validationErrorKey);
}

/**
* @ngdoc method
* @name form.FormController#$rollbackViewValue
*
* @description
* Rollback all form controls pending updates to the `$modelValue`.
*
* Updates may be pending by a debounced event or because the input is waiting for a some future
* event defined in `ng-model-options`. This method is typically needed by the reset button of
* a form that uses `ng-model-options` to pend updates.
*/
form.$rollbackViewValue = function() {
forEach(controls, function(control) {
control.$rollbackViewValue();
});
};

/**
* @ngdoc method
* @name form.FormController#$commitViewValue
Expand Down
36 changes: 36 additions & 0 deletions test/ng/directive/formSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,42 @@ describe('form', function() {
});
});

describe('rollback view value', function () {
it('should trigger rollback on form controls', function() {
var form = $compile(
'<form name="test" ng-model-options="{ updateOn: \'\' }" >' +
'<input type="text" ng-model="name" />' +
'<button ng-click="test.$rollbackViewValue()" />' +
'</form>')(scope);
scope.$digest();

var inputElm = form.find('input').eq(0);
changeInputValue(inputElm, 'a');
expect(inputElm.val()).toBe('a');
browserTrigger(form.find('button'), 'click');
expect(inputElm.val()).toBe('');
dealoc(form);
});

it('should trigger rollback on form controls with nested forms', function() {
var form = $compile(
'<form name="test" ng-model-options="{ updateOn: \'\' }" >' +
'<div class="ng-form" name="child">' +
'<input type="text" ng-model="name" />' +
'</div>' +
'<button ng-click="test.$rollbackViewValue()" />' +
'</form>')(scope);
scope.$digest();

var inputElm = form.find('input').eq(0);
changeInputValue(inputElm, 'a');
expect(inputElm.val()).toBe('a');
browserTrigger(form.find('button'), 'click');
expect(inputElm.val()).toBe('');
dealoc(form);
});
});

describe('preventing default submission', function() {

it('should prevent form submission', function() {
Expand Down