forked from wix/react-native-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScreenVisibilityListener.js
37 lines (32 loc) · 1.17 KB
/
ScreenVisibilityListener.js
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
import {
NativeAppEventEmitter,
DeviceEventEmitter,
Platform
} from 'react-native';
export default class ScreenVisibilityListener {
constructor(listeners) {
this.emitter = Platform.OS === 'android' ? DeviceEventEmitter : NativeAppEventEmitter;
this.listeners = listeners;
}
register() {
const {willAppear, didAppear, willDisappear, didDisappear} = this.listeners;
this.willAppearSubscription = willAppear && this.emitter.addListener('willAppear', willAppear);
this.didAppearSubscription = didAppear && this.emitter.addListener('didAppear', didAppear);
this.willDisappearSubscription = willDisappear && this.emitter.addListener('willDisappear', willDisappear);
this.didDisappearSubscription = didDisappear && this.emitter.addListener('didDisappear', didDisappear);
}
unregister() {
if (this.willAppearSubscription) {
this.willAppearSubscription.remove();
}
if (this.didAppearSubscription) {
this.didAppearSubscription.remove();
}
if (this.willDisappearSubscription) {
this.willDisappearSubscription.remove();
}
if (this.didDisappearSubscription) {
this.didDisappearSubscription.remove();
}
}
}