forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathonlineManager.ts
76 lines (64 loc) · 1.71 KB
/
onlineManager.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
import { Subscribable } from './subscribable'
import { isServer } from './utils'
class OnlineManager extends Subscribable {
private online?: boolean
private removeEventListener?: () => void
protected onSubscribe(): void {
if (!this.removeEventListener) {
this.setDefaultEventListener()
}
}
setEventListener(
setup: (setOnline: (online?: boolean) => void) => () => void
): void {
if (this.removeEventListener) {
this.removeEventListener()
}
this.removeEventListener = setup((online?: boolean) => {
if (typeof online === 'boolean') {
this.setOnline(online)
} else {
this.onOnline()
}
})
}
setOnline(online?: boolean): void {
this.online = online
if (online) {
this.onOnline()
}
}
onOnline(): void {
this.listeners.forEach(listener => {
listener()
})
}
isOnline(): boolean {
if (typeof this.online === 'boolean') {
return this.online
}
if (
typeof navigator === 'undefined' ||
typeof navigator.onLine === 'undefined'
) {
return true
}
return navigator.onLine
}
private setDefaultEventListener() {
if (!isServer && window?.addEventListener) {
this.setEventListener(onOnline => {
const listener = () => onOnline()
// Listen to online
window.addEventListener('online', listener, false)
window.addEventListener('offline', listener, false)
return () => {
// Be sure to unsubscribe if a new handler is set
window.removeEventListener('online', listener)
window.removeEventListener('offline', listener)
}
})
}
}
}
export const onlineManager = new OnlineManager()