Giter Site home page Giter Site logo

Comments (4)

Frizi avatar Frizi commented on May 22, 2024

Hi!
I'd like to limit the number of those special values for a few reasons. First, to keep things simple for beginners, second to keep it readable. But I definitely can see the benefit you present here.

If your use case is local to a specific component, you can just create an method, like

isSuccess(v) {
   return !v.$invalid && v.$dirty
}

So you can then use it in similar way to what you proposed.

<input v-model="value :class="{ success: isSuccess($v.value), $v.error: value.$error }" />

For anything more global, this could be imported per module or adapted as a mixin.

You could also try your luck by adding validators to validate other validators. It should work (that's the princible behind validation groups), but I wouldn't recommend that because of lack of clarity and better existing options.

Alternatively, a possible extension point could be added to Vuelidate to allow adding custom computed values into the validation. You have to keep in mind though that inner vm instance is not exactly the same as exposed object. There is one more proxy object in play and it is actually necessary to avoid name collisions or for async validators to work. I wouldn't like to expose internals to public API.

from vuelidate.

johnnynotsolucky avatar johnnynotsolucky commented on May 22, 2024

Thanks for the feedback!

It never crossed my mind to use a mixin, that should work perfectly.

I think the last point might be overkill; exposing internals to the public API might make it harder to make non-breaking changes to Vuelidate in the future, and like you said, the API currently is simple and logical.

from vuelidate.

cypherix93 avatar cypherix93 commented on May 22, 2024

Please reconsider this request, as it will be very beneficial when using Vuelidate with libraries such as Bootstrap, that has distinct validation states for form inputs. Having a $success shortcut would be immensely useful.

from vuelidate.

jpickwell avatar jpickwell commented on May 22, 2024

Why not use !$v.value.$error?

from vuelidate.

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.