-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
87 lines (74 loc) · 2.17 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
import React from 'react';
import { StyleSheet, Text, View, } from 'react-native';
import LoginWithFacebook from './components/Login/LoginwithFacebook'
import LoginWithGoogle from './components/Login/LoginwithGoogle'
import Phone from './components/Login/phone'
import Navigator from './components/Navigator/navigator'
import firebase from './config/firebase'
import { Header, Icon, Avatar } from 'react-native-elements'
import { Permissions, Contacts } from "expo"
export default class App extends React.Component {
constructor(props) {
super(props)
this.state = {
userData: '',
currentUsers: '',
contactList: '',
isUser: false
}
this.userData = this.userData.bind(this)
this.users = this.users.bind(this)
this.logOut = this.logOut.bind(this)
}
componentWillMount() {
}
componentDidMount() {
// console.log(firebase.auth().currentUser.uid)
firebase.auth().onAuthStateChanged((use) => {
// console.log("USERUSERUERUSERUR+E", use)
this.setState({
isUser: use
})
})
}
static navigationOptions = {
drawerLabel: 'Home',
drawerIcon: ({ tintColor }) => (
<Icon name='home' />
),
};
userData(e) {
this.setState({
userData: e
})
}
users(e) {
this.setState({
currentUsers: e
})
}
logOut() {
this.setState({
currentUsers: "",
userData: ""
})
}
render() {
const { userData,currentUsers, isUser, } = this.state
return (
<View style={{ flex: 1 }}>
{ !currentUsers && <View>
<Header
centerComponent={{ text: 'Freelancer World', style: { color: '#fff', fontWeight: "bold" } }}
/>
</View >}
{ !currentUsers && <View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
{!userData && <LoginWithGoogle data={this.userData} user={this.users}/>}
{!userData && <LoginWithFacebook data={this.userData} user={this.users} contact={this.state.contactList} />}
{!!userData && <Phone data={userData} currentUsers={this.users} />}
</View>}
{!!currentUsers && <Navigator out={this.logOut} />}
</View>
);
}
}