-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathObserver.ts
85 lines (73 loc) · 1.96 KB
/
Observer.ts
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
interface Observer {
uniqueID: string;
update(): void;
}
class ConcreteObserver implements Observer {
public uniqueID: string
constructor(uniqueID: string) {
this.uniqueID = uniqueID;
}
update(): void {
console.log(`${this.uniqueID} updates something...`);
}
}
function findObserver(obs: Observer[], uniqueID: string) {
let index = 0;
const existed = obs.some((observer, idx) => {
index = idx;
return observer.uniqueID === uniqueID;
});
return {
existed,
index
};
}
class Subject {
private _observers: Observer[];
constructor() {
this._observers = [];
}
registerObserver(ob: Observer) {
const id: string = ob.uniqueID;
if (findObserver(this._observers, id).existed) {
return console.log(`Observer ${id} is already in list`);
}
this._observers.push(ob);
console.log(`Observer ${ob.uniqueID} is pushed into list`);
console.log(this._observers);
}
removeObserver(uniqueID: string) {
const { existed, index } = findObserver(this._observers, uniqueID);
if (existed) {
this._observers.splice(index, 1);
console.log(`Observer ${uniqueID} is removed from list`);
} else {
console.log('Observer not existed');
}
}
notifyObservers() {
console.log('Subject notify all observers >>');
this._observers.map((observer) => {
observer.update();
});
}
}
// USAGE:
const subject = new Subject();
const obA = new ConcreteObserver('A');
const obB = new ConcreteObserver('B');
const obC = new ConcreteObserver('C');
subject.registerObserver(obA);
subject.registerObserver(obA); // already existed
subject.registerObserver(obB);
subject.registerObserver(obC);
subject.notifyObservers();
// OUTPUT:
// "Observer A is pushed into list"
// "Observer A is already in list"
// "Observer B is pushed into list"
// "Observer C is pushed into list"
// "Subject notify all observers >>"
// "A updates something..."
// "B updates something..."
// "C updates something..."