GithubHelp home page GithubHelp logo

Comments (3)

offirgolan avatar offirgolan commented on May 22, 2024

I believe we have two options here. The first is to expand the dependent validator which currently adds a dependent key on dependent.isTruelyValid by also adding dependent to the list.

var Validations = buildValidations({
   x: [ validator('x-custom'), validator('dependent', { on: ['foo', 'bar.x']}) ]
});

The second, is to expose a public api to add custom dependent keys.

var Validations = buildValidations({
   x: validator('x-custom', { dependentKeys: ['foo', 'bar.x'] })
});

@blimmer @stefanpenner thoughts?

from ember-cp-validations.

mitchlloyd avatar mitchlloyd commented on May 22, 2024

@offirgolan One thing to keep in mind is that a validator may be dependent on another validator or a property on the model. For instance, the dependent validator uses on to specify a path to another validator and the confirmation validator uses on to specify a path to a _model attribute.

One use case I'm thinking of is "make sure this model has least one hasMany model with this property". The workaround today could be to create a computed property on the model:

hasAtLeastOneFeaturedPost: computed('[email protected]', function() {
  return _.some(this.get('posts'), (p) => p.get('isFeatured'));
}

And then validate that that is true, but it would be nice to be able to express that with just a validator.

var Validations = buildValidations({
  featuredPost: validator('has-some', { collection: 'posts', attribute: 'isFeatured' })
});

from ember-cp-validations.

offirgolan avatar offirgolan commented on May 22, 2024

Im not sure I follow...

Wouldn't you be able to achieve the same functionality by doing something like this

var Validations = buildValidations({
  featuredPost: validator(function(value, options, model) {
     return _.some(model.get('posts'), (p) => p.get('isFeatured'));
  }, { dependentKeys: ['[email protected]'] })
});

from ember-cp-validations.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.