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

feat(ngModel): add $touched and $untouched states #7673

Closed
wants to merge 1 commit into from
Closed

feat(ngModel): add $touched and $untouched states #7673

wants to merge 1 commit into from

Conversation

guzart
Copy link
Contributor

@guzart guzart commented Jun 3, 2014

Sets the ngModel controller property $touched to True and $untouched to False whenever a 'blur' event is triggered over a control with the ngModel directive.

References #583

@mary-poppins
Copy link

Thanks for the PR! Please check the items below to help us merge this faster. See the contributing docs for more information.

  • Uses the issue template (#7673)

If you need to make changes to your pull request, you can update the commit with git commit --amend.
Then, update the pull request with git push -f.

Thanks again for your help!

@guzart
Copy link
Contributor Author

guzart commented Jun 3, 2014

@matsko Here's an initial PR.

Couple questions:

  • I feel it should have some relationship to the FormController, I saw that in AngularDart the Form#reset calls the ngModelController markAsUntouched. Not sure how it would apply to angular.js.
  • I think it's missing a way to reset back to untouched, similar to $setPristine, not sure if ngModel#$setUntouched would be enough.
  • On your (previous comment)[https://github.com/More states for form validation #583#issuecomment-44602946] you mentioned that it should be associated to FormController#$submitted, could you explain why? Seems to me that it makes the feature less versatile.

@matsko matsko self-assigned this Jun 3, 2014
@matsko
Copy link
Contributor

matsko commented Jun 3, 2014

@guzart

  • Yes I thought about this too. Is there a good usecase to see if the form has been touched? Displaying a bunch of errors once one field has been blurred out of. Let's leave this out for now and see if it is requested.
  • Yes we do need a $setUntouched function. If you add then then make $$setTouched to only have one dollar sign as well and include some docs for both functions please.
  • Yes. The original idea was that when you submit a form it should mark everything as touched. But I think it's better if we just have $submitted and $touched for now. Having to propagate $submitted to each model is too messy and it feels weird. I'm fine with having a ng-if statement like:
<div ng-if="myForm.$submitted || myForm.myField.$touched">...</div>

@matsko
Copy link
Contributor

matsko commented Jun 3, 2014

Once those two functions are set and the $setClass code is there then it looks good to merge in.

@matsko matsko added this to the 1.3.0-beta.11 milestone Jun 3, 2014
@matsko
Copy link
Contributor

matsko commented Jun 3, 2014

Excellent work BTW :)

@matsko
Copy link
Contributor

matsko commented Jun 3, 2014

Also, for now, let's put the $submitted flag on pause until this PR is resolved: #5574

@smashercosmo
Copy link

Cool, I think this will also resolve my yesterday issue #7666

@guzart
Copy link
Contributor Author

guzart commented Jun 4, 2014

@matsko I updated the PR to use $animate.setClass and added the methods $setTouched, $setUntouched to the ngModelController, tho, I have to say am not super happy with their tests, any suggestions?

@smashercosmo
Copy link

Don't you think that parent form should also get these classes?

@matsko
Copy link
Contributor

matsko commented Jun 4, 2014

@guzart can you make another test and trigger the event using browserTrigger + to execute a blur event? Here's an example of how to call it: https://github.com/angular/angular.js/blob/master/test/ngAnimate/animateSpec.js#L294

Sets the ngModel controller property $touched to True and $untouched to False whenever a 'blur' event is triggered over a control with the ngModel directive.
Also adds the $setTouched and $setUntouched methods to the NgModelController.

References #583
@guzart guzart added cla: yes and removed cla: no labels Jun 5, 2014
@guzart
Copy link
Contributor Author

guzart commented Jun 6, 2014

hey @matsko, I've added the test that ensures ngModel sets the touched state on blur.
Let me know of any other change/add/remove, anything I can do to help.

@guzart
Copy link
Contributor Author

guzart commented Jun 6, 2014

@smashercosmo do you mean like myForm.$touched? do you have a particular use case?

@smashercosmo
Copy link

@guzart I thought it should work the same way .ng-dirty and .ng-pristine classes work. When one input becomes dirty the whole form also becomes dirty.

@@ -2017,6 +2059,12 @@ var ngModelDirective = function() {
});
});
}

element.on('blur', function(ev) {
scope.$apply(function() {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't like that we get one extra-digest here. May be it's better to move it inside upper $apply block and check event object for blur event?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think that there is any other way.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could have some code that checks if the updatedOn has a blur event, and then piggyback on the first digest, otherwise bind to the element the way it currently is.
I think it could be be a good optimization, not sure how expensive a digest is. @matsko what do you think?

@matsko
Copy link
Contributor

matsko commented Jun 10, 2014

@guzart this is an excellent PR. Great work. I'm just waiting on @smashercosmo's reply and then I will merge this in.

@smashercosmo
Copy link

@matsko my reply about what?))

@matsko
Copy link
Contributor

matsko commented Jun 10, 2014

@guzart #7673 (comment)

@matsko
Copy link
Contributor

matsko commented Jun 11, 2014

@guzart @smashercosmo let's apply the fixes in another PR. Perhaps they could be applied to other parts of NgModel.

I will continue now and merge this in.

@matsko
Copy link
Contributor

matsko commented Jun 11, 2014

This PR Looks Good to Me.

@matsko
Copy link
Contributor

matsko commented Jun 11, 2014

MERGED

@matsko matsko closed this Jun 11, 2014
@matsko
Copy link
Contributor

matsko commented Jun 11, 2014

Landed as adcc5a0

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants