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

refactor(input): wrapped validation logic in helper function #5643

Closed
wants to merge 1 commit into from

Conversation

bwiklund
Copy link
Contributor

@bwiklund bwiklund commented Jan 6, 2014

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); and var 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 to validateRegex 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.

@bwiklund
Copy link
Contributor Author

bwiklund commented Jan 6, 2014

One sec, fixing e2e test failure

@bwiklund
Copy link
Contributor Author

bwiklund commented Jan 6, 2014

Actually, I'm getting that failure angular+jqlite api/ng.directive:input should be invalid if less than required min length on master branch as well. Any idea what's up?

@gsklee
Copy link
Contributor

gsklee commented Jan 6, 2014

@bwiklund
Copy link
Contributor Author

bwiklund commented Jan 7, 2014

Fixed

@ghost ghost assigned IgorMinar Jan 7, 2014
@@ -578,15 +559,9 @@ function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) {
}

if (attr.max) {
var max = parseFloat(attr.max);
Copy link
Contributor

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

@IgorMinar
Copy link
Contributor

I made a few small changes and fix the parsing bug. I'm testing it on CI and will merge it in if green

IgorMinar pushed a commit to IgorMinar/angular.js that referenced this pull request Jan 7, 2014
@bwiklund
Copy link
Contributor Author

bwiklund commented Jan 7, 2014

Sounds good. I noticed that there's no unit test to pick up that minlength bug that only showed up at the end of test:e2e. Worth my time to make a PR for that?

@IgorMinar
Copy link
Contributor

@bwiklund yes please! that would be awesome. I'm surprised that we didn't have a test for it.

@IgorMinar IgorMinar closed this in cdc4d48 Jan 7, 2014
@IgorMinar
Copy link
Contributor

thanks for this pr

@bwiklund
Copy link
Contributor Author

bwiklund commented Jan 7, 2014

👍

jamesdaily pushed a commit to jamesdaily/angular.js that referenced this pull request Jan 27, 2014
jamesdaily pushed a commit to jamesdaily/angular.js that referenced this pull request Jan 27, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants