forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfocusManager.ts
76 lines (64 loc) · 1.8 KB
/
focusManager.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 FocusManager extends Subscribable {
private focused?: boolean
private removeEventListener?: () => void
protected onSubscribe(): void {
if (!this.removeEventListener) {
this.setDefaultEventListener()
}
}
setEventListener(
setup: (setFocused: (focused?: boolean) => void) => () => void
): void {
if (this.removeEventListener) {
this.removeEventListener()
}
this.removeEventListener = setup(focused => {
if (typeof focused === 'boolean') {
this.setFocused(focused)
} else {
this.onFocus()
}
})
}
setFocused(focused?: boolean): void {
this.focused = focused
if (focused) {
this.onFocus()
}
}
onFocus(): void {
this.listeners.forEach(listener => {
listener()
})
}
isFocused(): boolean {
if (typeof this.focused === 'boolean') {
return this.focused
}
// document global can be unavailable in react native
if (typeof document === 'undefined') {
return true
}
return [undefined, 'visible', 'prerender'].includes(
document.visibilityState
)
}
private setDefaultEventListener() {
if (!isServer && window?.addEventListener) {
this.setEventListener(onFocus => {
const listener = () => onFocus()
// Listen to visibillitychange and focus
window.addEventListener('visibilitychange', listener, false)
window.addEventListener('focus', listener, false)
return () => {
// Be sure to unsubscribe if a new handler is set
window.removeEventListener('visibilitychange', listener)
window.removeEventListener('focus', listener)
}
})
}
}
}
export const focusManager = new FocusManager()