Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { NotificationService } from '../../core/services/notification.service';
import { NotificationRuleService } from '../../core/services/notification-rule.service';
export declare class TodoSubscriber {
private readonly notificationService;
private readonly notificationRuleService;
constructor(notificationService: NotificationService, notificationRuleService: NotificationRuleService);
handleTodoCreated(payload: any): Promise<void>;
handleTodoCompleted(payload: any): Promise<void>;
}
//# sourceMappingURL=todo.subscriber.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"todo.subscriber.d.ts","sourceRoot":"","sources":["../../../src/todo/subscribers/todo.subscriber.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAC/E,OAAO,EAAE,uBAAuB,EAAE,MAAM,+CAA+C,CAAC;AAExF,qBACa,cAAc;IAEvB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,uBAAuB;gBADvB,mBAAmB,EAAE,mBAAmB,EACxC,uBAAuB,EAAE,uBAAuB;IAI7D,iBAAiB,CAAC,OAAO,EAAE,GAAG;IAgB9B,mBAAmB,CAAC,OAAO,EAAE,GAAG;CAcvC"}

View File

@@ -0,0 +1,58 @@
"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.TodoSubscriber = void 0;
const event_emitter_1 = require("@nestjs/event-emitter");
const common_1 = require("@nestjs/common");
const notification_service_1 = require("../../core/services/notification.service");
const notification_rule_service_1 = require("../../core/services/notification-rule.service");
let TodoSubscriber = class TodoSubscriber {
constructor(notificationService, notificationRuleService) {
this.notificationService = notificationService;
this.notificationRuleService = notificationRuleService;
}
async handleTodoCreated(payload) {
const { todo } = payload;
const rules = await this.notificationRuleService.getRulesForEvent(todo.tenantId, 'todo', 'todo.created');
for (const rule of rules) {
for (const channel of rule.channels) {
await this.notificationService.send(channel, todo.metadata?.notifyTo || '', 'Nueva tarea creada', `Se creó la tarea: ${todo.title}`);
}
}
}
async handleTodoCompleted(payload) {
const { todo } = payload;
const rules = await this.notificationRuleService.getRulesForEvent(todo.tenantId, 'todo', 'todo.completed');
for (const rule of rules) {
for (const channel of rule.channels) {
await this.notificationService.send(channel, todo.metadata?.notifyTo || '', 'Tarea completada', `La tarea "${todo.title}" se ha marcado como completada.`);
}
}
}
};
exports.TodoSubscriber = TodoSubscriber;
__decorate([
(0, event_emitter_1.OnEvent)('todo.created'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", Promise)
], TodoSubscriber.prototype, "handleTodoCreated", null);
__decorate([
(0, event_emitter_1.OnEvent)('todo.completed'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", Promise)
], TodoSubscriber.prototype, "handleTodoCompleted", null);
exports.TodoSubscriber = TodoSubscriber = __decorate([
(0, common_1.Injectable)(),
__metadata("design:paramtypes", [notification_service_1.NotificationService,
notification_rule_service_1.NotificationRuleService])
], TodoSubscriber);