ember-changeset-validations
ember-changeset-validations copied to clipboard
Feature request - sequential validations
Using #220 as inspiration, I'm frequently using this custom validator in my code:
export default function validateChain(validators) {
return async (key, value, oldValue, changes, content) => {
let result;
let index = 0;
do {
let validator = validators[index++];
result = await validator(key, value, oldValue, changes, content);
} while (true === result && index < validators.length);
return result;
};
}
My use case is exactly the same as the linked issue - I have expensive async custom validators that there's no point calling if other validators fail. Example use case:
import {
validatePresence,
validateFormat
} from 'ember-changeset-validations/validators';
import validateChain from '../validators/chain';
import validateUniqueEmail from '../validators/unique-email';
export default {
email: validateChain([
validatePresence(true),
validateFormat({ type: 'email' }),
validateUniqueEmail(),
]),
};
I think this sequential validator is really useful as this use case is common. So my question is - would you accept a PR adding it to this package?
If yes, then two questions:
- What would you like the validator to be called?
- How should I be checking for object validators? Just checking for the existence of a validate function?
I have exactly the same issue - +1 for me
Are your expensive validators server-side? If so how are you dealing with authentication without access to services?
Maybe a better fix would be a default feature to run all sync validators first and only run async validators if the sync ones all pass?
@BryanCrotaz I'm using fetch for the async validators, and have utility functions to configure the fetch to work with the server. Luckily it works without a service: it would be better implemented if I could use a service.
@lindyhopchris That would be a great addition to this library. Perhaps exported from validators/index.
@snewcomer great, I'll put together a PR. Hopefully I should have some open source time this coming week to sort it out.
@lindyhopchris Lmk if this is something you still want to take on! Happy to do it if you are busy.
@snewcomer I am still happy to do it, but not sure quite when I can get to it. Possibly this week.