-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathvisibility.ts
50 lines (45 loc) · 1.24 KB
/
visibility.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
export const getBrowserVisibilityInfo = (document: any) => {
if (typeof document.hidden !== 'undefined') {
return {
hidden: 'hidden',
event: 'visibilitychange',
state: 'visibilityState',
};
} else if (typeof document.mozHidden !== 'undefined') {
return {
hidden: 'mozHidden',
event: 'mozvisibilitychange',
state: 'mozVisibilityState',
};
} else if (typeof document.msHidden !== 'undefined') {
return {
hidden: 'msHidden',
event: 'msvisibilitychange',
state: 'msVisibilityState',
};
} else if (typeof document.webkitHidden !== 'undefined') {
return {
hidden: 'webkitHidden',
event: 'webkitvisibilitychange',
state: 'webkitVisibilityState',
};
} else {
return {
hidden: null,
event: null,
state: null,
};
}
};
export const isWindowHidden = (document: any): boolean => {
const {hidden} = getBrowserVisibilityInfo(document);
return !!document[hidden];
};
export const addVisibilityEventListener = (
document: any,
handler: (e: any) => void
) => {
const {event} = getBrowserVisibilityInfo(document);
document.addEventListener(event, handler, false);
return () => document.removeEventListener(event, handler);
};