-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
63 lines (54 loc) · 1.42 KB
/
App.js
File metadata and controls
63 lines (54 loc) · 1.42 KB
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
import React, {Component} from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { Header, Button, Spinner } from './src/components/common';
import firebase from 'firebase';
import LoginForm from './src/components/LoginForm';
class App extends Component {
state = { loggedIn: null };
componentWillMount(){
firebase.initializeApp({
apiKey: "AIzaSyDxs_tTHMLakmpGkMNtOD5N6NNcQTFhOck",
authDomain: "auth-d4b3d.firebaseapp.com",
databaseURL: "https://auth-d4b3d.firebaseio.com",
projectId: "auth-d4b3d",
storageBucket: "auth-d4b3d.appspot.com",
messagingSenderId: "1944692591"
});
firebase.auth().onAuthStateChanged((user)=>{
if(user) {
this.setState({ loggedIn: true });
} else{
this.setState({ loggedIn: false });
}
});
}
renderContent(){
switch (this.state.loggedIn){
case true:
return (
<Button onPress={() => firebase.auth().signOut()}>
Log out
</Button>
);
case false:
return <LoginForm />;
default:
return <Spinner size = "large"/>
}
}
render() {
return (
<View style={styles.container}>
<Header headerText = "Authentication"/>
{this.renderContent()}
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
},
});
export default App;