-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainScreen.js
41 lines (40 loc) · 1.28 KB
/
MainScreen.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
import React from 'react';
import {Text, TouchableOpacity, View} from 'react-native';
import {styles} from './styles.js';
import { StackActions, NavigationActions } from 'react-navigation';
import firebase from 'react-native-firebase';
export class MainScreen extends React.Component {
state={currentUser: null}
static navigationOptions = {
title: 'Main',
}
componentDidMount() {
const {currentUser} = firebase.auth()
this.setState({currentUser})
}
render() {
const {currentUser} = this.state
return (
<View style={styles.mainContainer}>
<Text style={styles.title}>You are logged in as {currentUser && currentUser.email} </Text>
<TouchableOpacity
style={styles.button}
onPress={()=>this.handleLogOut()}>
<Text style={styles.buttonText}>Log Out</Text>
</TouchableOpacity>
</View>
);
}
handleLogOut= ()=> {
firebase.auth().signOut()
.then(()=>this.goToLogin())
.catch(error=>{this.goToLogin()})
}
goToLogin = () => {
const resetAction = StackActions.reset({
index: 0,
actions: [NavigationActions.navigate({routeName: 'Login'})],
})
this.props.navigation.dispatch(resetAction)
}
}