-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsplashscreen.js
112 lines (91 loc) · 2.57 KB
/
splashscreen.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import React from "react";
import { ActivityIndicator, StyleSheet, View, ImageBackground, Image, Keyboard, TouchableWithoutFeedback} from "react-native";
import backg from "../assets/images/backg.png" ;
import lsdlogo from "../assets/images/lsdlogo.png" ;
import AsyncStorage from '@react-native-community/async-storage';
import { NavigationEvents } from 'react-navigation';
import firebase from "../assets/DatabaseConfig" ;
export default function splashscreen({navigation}) {
async function removeData() {
try {
const keys = await AsyncStorage.getAllKeys();
await AsyncStorage.multiRemove(keys);
} catch (e) {
console.log(e);
}
}
const LoginPress = () => {
let emailcheck = firebase.auth().currentUser.email;
mydb = firebase.database().ref('/Users/' + emailcheck.substr(0, 8));
mydb.once('value').then(function(snapshot) {
let custflag = snapshot.child('Customerflag').val();
let username = snapshot.child('Username').val();
if (custflag) {
removeData();
navigation.navigate('CustomerDrawer', {user: username});
} else {
navigation.navigate('AdminDrawer', {user: username});
}
});
};
function loginexists() {
meow = firebase.auth().onAuthStateChanged(function(user) {
if (user) {
LoginPress()
}
else {
navigation.navigate('Login')
}
})
}
return (
<TouchableWithoutFeedback onPress = {() =>{
Keyboard.dismiss()
}}>
<View style={styles.container}>
<NavigationEvents onWillFocus={() => {loginexists()}} />
<ImageBackground source={backg} style={styles.bgimage}>
<View style={styles.maincontainer}>
<View style={styles.logocontainer} >
<Image
style={styles.stretch}
source={lsdlogo}
/>
</View>
<ActivityIndicator size="large" color="#d00f16" style={styles.activity} />
</View>
</ImageBackground>
</View>
</TouchableWithoutFeedback>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: "column"
},
bgimage: {
flex: 1,
resizeMode: "stretch",
justifyContent: "center",
},
logocontainer: {
flex: 6,
flexDirection: "column",
paddingLeft: "13%",
justifyContent: "flex-end",
},
activity: {
paddingTop: "5%",
flex: 4,
justifyContent: "flex-start",
},
stretch: {
width: '70%',
height: '50%',
resizeMode: "contain",
},
maincontainer: {
flex: 6,
},
});