@malagu/typeorm
Version:
56 lines • 2.44 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);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.TypeOrmApplicationLifecycle = void 0;
const core_1 = require("@malagu/core");
const typeorm_1 = require("typeorm");
const constants_1 = require("./constants");
const entity_provider_1 = require("./entity-provider");
let TypeOrmApplicationLifecycle = class TypeOrmApplicationLifecycle {
async onStart(app) {
const connections = typeorm_1.getConnectionManager().connections;
for (const c of connections) {
if (c.isConnected) {
await c.close();
}
}
const { ormConfig } = this.options;
let configs;
if (Array.isArray(ormConfig)) {
configs = ormConfig;
}
else {
ormConfig.name = constants_1.DEFAULT_CONNECTION_NAME;
configs = [ormConfig];
}
for (const config of configs) {
config.entities = entity_provider_1.EntityProvider.getEntities(config.name) || [];
}
await typeorm_1.createConnections(configs);
}
onStop(app) {
const connections = typeorm_1.getConnectionManager().connections;
for (const c of connections) {
if (c.isConnected) {
c.close();
}
}
}
};
__decorate([
core_1.Value('malagu.typeorm'),
__metadata("design:type", Object)
], TypeOrmApplicationLifecycle.prototype, "options", void 0);
TypeOrmApplicationLifecycle = __decorate([
core_1.Component(core_1.ApplicationLifecycle)
], TypeOrmApplicationLifecycle);
exports.TypeOrmApplicationLifecycle = TypeOrmApplicationLifecycle;
//# sourceMappingURL=application-lifecycle.js.map