npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@wouterflorijn/vue-dotnet-validator

v0.5.11

Published

A vuejs validator for .NET forms.

Downloads

10

Readme

Vue dotnet validator

A vuejs validator for .NET forms.

Build status

CircleCI

Summary

This package makes it possible to use .NET model validation using vue.js instead of the default jQuery validator way that microsoft dictates. The idea is that you use this on your server rendered HTML forms which include the data-attributes that are generated by C#'s razor template engine.

Requirements

This package (from version 0.3.0 and up) requires vue 2.x.

Installation

npm install vue-dotnet-validator

Usage

Using this library requires changes on two places in your application, JavaScript and your razor cshtml templates.

JavaScript

This registers the vue components so that vue.js knows what to activate. Base usage:

import dotnetValidator from './dotnet-validator/dotnet-validator';
Vue.component('validator-group', dotnetValidator.validatorGroup);
Vue.component('validator', dotnetValidator.validator());

Cshtml

The following code should be added to your cshtml forms. This makes sure that the validator logic is activated and adds the required references to DOM-nodes.

<validator-group inline-template>
    <form asp-controller="Account" asp-action="Register" method="post" v-on:submit="validate">
        <validator value="@Model.LastName" inline-template>
           <span asp-validation-for="LastName" ref="message"></span>
           <input type="text" asp-for="LastName" ref="field" v-model="val" />
        </validator>
        <button type="submit">Register</button>
    </form>
</validator-group>

Explanation of the cshtml changes:

<validator-group inline-template>

This behaves as a container for the entire form, so we can maintain the state of the entire form and the validation status of the input fields in it.

v-on:submit="validate"

This adds an event listener to the <form> tag to make sure we prevent the default form submit event when fields are invalid.

<validator value="@Model.LastName" inline-template>

This adds a validator instance to the form. The @Model.LastName is the property of your model.

ref="message"

This adds a reference to the validation-message element. This makes sure the validation message is displayed at the correct position in the DOM.

ref="field"

This adds a reference to the input field, so the <validator> instance knows what element to watch.

v-model="val"

This adds the model binding in the <validator> instance.

Creating custom validators

It is possible to create your own validators, below is an example of a very simple custom validator.

JavaScript


class MyCustomValidator extends vueDotnetValidator.BaseValidator {
    isValid(value) {
        return !value || value == 'Hello';
    }
}
let validators = {
  Mycustomvalidator: MyCustomValidator
};

Vue.component('validator', dotnetValidator.validator(validators));

Cshtml

To use this custom validator in your own form, make sure your custom .NET data annotation outputs a data-val-mycustom="MESSAGE" attribute on your <input> DOM node.

Custom validators with additional parameters

You can extend the features of your custom validators using additional data-attributes on your <input> tag. This is a feature supported in .NET. For an example on the usage of this feature, see regexvalidator.js.