-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathevent-router.ts
38 lines (33 loc) · 1.02 KB
/
event-router.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
/**
* Author: Jesper Sporron
* Author GitHub: https://github.com/Charanor
* Project GitHub: https://github.com/Charanor/react-native-code-snippets
* License: Creative Commons Zero v1.0 Universal (CC0)
*
* Description:
* This is a module that allows you to define event routers in a natural way.
*
* Please keep this comment at the top of the file to show support (even though you are free to remove it) :)
*/
type EventListener<T> = (data?: T) => void;
type EventSubscription = { remove: () => void };
class EventRouter<T> {
private listeners: EventListener<T>[] = [];
subscribe(listener: EventListener<T>): EventSubscription {
this.listeners.push(listener);
return {
remove: () => {
const idx = this.listeners.indexOf(listener);
this.listeners.splice(idx, 1);
}
};
}
public trigger(data?: T) {
this.listeners.forEach(l => l(data));
}
}
export default EventRouter;
export {
EventListener,
EventSubscription
};