-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
74 lines (65 loc) · 1.85 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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
* @lint-ignore-every XPLATJSCOPYRIGHT1
*/
import React, {Component} from 'react';
import {Text, View} from 'react-native';
import firebase from 'firebase';
import Login from './src/components/loginForm'
import Header from './src/components/header'
import Spinner from './src/components/spinner'
import Logout from './src/components/logout';
type Props = {};
export default class App extends Component<Props> {
state = {loggedIn : null};
componentWillMount() {
firebase.initializeApp({
apiKey: 'AIzaSyCjMduL-cfm11xatgCBYXbZ9YsivejE4Xw',
authDomain: 'reactauthdeneme.firebaseapp.com',
databaseURL: 'https://reactauthdeneme.firebaseio.com',
projectId: 'reactauthdeneme',
storageBucket: 'reactauthdeneme.appspot.com',
messagingSenderId: '627494375899'
});
firebase.auth().onAuthStateChanged((user) => {
if (user) {
this.setState({loggedIn : true})
} else {
this.setState({loggedIn : false})
}
})
};
renderContent () {
switch (this.state.loggedIn) {
case true:
return (
<View>
<Header headerName="Çıkış Yap" />
<Logout/>
</View>
);
case false:
return (
<View>
<Header headerName="Giriş Yap" />
<Login/>
</View>
);
default:
return (
<Spinner/>
);
}
}
render() {
return (
<View>
{this.renderContent()}
</View>
);
}
}