Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to perform Joi Validations for a TypeScript Class?

I'm able to perform Joi Validations for function expressions in node as shown below

export var shippingInfo = Joi.object().keys({
   expectedDeliveryDate:Joi.date().required(),
   isRegisteredCompanyAddress:Joi.number().required(),
   addressLine:Joi.string(),
   country:Joi.string(),
   state:Joi.string(),
   city:Joi.string(),
   zipcode:Joi.string()
});

But the problem is, I recently started working on typescript. So here, I've few classes and I'm supposed to perform the Joi validations as I did in the above function expressions. i.e I want to validate for the below class

export class ShippingInfo {
   expectedDeliveryDate: Date,
   isRegisteredCompanyAddress: number,
   addressLine:string,
   country:string,
   state:string,
   city:string,
   zipcode:string
}

How should I make validations for the above class. Should do validations for class level or it's object level? how?

like image 635
Kishore Kumar Korada Avatar asked Oct 18 '22 09:10

Kishore Kumar Korada


1 Answers

you can use this project as a reference. tsdv-joi

// ...imports...

registerJoi(Joi);

class MyClass {
    @Max(5)
    @Min(2)
    @StringSchema
    public myProperty : string;
}

let instance = new MyClass();
instance.myProperty = "a";

const validator = new Validator();
var result = validator.validate(instance);
console.log(result); // outputs the Joi returned value

If you need npm package then you can use this wrapper for it gearworks

like image 167
MehulJoshi Avatar answered Oct 21 '22 02:10

MehulJoshi