Giter Site home page Giter Site logo

Comments (8)

Romakita avatar Romakita commented on May 18, 2024

First: I hope i don't annoy you with all of my tickets. If that is the case, let me know^^

No. Your issues are clear and highlight some problems and real bug. It help me a lot ;)

ok so if I understand you want to change the useValidation to true by default ? ha no you want option to configure the RawPathParams. Ok, it should be not a problem ;)

from tsed.

Romakita avatar Romakita commented on May 18, 2024

The problem described in the doc required that the validation is disabled, because in this case, the validator will take the PersonModel as schema validation. It's completely wrong, because, the input is an ID.

I realize my example is probably not complete to reflect a real valid usecase. The correct custom decorator implementation should be that:

import {string} from "@tsed/schema";

export function UsePersonParam(expression: string): ParameterDecorator {
  
  return useDecorators(
     RawPathParams({expression, useValidation: true, useType: String}), 
     Schema(string().required().pattern("some pattern")), 
     UsePipe(PersonPipe)
  );
}

But it's not the problem of your issue here ;)

from tsed.

Romakita avatar Romakita commented on May 18, 2024

PR ready #2517

from tsed.

EinfachHans avatar EinfachHans commented on May 18, 2024

Hey @Romakita,

with your explanation i managed to create a decorator by:

return PathParams({
  expression,
  useType: Number
}

i was not 100% aware of the useType - but i think your pr makes sense anyway?

from tsed.

Romakita avatar Romakita commented on May 18, 2024

The useType is here to override the original type set on the parameter. By default Ts.ED use the metadata stored by Typescript to generate the schema validation. But in this case, the type set on parameters is the final result expected by the dev, but the type that should be used as model validation for ajv ;). So it's really important to override it (for ajv and swagger doc).

from tsed.

EinfachHans avatar EinfachHans commented on May 18, 2024

Awesome, useType: Number works like a charm for me here 👍🏼

from tsed.

github-actions avatar github-actions commented on May 18, 2024

🎉 Are you happy?

If you appreciated the support, know that it is free and is carried out on personal time ;)

A support, even a little bit makes a difference for me and continues to bring you answers!

github opencollective

from tsed.

Romakita avatar Romakita commented on May 18, 2024

🎉 This issue has been resolved in version 7.44.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

from tsed.

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.