@knawat/advanced-client-module
Advanced tools
@@ -13,3 +13,2 @@ "use strict"; | ||
const microservices_1 = require("@nestjs/microservices"); | ||
const advanced_client_service_1 = require("./advanced-client.service"); | ||
const constants_1 = require("./constants"); | ||
@@ -50,3 +49,2 @@ let AdvancedClientModule = AdvancedClientModule_1 = class AdvancedClientModule { | ||
}, | ||
advanced_client_service_1.AdvancedClientDecoratorProcessorService, | ||
], | ||
@@ -53,0 +51,0 @@ exports: [constants_1.SERVICE_CLIENT], |
import { AdvancedClientModule } from "./advanced-client/advanced-client.module"; | ||
import { AdvancedClientDecoratorProcessorService } from "./advanced-client/advanced-client.service"; | ||
import { MessagePatternExtended } from "./advanced-client/decorators/message-pattern-extened.decorator"; | ||
import { MessagePatternExtended } from "./advanced-client/decorators/message-pattern-extended.decorator"; | ||
import { EventPatternExtended } from "./advanced-client/decorators/event-pattern-extended"; | ||
import { SERVICE_CLIENT } from "./advanced-client/constants"; | ||
export { AdvancedClientModule, AdvancedClientDecoratorProcessorService, MessagePatternExtended, EventPatternExtended, SERVICE_CLIENT }; | ||
import { SERVICE_CLIENT, EVENT_PATTERN_EXTENDED, MESSAGE_PATTERN_EXTENDED } from "./advanced-client/constants"; | ||
export { AdvancedClientModule, MessagePatternExtended, EventPatternExtended, SERVICE_CLIENT, EVENT_PATTERN_EXTENDED, MESSAGE_PATTERN_EXTENDED }; | ||
//# sourceMappingURL=index.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SERVICE_CLIENT = exports.EventPatternExtended = exports.MessagePatternExtended = exports.AdvancedClientDecoratorProcessorService = exports.AdvancedClientModule = void 0; | ||
exports.MESSAGE_PATTERN_EXTENDED = exports.EVENT_PATTERN_EXTENDED = exports.SERVICE_CLIENT = exports.EventPatternExtended = exports.MessagePatternExtended = exports.AdvancedClientModule = void 0; | ||
const advanced_client_module_1 = require("./advanced-client/advanced-client.module"); | ||
Object.defineProperty(exports, "AdvancedClientModule", { enumerable: true, get: function () { return advanced_client_module_1.AdvancedClientModule; } }); | ||
const advanced_client_service_1 = require("./advanced-client/advanced-client.service"); | ||
Object.defineProperty(exports, "AdvancedClientDecoratorProcessorService", { enumerable: true, get: function () { return advanced_client_service_1.AdvancedClientDecoratorProcessorService; } }); | ||
const message_pattern_extened_decorator_1 = require("./advanced-client/decorators/message-pattern-extened.decorator"); | ||
Object.defineProperty(exports, "MessagePatternExtended", { enumerable: true, get: function () { return message_pattern_extened_decorator_1.MessagePatternExtended; } }); | ||
const message_pattern_extended_decorator_1 = require("./advanced-client/decorators/message-pattern-extended.decorator"); | ||
Object.defineProperty(exports, "MessagePatternExtended", { enumerable: true, get: function () { return message_pattern_extended_decorator_1.MessagePatternExtended; } }); | ||
const event_pattern_extended_1 = require("./advanced-client/decorators/event-pattern-extended"); | ||
@@ -14,2 +12,4 @@ Object.defineProperty(exports, "EventPatternExtended", { enumerable: true, get: function () { return event_pattern_extended_1.EventPatternExtended; } }); | ||
Object.defineProperty(exports, "SERVICE_CLIENT", { enumerable: true, get: function () { return constants_1.SERVICE_CLIENT; } }); | ||
Object.defineProperty(exports, "EVENT_PATTERN_EXTENDED", { enumerable: true, get: function () { return constants_1.EVENT_PATTERN_EXTENDED; } }); | ||
Object.defineProperty(exports, "MESSAGE_PATTERN_EXTENDED", { enumerable: true, get: function () { return constants_1.MESSAGE_PATTERN_EXTENDED; } }); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@knawat/advanced-client-module", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "This is a Client Proxy providing module.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -24,2 +24,50 @@ # Advanced NestJS Client Proxy Module | ||
First you need to create a `service` to process decorators like this: | ||
```typescript | ||
import { Injectable } from '@nestjs/common'; | ||
import { EventPattern, MessagePattern } from '@nestjs/microservices'; | ||
import { | ||
EVENT_PATTERN_EXTENDED, | ||
MESSAGE_PATTERN_EXTENDED, | ||
} from '@knawat/advanced-client-module'; | ||
@Injectable() | ||
export class AdvancedClientDecoratorProcessorService { | ||
processCustomDecorators(namespace: string, types: any[]) { | ||
for (const type of types) { | ||
const propNames = Object.getOwnPropertyNames(type.prototype); | ||
for (const prop of propNames) { | ||
const propValue = Reflect.getMetadata( | ||
MESSAGE_PATTERN_EXTENDED, | ||
Reflect.get(type.prototype, prop), | ||
); | ||
if (propValue) { | ||
propValue.cmd = `${namespace}-${propValue.cmd}`; | ||
propValue.role = `${namespace}-${propValue.role}`; | ||
Reflect.decorate( | ||
[MessagePattern(propValue)], | ||
type.prototype, | ||
prop, | ||
Reflect.getOwnPropertyDescriptor(type.prototype, prop), | ||
); | ||
} | ||
let eventValue = Reflect.getMetadata( | ||
EVENT_PATTERN_EXTENDED, | ||
Reflect.get(type.prototype, prop), | ||
); | ||
if (eventValue) { | ||
eventValue = `${namespace}-${eventValue}`; | ||
Reflect.decorate( | ||
[EventPattern(eventValue)], | ||
type.prototype, | ||
prop, | ||
Reflect.getOwnPropertyDescriptor(type.prototype, prop), | ||
); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
Now add the processor to the `main.ts` as below: | ||
@@ -26,0 +74,0 @@ |
@@ -1,17 +0,4 @@ | ||
import { | ||
ConfigurableModuleAsyncOptions, | ||
DynamicModule, | ||
Module, | ||
Provider, | ||
Type, | ||
} from "@nestjs/common"; | ||
import { DynamicModule, Module } from "@nestjs/common"; | ||
import { ClientProxyFactory, Transport } from "@nestjs/microservices"; | ||
import { setFlagsFromString } from "v8"; | ||
import { | ||
AdvancedClientModuleAsyncOptions, | ||
AdvancedClientModuleFactory, | ||
AdvancedClientModuleOptions, | ||
} from "./advanced-client-module-options.interface"; | ||
import { ConfigurableModuleClass } from "./advanced-client.module-definition"; | ||
import { AdvancedClientDecoratorProcessorService } from "./advanced-client.service"; | ||
import { AdvancedClientModuleOptions } from "./advanced-client-module-options.interface"; | ||
import { SERVICE_CLIENT } from "./constants"; | ||
@@ -56,3 +43,2 @@ | ||
}, | ||
AdvancedClientDecoratorProcessorService, | ||
], | ||
@@ -59,0 +45,0 @@ exports: [SERVICE_CLIENT], |
import { AdvancedClientModule } from "./advanced-client/advanced-client.module"; | ||
import { AdvancedClientDecoratorProcessorService } from "./advanced-client/advanced-client.service"; | ||
import { MessagePatternExtended } from "./advanced-client/decorators/message-pattern-extened.decorator"; | ||
import { MessagePatternExtended } from "./advanced-client/decorators/message-pattern-extended.decorator"; | ||
import { EventPatternExtended } from "./advanced-client/decorators/event-pattern-extended"; | ||
import { SERVICE_CLIENT } from "./advanced-client/constants"; | ||
import { SERVICE_CLIENT, EVENT_PATTERN_EXTENDED, MESSAGE_PATTERN_EXTENDED } from "./advanced-client/constants"; | ||
export { AdvancedClientModule, AdvancedClientDecoratorProcessorService, MessagePatternExtended, EventPatternExtended, SERVICE_CLIENT }; | ||
export { AdvancedClientModule, MessagePatternExtended, EventPatternExtended, SERVICE_CLIENT, EVENT_PATTERN_EXTENDED, MESSAGE_PATTERN_EXTENDED }; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
86
126.32%30048
-13.18%47
-9.62%261
-26.89%