-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathutils.ts
91 lines (76 loc) · 1.95 KB
/
utils.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
86
87
88
89
90
91
// TODO: handle this on the server instead
export function now() {
const date = new Date();
return new Date(
date.getUTCFullYear(),
date.getUTCMonth(),
date.getUTCDate(),
date.getUTCHours(),
date.getUTCMinutes(),
date.getUTCSeconds()
);
}
export function sleep(ms: number) {
return new Promise((res) => setTimeout(res, ms));
}
// Returns the words (or whatever substrings based on the `separator`)
// in a string up until the point of meeting the`max` character limit
export function shorten(str: string | null, max: number, separator = ' ') {
if (!str) {
return '';
} else if (str.length <= max) {
return str;
}
return str.substr(0, str.lastIndexOf(separator, max)).concat('...');
}
export function shouldActivateGameMode(message: string) {
if (!message || !message.length) {
return false;
}
return (
[
'/play2048',
'/xyzzy',
'/poweroverwhelming',
'/howdoyouturnthison',
'what is 2^11',
'what is 2^11?',
"what's 2^11",
"what's 2^11?",
].indexOf(message.toLowerCase()) !== -1
);
}
export function throttle<T extends []>(
callback: (..._: T) => void,
wait: number,
immediate = true
): (..._: T) => void {
let timeout: NodeJS.Timeout | undefined;
let initialCall = true;
return (...args: T) => {
const callNow = immediate && initialCall;
const next = () => {
timeout = clearTimeout(timeout) as undefined;
callback(...args);
};
if (callNow) {
initialCall = false;
next();
}
if (timeout === void 0) {
timeout = setTimeout(next, wait);
}
};
}
export function setupPostMessageHandlers(w: any, handler: (msg: any) => void) {
const cb = (msg: any) => {
handler(msg);
};
if (w.addEventListener) {
w.addEventListener('message', cb);
return () => w.removeEventListener('message', cb);
} else {
w.attachEvent('onmessage', cb);
return () => w.detachEvent('message', cb);
}
}