Giter Site home page Giter Site logo

Comments (2)

ppetzold avatar ppetzold commented on June 12, 2024

Great point - might just build 2 packages from this repo. You are welcome to restructure the code 2 support both versions. I will take care of the release process.

from nestjs-paginate.

Helveg avatar Helveg commented on June 12, 2024

Even in NestJS I've run into a use case for this. It requires a pretty nasty workaround at the moment to apply the inner function of the Paginate decorator:

// To assemble the PaginateQuery, we fish out `nestjs-paginate`'s paginate query
// factory from the NestJS parameter decorator

// First, we decorate our dec dummy with the Paginate decorator
const dec = class {};
Paginate()(dec, 'fishy fishy', 0);
// And we declare the types of what we're going to fish out
return Object.values<{
  factory: (_data: unknown, ctx: ExecutionContext) => PaginateQuery;
}>(
  // Then we fish out the route args metadata factory for what we just decorated.
  Reflect.getMetadata(
    ROUTE_ARGS_METADATA,
    dec.constructor,
    'fishy fishy',
  ),
  // Then we use the fished out factory to produce the PaginateQuery from the
  // spoofed request context
)[0].factory(null, reqCtx);

It'd be nicer if we split out a getPaginateQuery(req) function.

PS: I must have amnesia, I had appearantly already opened an issue here: #825

from nestjs-paginate.

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.