-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathasyncUtils.ts
98 lines (87 loc) · 2.63 KB
/
asyncUtils.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
92
93
94
95
96
97
98
import { Act, WaitOptions, AsyncUtils } from '../types'
import { resolveAfter } from '../helpers/promises'
import { TimeoutError } from '../helpers/error'
function asyncUtils(act: Act, addResolver: (callback: () => void) => void): AsyncUtils {
let nextUpdatePromise: Promise<void> | null = null
const waitForNextUpdate = async ({ timeout }: Pick<WaitOptions, 'timeout'> = {}) => {
if (nextUpdatePromise) {
await nextUpdatePromise
} else {
nextUpdatePromise = new Promise((resolve, reject) => {
let timeoutId: ReturnType<typeof setTimeout>
if (timeout && timeout > 0) {
timeoutId = setTimeout(
() => reject(new TimeoutError(waitForNextUpdate, timeout)),
timeout
)
}
addResolver(() => {
clearTimeout(timeoutId)
nextUpdatePromise = null
resolve()
})
})
await act(() => nextUpdatePromise as Promise<void>)
}
}
const waitFor = async (
callback: () => boolean | void,
{ interval, timeout, suppressErrors = true }: WaitOptions = {}
) => {
const checkResult = () => {
try {
const callbackResult = callback()
return callbackResult ?? callbackResult === undefined
} catch (error: unknown) {
if (!suppressErrors) {
throw error
}
return undefined
}
}
const waitForResult = async () => {
const initialTimeout = timeout
while (true) {
const startTime = Date.now()
try {
const nextCheck = interval
? Promise.race([waitForNextUpdate({ timeout }), resolveAfter(interval)])
: waitForNextUpdate({ timeout })
await nextCheck
if (checkResult()) {
return
}
} catch (error: unknown) {
if (error instanceof TimeoutError && initialTimeout) {
throw new TimeoutError(waitFor, initialTimeout)
}
throw error
}
if (timeout) timeout -= Date.now() - startTime
}
}
if (!checkResult()) {
await waitForResult()
}
}
const waitForValueToChange = async (selector: () => unknown, options: WaitOptions = {}) => {
const initialValue = selector()
try {
await waitFor(() => selector() !== initialValue, {
suppressErrors: false,
...options
})
} catch (error: unknown) {
if (error instanceof TimeoutError && options.timeout) {
throw new TimeoutError(waitForValueToChange, options.timeout)
}
throw error
}
}
return {
waitFor,
waitForNextUpdate,
waitForValueToChange
}
}
export { asyncUtils }