@buka/nestjs-type-helper
Version:
An easy to use nestjs config module
48 lines (47 loc) • 1.99 kB
JavaScript
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { ApiProperty } from '@nestjs/swagger';
import { Type as ClassType } from 'class-transformer';
import { ValidateNested } from 'class-validator';
import { Pagination } from './pagination.js';
export function PageType(classRef) {
class TypeClassPage {
items;
pagination;
static from(items, total, pageQuery) {
return {
items: items.map((item) => {
if (item && typeof item['toObject'] === 'function')
return item['toObject']();
return item;
}),
pagination: Pagination.from(total, pageQuery),
};
}
}
__decorate([
ApiProperty({
type: () => classRef,
isArray: true,
}),
ClassType(() => classRef),
ValidateNested({ each: true }),
__metadata("design:type", Array)
], TypeClassPage.prototype, "items", void 0);
__decorate([
ApiProperty({
type: () => Pagination,
}),
ClassType(() => Pagination),
ValidateNested(),
__metadata("design:type", Pagination)
], TypeClassPage.prototype, "pagination", void 0);
return TypeClassPage;
}