nest-shrimpy
Version:
Shrimpy wrapper for NestJS
83 lines (82 loc) • 3.64 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 __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var NestShrimpyModule_1;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NestShrimpyModule = void 0;
const common_1 = require("@nestjs/common");
const nest_shrimpy_service_1 = require("./nest-shrimpy.service");
const constants_1 = require("./constants");
const nest_shrimpy_providers_1 = require("./nest-shrimpy.providers");
let NestShrimpyModule = NestShrimpyModule_1 = class NestShrimpyModule {
/**
* Registers a configured NestShrimpy Module for import into the current module
*/
static register(options) {
return {
module: NestShrimpyModule_1,
providers: nest_shrimpy_providers_1.createNestShrimpyProviders(options),
};
}
/**
* Registers a configured NestShrimpy Module for import into the current module
* using dynamic options (factory, etc)
*/
static registerAsync(options) {
return {
module: NestShrimpyModule_1,
imports: options.imports,
providers: [
...this.createProviders(options),
],
};
}
static createProviders(options) {
if (options.useExisting || options.useFactory) {
return [this.createOptionsProvider(options)];
}
return [
this.createOptionsProvider(options),
{
provide: options.useClass,
useClass: options.useClass,
},
];
}
static createOptionsProvider(options) {
if (options.useFactory) {
return {
provide: constants_1.NEST_SHRIMPY_OPTIONS,
useFactory: options.useFactory,
inject: options.inject || [],
};
}
// For useExisting...
return {
provide: constants_1.NEST_SHRIMPY_OPTIONS,
useFactory: (optionsFactory) => __awaiter(this, void 0, void 0, function* () { return yield optionsFactory.createNestShrimpyOptions(); }),
inject: [options.useExisting || options.useClass],
};
}
};
NestShrimpyModule = NestShrimpyModule_1 = __decorate([
common_1.Global(),
common_1.Module({
providers: [nest_shrimpy_service_1.NestShrimpyService],
exports: [nest_shrimpy_service_1.NestShrimpyService],
})
], NestShrimpyModule);
exports.NestShrimpyModule = NestShrimpyModule;