UNPKG

@webilix/nestjs-helper

Version:

Helper library for NestJS

44 lines 2.25 kB
"use strict"; 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); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.OrderPipe = void 0; const common_1 = require("@nestjs/common"); const helper_library_1 = require("@webilix/helper-library"); const errors_1 = require("../errors"); const typeList = ['ASC', 'DESC']; let OrderPipe = class OrderPipe { constructor(keys, options) { this.keys = keys; this.options = options; } transform(value) { var _a, _b; if (((_a = this.options) === null || _a === void 0 ? void 0 : _a.optional) && helper_library_1.Helper.IS.empty(value)) return null; const title = ((_b = this.options) === null || _b === void 0 ? void 0 : _b.title) || 'ترتیب نمایش'; if (helper_library_1.Helper.IS.empty(value)) errors_1.Errors.throw(errors_1.Errors.undefined(title)); if (!helper_library_1.Helper.IS.string(value)) errors_1.Errors.throw(errors_1.Errors.invalid(title)); const index = value.lastIndexOf(':'); const key = value.substring(0, index); const type = value.substring(index + 1); if (!this.keys.includes(key) || !typeList.includes(type)) errors_1.Errors.throw(errors_1.Errors.invalid(title)); return { key, type }; } }; exports.OrderPipe = OrderPipe; exports.OrderPipe = OrderPipe = __decorate([ (0, common_1.Injectable)(), __metadata("design:paramtypes", [Array, Object]) ], OrderPipe); //# sourceMappingURL=order.pipe.js.map