-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
73 lines (63 loc) · 1.59 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
import React, {Component} from 'react';
import {AppRegistry, View} from 'react-native';
import { checkAllPermissions, requestAllPermissions} from './components/utils/helpers';
import Header from './components/Header';
import Content from './components/Content';
import PermissionsPage from './components/PermissionsPage';
import StartupPage from './components/StartupPage';
export default class App extends Component {
state = {
permissionsGranted: false,
initializing: true
}
startupTimeout(){
setTimeout(() => {
this.setState({initializing: false});
}, 2000);
}
requestPermissions(){
requestAllPermissions().then(() => {
checkAllPermissions().then((retVal) => {
if(retVal){
this.setState({permissionsGranted: true});
}
})
});
}
componentDidMount(){
checkAllPermissions().then((retVal) => {
this.startupTimeout();
//console.log( '1' + retVal);
if(retVal){
this.setState({permissionsGranted: true});
}
});
}
componentWillUnmount(){
console.log('APP UNMOUNTING!!!!!!!!!!!!!!!!');
}
render() {
if (this.state.initializing) {
return (
<StartupPage />
);
} else {
if (this.state.permissionsGranted) {
return (
<View>
<Header />
<Content />
</View>
);
} else {
return (
<View>
<Header />
<PermissionsPage reqFunc={()=>this.requestPermissions()}/>
</View>
);
}
}
}
}
AppRegistry.registerComponent('App', ()=>App );