-
Notifications
You must be signed in to change notification settings - Fork 354
Support promises in ui-validate to allow remote validation #257
Comments
Can you give a concrete example of how you see this working? On 4 November 2012 21:09, ccollie notifications@github.com wrote:
|
I think he wants a call back to be passed so that validation can be I suppose you could return false until the Ajax completes and then set
|
@petebacondarwin @ProLoser Yeh, I was toying with the idea as well (I think I've even sent a PR or sth on the mailing list, don't remember really...). I guess the use case is validation hitting the server. I think it could be possible to support promises if we accept the fact that we would initially set the field as invalid and then set the real validation result only when a promise is resolved. The real trouble is the sync nature of AngularJS validators... |
Yes, in which case this just might not be in scope which is okay too. I We could just provide some $callback that people could execute to change
|
You can't set the field to invalid as you get a horrible wobble of unwanted What you need to do is just pass (i.e. return the value and don't call But anyway, how is this to be handled by the validate directive? Is it Pete On 4 November 2012 21:30, Dean Sofer notifications@github.com wrote:
|
Ya that sounds good to me. Of course @ccollie could help us too ;) On Sun, Nov 4, 2012 at 1:32 PM, Pete Bacon Darwin
Dean J Sofer BS Computer Information Systems |
@petebacondarwin we don't need to explicitly check for promises, we can simply wrap whatever comes out of a function in Now, the only thing that we need to check if things will work correctly if we don't return any value from a validator function. I thought that this is what AngularJS is using to set model / view value. But sure, we could always set it "by hand". |
It doesn't hurt to have a check or simply undefined, etc, at the very least. On Sun, Nov 4, 2012 at 1:41 PM, Pawel Kozlowski notifications@github.comwrote:
Dean J Sofer BS Computer Information Systems |
Nice one with the $q.when! In a $parser/$formatter have to return the value that is passed in. For example, in ngModelController#$setViewValue you have these lines of
And then later,
Pete On 4 November 2012 21:44, Dean Sofer notifications@github.com wrote:
|
I want to add this functionality. I'm slating it for v0.4.1, anyone is free to open a PR for it if it hasn't been already done by then. |
This feature is unfortunately not covered by the tests in ui-utils. (I was looking for that for for an up to date example of how to use this.) |
I believe that it should work but you are probably right about the missing
|
Thanks. As it turns out, this is broken with angular 1.2.0-rc2 (but works with 1.1.5). The problem is here (validate.js): var expression = scope.$eval(exprssn, { '$value' : valueToValidate }); In my test case, exprssn calls a function in scope which returns a promise. With angular 1.1.5, the $eval returns the promise, but in angular 1.2.0-rc2, the very same code returns undefined instead. Any ideas? |
Ah, in the angular repository, src/ng/parse.js:functionCall(), we have this:
|
Yeah promise based validation seems to be broken, can someone confirm this? |
@exigoenergy wrong repo |
Subject says it all.
The text was updated successfully, but these errors were encountered: