forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonlineManager.ts
89 lines (74 loc) · 1.97 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
77
78
79
80
81
82
83
84
85
86
87
88
89
import { Subscribable } from './subscribable'
import { isServer } from './utils'
type SetupFn = (
setOnline: (online?: boolean) => void,
) => (() => void) | undefined
export class OnlineManager extends Subscribable {
private online?: boolean
private cleanup?: () => void
private setup: SetupFn
constructor() {
super()
this.setup = (onOnline) => {
// addEventListener does not exist in React Native, but window does
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
if (!isServer && window.addEventListener) {
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)
}
}
}
}
protected onSubscribe(): void {
if (!this.cleanup) {
this.setEventListener(this.setup)
}
}
protected onUnsubscribe() {
if (!this.hasListeners()) {
this.cleanup?.()
this.cleanup = undefined
}
}
setEventListener(setup: SetupFn): void {
this.setup = setup
this.cleanup?.()
this.cleanup = 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
}
}
export const onlineManager = new OnlineManager()