This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathEventSource.ts
67 lines (57 loc) · 2.05 KB
/
EventSource.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
import { ObjectDisposedError } from "./Error";
import { CreateNoDashGuid } from "./Guid";
import { IDetachable } from "./IDetachable";
import { IStringDictionary } from "./IDictionary";
import { IEventListener, IEventSource } from "./IEventSource";
import { PlatformEvent } from "./PlatformEvent";
export class EventSource<TEvent extends PlatformEvent> implements IEventSource<TEvent> {
private eventListeners: IStringDictionary<(event: TEvent) => void> = {};
private metadata: IStringDictionary<string>;
private isDisposed: boolean = false;
constructor(metadata?: IStringDictionary<string>) {
this.metadata = metadata;
}
public OnEvent = (event: TEvent): void => {
if (this.IsDisposed()) {
throw (new ObjectDisposedError("EventSource"));
}
if (this.Metadata) {
for (const paramName in this.Metadata) {
if (paramName) {
if (event.Metadata) {
if (!event.Metadata[paramName]) {
event.Metadata[paramName] = this.Metadata[paramName];
}
}
}
}
}
for (const eventId in this.eventListeners) {
if (eventId && this.eventListeners[eventId]) {
this.eventListeners[eventId](event);
}
}
}
public Attach = (onEventCallback: (event: TEvent) => void): IDetachable => {
const id = CreateNoDashGuid();
this.eventListeners[id] = onEventCallback;
return {
Detach: () => {
delete this.eventListeners[id];
},
};
}
public AttachListener = (listener: IEventListener<TEvent>): IDetachable => {
return this.Attach(listener.OnEvent);
}
public IsDisposed = (): boolean => {
return this.isDisposed;
}
public Dispose = (): void => {
this.eventListeners = null;
this.isDisposed = true;
}
public get Metadata(): IStringDictionary<string> {
return this.metadata;
}
}