-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubscriptionSet.ts
48 lines (41 loc) · 1.1 KB
/
SubscriptionSet.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
import { CommandNameFlags } from "./Command";
type AddSet = CommandNameFlags["ENTER_SUBSCRIBER_MODE"][number];
type DelSet = CommandNameFlags["EXIT_SUBSCRIBER_MODE"][number];
/**
* Tiny class to simplify dealing with subscription set
*/
export default class SubscriptionSet {
private set: { [key: string]: { [channel: string]: boolean } } = {
subscribe: {},
psubscribe: {},
ssubscribe: {},
};
add(set: AddSet, channel: string) {
this.set[mapSet(set)][channel] = true;
}
del(set: DelSet, channel: string) {
delete this.set[mapSet(set)][channel];
}
channels(set: AddSet | DelSet): string[] {
return Object.keys(this.set[mapSet(set)]);
}
isEmpty(): boolean {
return (
this.channels("subscribe").length === 0 &&
this.channels("psubscribe").length === 0 &&
this.channels("ssubscribe").length === 0
);
}
}
function mapSet(set: AddSet | DelSet): AddSet {
if (set === "unsubscribe") {
return "subscribe";
}
if (set === "punsubscribe") {
return "psubscribe";
}
if (set === "sunsubscribe") {
return "ssubscribe";
}
return set;
}