-
-
Save misostack/160418721dd799e7ae15c6271d575ce9 to your computer and use it in GitHub Desktop.
NestJS Filters with Swagger deepObject (example: `?filters[name]=thing1&filters[description]=thing2`)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { applyDecorators } from '@nestjs/common'; | |
import { ApiExtraModels, ApiQuery, getSchemaPath } from '@nestjs/swagger'; | |
/** | |
* Combines Swagger Decorators to create a description for `filters[name]=something` | |
* - has support for swagger | |
* - automatic transformation with nestjs | |
*/ | |
// eslint-disable-next-line @typescript-eslint/ban-types,@typescript-eslint/explicit-module-boundary-types | |
export function ApiFilterQuery(fieldName: string, filterDto: Function) { | |
return applyDecorators( | |
ApiExtraModels(filterDto), | |
ApiQuery({ | |
required: false, | |
name: fieldName, | |
style: 'deepObject', | |
explode: true, | |
type: 'object', | |
schema: { | |
$ref: getSchemaPath(filterDto), | |
}, | |
}), | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Controller, Get, Query } from '@nestjs/common'; | |
import { ApiOperation } from '@nestjs/swagger'; | |
import { ApiFilterQuery } from './api-filter-query'; | |
import { ApiPropertyOptional } from '@nestjs/swagger'; | |
import { IsOptional, IsString } from 'class-validator'; | |
class ThingFiltersDto { | |
@ApiPropertyOptional({ description: 'Thing Name', example: 'Ficus' }) | |
@IsString() | |
@IsOptional() | |
readonly name?: string; | |
@ApiPropertyOptional({ description: 'Thing Description', example: 'Large' }) | |
@IsString() | |
@IsOptional() | |
readonly description?: string; | |
} | |
@Controller() | |
export class FlowerController { | |
@Get('things') | |
@ApiOperation({ summary: ' List/Filter' }) | |
@ApiFilterQuery('filters', ThingFiltersDto) | |
async list(@Query('filters') filters: ThingFiltersDto): Promise<void> { | |
console.log({ filters }); | |
// from: filters[name]=thing1&filters[description]=thing2 | |
// to: { name: "thing1", description: "thing2" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment