Code Monkey home page Code Monkey logo

Comments (4)

pleerock avatar pleerock commented on May 18, 2024

there is an option called dismissDefaultMessages you can specify into your validate method:

validator.validate(model, { dismissDefaultMessages: true })

from class-validator.

jerradpatch avatar jerradpatch commented on May 18, 2024

gottcha. but what I was looking for was how to specify a default message in a custom validator. for example

export function IsLongerThan(property: string, validationOptions?: ValidationOptions) {
   return function (object: Object, propertyName: string) {
        registerDecorator({
            name: "isLongerThan",
            target: object.constructor,
            propertyName: propertyName,
            options: validationOptions,
            message: "here is the defualt message when 'message is not defined on the annotation itself'"
            validator: {
                validate(value: any, args: ValidationArguments) {
                   const [relatedPropertyName] = args.constraints;
                    const relatedValue = (args.object as any)[relatedPropertyName];
                    return  typeof value === "string" &&
                           typeof relatedValue === "string" &&
                           value.length > relatedValue.length; // you can return a Promise<boolean> here as well, if you want to make async validation
                }
            }
        });
   };
}

The use case would be if I have an annotation for validating 1 < X < 10, I can say in the custom annotation definition "value must be between 1 and 10" instead of having to repeat the text in the annotation decorator.

ie

@IsLongerThan("title", {
       message: "Text must be longer than the title"
    })

from class-validator.

patrickhousley avatar patrickhousley commented on May 18, 2024

@jerradpatch I just ran into this and was able to solve it by using a class validator as described here. Below is an example. If you would like to use just a decorator, then I assume the object you pass to validator just needs the defaultMessage(args: ValidationArguments) method implemented.

import { registerDecorator, ValidatorConstraint, ValidatorConstraintInterface, ValidationOptions, ValidationArguments } from 'class-validator';

@ValidatorConstraint({ name: 'matchesProperty', async: false })
export class MatchesPropertyConstraint implements ValidatorConstraintInterface {

    public validate(value: string, args: ValidationArguments) {
      const [relatedPropertyName] = args.constraints;
      const relatedValue = (args.object as any)[relatedPropertyName];
      return typeof value === typeof relatedValue &&
        value === relatedValue;
    }

    public defaultMessage(args: ValidationArguments) { // Set the default error message here
      const [relatedPropertyName] = args.constraints;
      return `$property must match ${relatedPropertyName} exactly`;
    }

}

export function MatchesProperty(property: string, validationOptions?: ValidationOptions) {
  return (object: Object, propertyName: string) => {
    registerDecorator({
      name: 'matchesProperty',
      target: object.constructor,
      propertyName,
      constraints: [property],
      options: validationOptions,
      validator: MatchesPropertyConstraint
    });
  };
}

from class-validator.

NoNameProvided avatar NoNameProvided commented on May 18, 2024

I am going to close this as @patrickhousley already showed the correct solution.

from class-validator.

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.