-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
55 lines (47 loc) · 1.64 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* eslint-disable no-console */
/* eslint-disable class-methods-use-this */
/* eslint-disable max-classes-per-file */
// Definición de la interfaz NotificationService
class NotificationService {
// eslint-disable-next-line no-unused-vars
send(message) {
throw new Error('This method should be overridden!');
}
}
// Implementaciones específicas de NotificationService
class EmailNotification extends NotificationService {
send(message) {
console.log(`Enviando correo electrónico: ${message}`);
}
}
class PushNotification extends NotificationService {
send(message) {
console.log(`Enviando notificación PUSH: ${message}`);
}
}
class SMSNotification extends NotificationService {
send(message) {
console.log(`Enviando SMS: ${message}`);
}
}
// Sistema de notificaciones que depende de la abstracción
class NotificationManager {
constructor(notificationService) {
this.notificationService = notificationService;
}
notify(message) {
this.notificationService.send(message);
}
}
// Crear instancias de los servicios de notificación
const emailService = new EmailNotification();
const pushService = new PushNotification();
const smsService = new SMSNotification();
// Crear instancias de NotificationManager con diferentes servicios
const emailManager = new NotificationManager(emailService);
const pushManager = new NotificationManager(pushService);
const smsManager = new NotificationManager(smsService);
// Usar los managers para enviar notificaciones
emailManager.notify('Tienes un nuevo correo electrónico.');
pushManager.notify('Tienes una nueva notificación PUSH.');
smsManager.notify('Tienes un nuevo SMS.');