-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathApp.js
88 lines (81 loc) · 2.35 KB
/
App.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
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
import React, { Component } from 'react';
import {
SafeAreaView,
StatusBar,
BackHandler,
Platform,
Text,
TextInput,
} from 'react-native';
import Routes from './src/routes';
import { Provider } from 'react-redux';
import { PersistGate } from 'redux-persist/es/integration/react';
import { store, persistor } from './src/redux/store/store';
import { Colors } from './src/constants';
import HoldOnPopUp from './src/components/Modal/Center/HoldOnPopUp';
import FlashMessage from 'react-native-flash-message';
class App extends Component {
constructor(props) {
console.log = () => null
Text.defaultProps = Text.defaultProps || {}
Text.defaultProps.allowFontScaling = false
TextInput.defaultProps = TextInput.defaultProps || {}
TextInput.defaultProps.allowFontScaling = false
super(props);
this.state = {
isConnected: null,
showHoldPopUp: false,
};
}
componentDidMount = async () => {
BackHandler.addEventListener('hardwareBackPress', this.backAction);
};
componentWillUnmount() {
BackHandler.removeEventListener('hardwareBackPress', this.backAction);
}
backAction = async () => {
if (store.getState().login.isLoggedIn == false) {
this.setState({
showHoldPopUp: true,
});
} else {
BackHandler.exitApp();
}
};
render() {
const { showHoldPopUp } = this.state;
return (
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<SafeAreaView style={{ flex: 1 }}>
<StatusBar
barStyle={
Platform.OS === 'ios' ? 'dark-content' : 'light-content'
}
backgroundColor={
Platform.OS === 'ios' ? Colors.ui_grey_05 : Colors.ui_grey_10
}
/>
<Routes />
</SafeAreaView>
</PersistGate>
<HoldOnPopUp
visible={showHoldPopUp}
onRequestClose={() => {
this.setState({
showHoldPopUp: false,
});
}}
onRequestClear={() => {
this.setState({
showHoldPopUp: false,
});
BackHandler.exitApp();
}}
/>
<FlashMessage />
</Provider>
);
}
}
export default App;