forked from seceremrecan/e-laboratory-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
225 lines (211 loc) · 6.99 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
import React, { useState } from "react";
import {
View,
Text,
TextInput,
TouchableOpacity,
StyleSheet,
} from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { getAuth, signInWithEmailAndPassword } from "firebase/auth";
import { getFirestore, doc, getDoc } from "firebase/firestore";
import { Ionicons } from "@expo/vector-icons";
// Diğer ekranlar
import AdminViewPatientsScreen from "./screens/AdminViewPatientsScreen";
import AddGuideScreen from "./screens/AddGuideScreen";
import AddResultScreen from "./screens/AddResultScreen";
import PatientDetailsScreen from "./screens/PatientDetailsScreen";
import AdminGuideEvaluationScreen from "./screens/AdminGuideEvaluationScreen";
import UserResultsScreen from "./screens/UserResultsScreen";
import AdminHomeScreen from "./screens/AdminHomeScreen";
import UserProfileScreen from "./screens/UserProfileScreen";
import UserHomeScreen from "./screens/UserHomeScreen";
import RegisterScreen from "./screens/RegisterScreen";
// Firebase yapılandırması
import { initializeApp } from "firebase/app";
const firebaseConfig = {
apiKey: "YOUR_API_KEY",
authDomain: "YOUR-AUTH-DOMAIN",
projectId: "YOUR-PROJECT-ID",
storageBucket: "YOUR-STORAGE-BUCKET",
messagingSenderId: "YOUR-SENDER-ID",
appId: "YOUR-APP-ID",
measurementId: "YOUR-MEASUREMENT-ID",
};
initializeApp(firebaseConfig);
const Stack = createStackNavigator();
const auth = getAuth();
const db = getFirestore();
const LoginScreen = ({ navigation, setUserName }) => {
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [isLoading, setIsLoading] = useState(false);
const handleLogin = async () => {
if (isLoading) return;
setIsLoading(true);
try {
const userCredential = await signInWithEmailAndPassword(auth, email, password);
const user = userCredential.user;
const userDocRef = doc(db, "Users", user.uid);
const userDoc = await getDoc(userDocRef);
if (userDoc.exists()) {
const role = userDoc.data().role;
const userName = userDoc.data().name || "User";
setUserName(userName);
if (role === "admin") {
navigation.reset({
index: 0,
routes: [{ name: "AdminHome" }],
});
} else if (role === "user") {
navigation.reset({
index: 0,
routes: [{ name: "UserHome", params: { userId: user.uid } }],
});
}
} else {
alert("User data not found in Firestore.");
}
} catch (error) {
alert("Login failed: " + error.message);
} finally {
setIsLoading(false);
}
};
return (
<View style={styles.loginContainer}>
<Text style={styles.loginHeader}>Giriş Yap</Text>
<TextInput
placeholder="Email"
value={email}
onChangeText={setEmail}
style={styles.input}
/>
<TextInput
placeholder="Şifre"
value={password}
onChangeText={setPassword}
secureTextEntry
style={styles.input}
/>
<TouchableOpacity
style={styles.loginButton}
onPress={handleLogin}
disabled={isLoading}
>
<Text style={styles.loginButtonText}>
{isLoading ? "Giriş Yapılıyor..." : "Giriş Yap"}
</Text>
</TouchableOpacity>
<TouchableOpacity
style={[styles.loginButton, { backgroundColor: "#6c757d" }]}
onPress={() => navigation.navigate("Register")}
>
<Text style={styles.loginButtonText}>Kayıt Ol</Text>
</TouchableOpacity>
</View>
);
};
export default function App() {
const [userName, setUserName] = useState("");
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="Login">
<Stack.Screen
name="Login"
options={{ title: "Giriş Yap", headerShown: false }}
>
{(props) => <LoginScreen {...props} setUserName={setUserName} />}
</Stack.Screen>
<Stack.Screen
name="AdminHome"
component={AdminHomeScreen}
options={({ navigation }) => ({
title: "",
headerRight: () => (
<Text style={{ marginRight: 15, fontWeight: "bold", color: "gray" }}>
{userName}
</Text>
),
headerLeft: () => (
<TouchableOpacity
style={{ marginLeft: 10, flexDirection: "row", alignItems: "center" }}
onPress={() => navigation.reset({ index: 0, routes: [{ name: "Login" }] })}
>
<Ionicons name="log-out-outline" size={24} color="#007BFF" />
<Text style={{ color: "#007BFF", fontSize: 16, marginLeft: 5 }}>Çıkış</Text>
</TouchableOpacity>
),
})}
/>
<Stack.Screen
name="UserHome"
component={UserHomeScreen}
options={({ navigation }) => ({
title: "",
headerRight: () => (
<Text style={{ marginRight: 15, fontWeight: "bold", color: "gray" }}>
{userName}
</Text>
),
headerLeft: () => (
<TouchableOpacity
style={{ marginLeft: 10, flexDirection: "row", alignItems: "center" }}
onPress={() => navigation.reset({ index: 0, routes: [{ name: "Login" }] })}
>
<Ionicons name="log-out-outline" size={24} color="#007BFF" />
<Text style={{ color: "#007BFF", fontSize: 16, marginLeft: 5 }}>Çıkış</Text>
</TouchableOpacity>
),
})}
/>
<Stack.Screen name="AdminViewPatients" component={AdminViewPatientsScreen} />
<Stack.Screen name="AddGuide" component={AddGuideScreen} />
<Stack.Screen name="AddResult" component={AddResultScreen} />
<Stack.Screen name="PatientDetails" component={PatientDetailsScreen} />
<Stack.Screen name="AdminGuideEvaluation" component={AdminGuideEvaluationScreen} />
<Stack.Screen name="UserResults" component={UserResultsScreen} />
<Stack.Screen name="UserProfile" component={UserProfileScreen} />
<Stack.Screen name="Register" component={RegisterScreen} />
</Stack.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
loginContainer: {
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#f3f4f6",
padding: 20,
},
loginHeader: {
fontSize: 28,
fontWeight: "bold",
color: "#333",
marginBottom: 20,
},
input: {
borderWidth: 1,
borderColor: "#ccc",
padding: 10,
marginBottom: 15,
width: "80%",
borderRadius: 8,
backgroundColor: "#fff",
},
loginButton: {
backgroundColor: "#007BFF",
padding: 15,
borderRadius: 8,
width: "80%",
alignItems: "center",
marginBottom: 10,
},
loginButtonText: {
color: "#fff",
fontSize: 16,
fontWeight: "bold",
},
});