-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObserver.js
45 lines (35 loc) · 988 Bytes
/
Observer.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
// Observer is a behavioral design pattern.
// Наблюдатель - поведенческий шаблон проектирования.
class SportNews {
constructor() {
this.news = '';
this.actions = [];
}
setNews(news) {
this.news = news;
this.notifyAll();
}
notifyAll() {
return this.actions.forEach(subscriber => subscriber.inform(this.news));
}
register(observer) {
this.actions.push(observer);
}
unregister(observer) {
this.actions = this.actions.filter(it => !(it instanceof observer));
}
}
class Max {
inform(news) {
console.log(`Макс получил новость: ${news}`);
}
}
class Sergey {
inform(news) {
console.log(`Сергей получил новость: ${news}`);
}
}
const sportNews = new SportNews();
sportNews.register(new Max());
sportNews.register(new Sergey());
sportNews.setNews('Liverpool выиграл Лигу Чемпионов по футболу в 2019 году!');