-
Notifications
You must be signed in to change notification settings - Fork 27.4k
refactor(input): wrapped validation logic in helper function #5643
Conversation
One sec, fixing e2e test failure |
Actually, I'm getting that failure |
@bwiklund your change has broken the e2e tests here: https://github.com/angular/angular.js/blob/master/src/ng/directive/input.js#L800 |
Fixed |
@@ -578,15 +559,9 @@ function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { | |||
} | |||
|
|||
if (attr.max) { | |||
var max = parseFloat(attr.max); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can't move this out of the validator fn because we need to reparse the value on each validation
I made a few small changes and fix the parsing bug. I'm testing it on CI and will merge it in if green |
Sounds good. I noticed that there's no unit test to pick up that minlength bug that only showed up at the end of |
@bwiklund yes please! that would be awesome. I'm surprised that we didn't have a test for it. |
thanks for this pr |
👍 |
I feel this makes the code more readable, but I suppose that's debatable. It cuts 476b off
.min
and 72b off.min.gz
Also included:
I moved
var min = parseFloat(attr.min);
andvar max = parseFloat(attr.max);
out of their validation function, since they only need to be evaluated once.I renamed the regex helper function form
validate
tovalidateRegex
and moved it inside the if block that uses it.If you'd like these split up into separate PR's I can do that.