@mehulbaid/nest-sendgrid
Version:
Integrates @sendgrid/mail client in a modular way to help send email from NestJs
82 lines (81 loc) • 3.66 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 SendGridCoreModule_1;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SendGridCoreModule = void 0;
const common_1 = require("@nestjs/common");
const providers_1 = require("./providers");
const sendgrid_constants_1 = require("./common/sendgrid.constants");
const sendgrid_util_1 = require("./common/sendgrid.util");
let SendGridCoreModule = SendGridCoreModule_1 = class SendGridCoreModule {
static forRoot(options) {
const provider = providers_1.createSendGridProviders(options);
return {
exports: [provider,],
module: SendGridCoreModule_1,
providers: [provider]
};
}
static forRootAsync(options) {
const provider = {
inject: [sendgrid_constants_1.SENDGRID_MODULE_OPTIONS],
provide: sendgrid_constants_1.SENDGRID_TOKEN,
useFactory: (options) => sendgrid_util_1.createSendGridClient(options),
};
return {
exports: [provider],
imports: options.imports,
module: SendGridCoreModule_1,
providers: [...this.createAsyncProviders(options), provider]
};
}
static createAsyncProviders(options) {
if (options.useExisting || options.useFactory) {
return [this.createAsyncOptionsProvider(options)];
}
const useClass = options.useClass;
return [
this.createAsyncOptionsProvider(options),
{
provide: useClass,
useClass,
},
];
}
static createAsyncOptionsProvider(options) {
if (options.useFactory) {
return {
inject: options.inject || [],
provide: sendgrid_constants_1.SENDGRID_MODULE_OPTIONS,
useFactory: options.useFactory,
};
}
const inject = [
(options.useClass || options.useExisting),
];
return {
provide: sendgrid_constants_1.SENDGRID_MODULE_OPTIONS,
useFactory: (optionsFactory) => __awaiter(this, void 0, void 0, function* () { return yield optionsFactory.createSendGridOptions(); }),
inject,
};
}
};
SendGridCoreModule = SendGridCoreModule_1 = __decorate([
common_1.Global(),
common_1.Module({})
], SendGridCoreModule);
exports.SendGridCoreModule = SendGridCoreModule;