-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
69 lines (63 loc) · 1.53 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
import React, { Component } from 'react';
import { View } from 'react-native';
import firebase from 'firebase';
import { Header, Button, Spinner, Card, CardSection } from './src/components/common';
import LoginForm from './src/components/LoginForm';
export default class App extends Component {
state = { loggedIn: null };
componentWillMount() {
firebase.initializeApp({
apiKey: 'AIzaSyAcyMv1WRHiNtBVwAS5w3SJKArAXVtMWvU',
authDomain: 'auth-37f1c.firebaseapp.com',
databaseURL: 'https://auth-37f1c.firebaseio.com',
projectId: 'auth-37f1c',
storageBucket: 'auth-37f1c.appspot.com',
messagingSenderId: '238134480024'
});
firebase.auth().onAuthStateChanged((user) => {
if ( user ) {
this.setState({ loggedIn: true });
} else {
this.setState({ loggedIn: false });
}
});
}
renderContent() {
switch (this.state.loggedIn) {
case true:
return (
<View style={styles.containerStyle} >
<Button
onPress={() => {firebase.auth().signOut();}}>
Log Out!
</Button>
</View>
);
case false:
return <LoginForm />;
default:
return (
<View style={styles.containerStyle} >
<Spinner />
</View>
);
}
}
render() {
return (
<View>
<Header headerText={'Authentication'} />
{this.renderContent()}
</View>
);
}
}
const styles = {
containerStyle: {
marginLeft: 5,
marginRight: 5,
marginTop: 10,
justifyContent: 'flex-start',
flexDirection: 'row'
}
};