Skip to content

Instantly share code, notes, and snippets.

@tiennguyendang
Created September 7, 2023 09:14
Show Gist options
  • Save tiennguyendang/ef3a89e5fc8ba9c33d841647d5db2dbe to your computer and use it in GitHub Desktop.
Save tiennguyendang/ef3a89e5fc8ba9c33d841647d5db2dbe to your computer and use it in GitHub Desktop.
A example about how to create paginated DTO class with NestJS Swagger
import { Controller, Get } from "@nestjs/common";
import {
ApiOkResponse,
ApiOperation,
ApiProperty,
ApiTags,
} from "@nestjs/swagger";
class PaginationMeta {
/**
* the amount of items on this specific page
*/
@ApiProperty({ description: "Total items in current page" })
itemCount: number;
/**
* the total amount of items
*/
@ApiProperty({ description: "Total items in all pages" })
totalItems: number;
/**
* the amount of items that were requested per page
*/
@ApiProperty({ description: "Limit value" })
itemsPerPage: number;
/**
* the total amount of pages in this paginator
*/
@ApiProperty({ description: "Number of available pages" })
totalPages: number;
/**
* the current page this paginator "points" to
*/
@ApiProperty({ description: "Index of current page" })
currentPage: number;
}
export class PaginatedApiResponse<T> {
data: T[];
@ApiProperty({ type: PaginationMeta })
meta: PaginationMeta;
}
export function SwaggerPaginatedApiResponse<T>(
type: T,
name: string
): typeof PaginatedApiResponse {
class ExtendPaginatedApiResponse<T> extends PaginatedApiResponse<T> {
@ApiProperty({ type: [type] })
public data: T[];
}
Object.defineProperty(ExtendPaginatedApiResponse, "name", {
value: name,
});
return ExtendPaginatedApiResponse;
}
@ApiTags("users")
@Controller("/api/users")
export class UsersController {
@ApiOperation({
summary: "List users",
description: "Note: This action is only designed for admin",
})
@ApiOkResponse({
type: SwaggerPaginatedApiResponse(User, "ListUsersResponse"),
})
@Get()
async list() {}
}
@vahidvdn
Copy link

vahidvdn commented Oct 4, 2024

Nice job! Thanks for sharing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment