1
- import React , { useEffect } from 'react' ;
1
+ import React from 'react' ;
2
2
import { Tabs } from 'expo-router' ;
3
3
import { Ionicons } from '@expo/vector-icons' ;
4
- import { getAuth , onAuthStateChanged , signOut } from 'firebase/auth' ;
5
- import AsyncStorage from '@react-native-async-storage/async-storage' ;
6
- import { router } from 'expo-router' ;
7
4
import { TouchableOpacity , Alert } from 'react-native' ;
8
- import { auth } from '../../config/firebase' ;
5
+ import { useAuth } from '../../context/AuthContext' ;
6
+ import AuthProtectedRoute from '../../components/AuthProtectedRoute' ;
9
7
10
8
export default function TabsLayout ( ) {
11
- useEffect ( ( ) => {
12
- // Set up auth state listener for tabs
13
- const unsubscribe = onAuthStateChanged ( auth , ( user ) => {
14
- // If user signs out or no user is found, redirect to login
15
- if ( ! user ) {
16
- console . log ( 'No user found in tabs layout, redirecting to login' ) ;
17
- router . replace ( '/login' ) ;
18
- }
19
- } ) ;
9
+ const { signOut } = useAuth ( ) ;
20
10
21
- // Check if user exists in AsyncStorage
22
- const checkUser = async ( ) => {
23
- const userJSON = await AsyncStorage . getItem ( '@user' ) ;
24
- if ( ! userJSON ) {
25
- console . log ( 'No user in AsyncStorage, redirecting to login' ) ;
26
- router . replace ( '/login' ) ;
27
- }
28
- } ;
29
-
30
- checkUser ( ) ;
31
-
32
- // Clean up subscription
33
- return ( ) => unsubscribe ( ) ;
34
- } , [ ] ) ;
35
-
36
- // Handle logout
37
- const handleLogout = async ( ) => {
11
+ const handleLogout = ( ) => {
38
12
Alert . alert (
39
- 'Logout' ,
40
- ' Are you sure you want to log out?' ,
13
+ "Sign Out" ,
14
+ " Are you sure you want to sign out?" ,
41
15
[
42
16
{
43
- text : 'Cancel' ,
44
- style : 'cancel' ,
45
- } ,
46
- {
47
- text : 'Logout' ,
48
- onPress : async ( ) => {
49
- try {
50
- console . log ( 'Logging out user' ) ;
51
- // Sign out from Firebase
52
- await signOut ( auth ) ;
53
- // Clear AsyncStorage user data
54
- await AsyncStorage . removeItem ( '@user' ) ;
55
- // Navigate to login
56
- router . replace ( '/login' ) ;
57
- } catch ( error ) {
58
- console . error ( 'Error during logout:' , error ) ;
59
- Alert . alert ( 'Error' , 'Failed to log out. Please try again.' ) ;
60
- }
61
- } ,
17
+ text : "Cancel" ,
18
+ style : "cancel"
62
19
} ,
63
- ] ,
64
- { cancelable : true }
20
+ {
21
+ text : "Sign Out" ,
22
+ onPress : ( ) => signOut ( ) ,
23
+ style : "destructive"
24
+ }
25
+ ]
65
26
) ;
66
27
} ;
67
28
29
+ // Create logout button component for header
30
+ const LogoutButton = ( ) => (
31
+ < TouchableOpacity
32
+ onPress = { handleLogout }
33
+ style = { { marginRight : 16 } }
34
+ >
35
+ < Ionicons name = "log-out-outline" size = { 24 } color = "#3498db" />
36
+ </ TouchableOpacity >
37
+ ) ;
38
+
68
39
return (
69
- < Tabs screenOptions = { {
70
- tabBarActiveTintColor : '#4a90e2' ,
71
- headerRight : ( ) => (
72
- < TouchableOpacity
73
- onPress = { handleLogout }
74
- style = { { marginRight : 15 } }
75
- >
76
- < Ionicons name = "log-out-outline" size = { 24 } color = "#FF3B30" />
77
- </ TouchableOpacity >
78
- ) ,
79
- } } >
80
- < Tabs . Screen
81
- name = "index"
82
- options = { {
83
- title : 'Today' ,
84
- tabBarIcon : ( { color, size } ) => (
85
- < Ionicons name = "today-outline" size = { size } color = { color } />
86
- ) ,
87
- } }
88
- />
89
- < Tabs . Screen
90
- name = "habits"
91
- options = { {
92
- title : 'Habits' ,
93
- tabBarIcon : ( { color, size } ) => (
94
- < Ionicons name = "calendar-outline" size = { size } color = { color } />
95
- ) ,
40
+ < AuthProtectedRoute >
41
+ < Tabs
42
+ screenOptions = { {
43
+ headerShown : true ,
44
+ tabBarActiveTintColor : '#3498db' ,
45
+ tabBarInactiveTintColor : '#95a5a6' ,
46
+ // Add logout button to all screen headers
47
+ headerRight : ( ) => < LogoutButton />
96
48
} }
97
- />
98
- </ Tabs >
49
+ >
50
+ < Tabs . Screen
51
+ name = "today"
52
+ options = { {
53
+ title : "Today" ,
54
+ tabBarIcon : ( { color, size } ) => (
55
+ < Ionicons name = "today-outline" size = { size } color = { color } />
56
+ ) ,
57
+ } }
58
+ />
59
+
60
+ < Tabs . Screen
61
+ name = "habits"
62
+ options = { {
63
+ title : "Habits" ,
64
+ tabBarIcon : ( { color, size } ) => (
65
+ < Ionicons name = "list-outline" size = { size } color = { color } />
66
+ ) ,
67
+ } }
68
+ />
69
+
70
+ { /* Add your future tabs here */ }
71
+ { /*
72
+ <Tabs.Screen
73
+ name="quotes"
74
+ options={{
75
+ title: "Quotes",
76
+ tabBarIcon: ({ color, size }) => (
77
+ <Ionicons name="chatbubble-ellipses-outline" size={size} color={color} />
78
+ ),
79
+ }}
80
+ />
81
+
82
+ <Tabs.Screen
83
+ name="progress"
84
+ options={{
85
+ title: "Progress",
86
+ tabBarIcon: ({ color, size }) => (
87
+ <Ionicons name="analytics-outline" size={size} color={color} />
88
+ ),
89
+ }}
90
+ />
91
+ */ }
92
+ </ Tabs >
93
+ </ AuthProtectedRoute >
99
94
) ;
100
- }
101
- // // app/(tabs)/_layout.tsx
102
- // import { Tabs } from 'expo-router';
103
- // import { useColorScheme, Platform, TouchableOpacity } from 'react-native';
104
- // import FontAwesome from '@expo/vector-icons/FontAwesome';
105
- // import { useGoogleAuth } from '../../services/authService';
106
- // import { useRouter } from 'expo-router';
107
-
108
- // export default function TabLayout() {
109
- // const colorScheme = useColorScheme();
110
- // const router = useRouter();
111
- // // const { handleSignOut } = useGoogleAuth();
112
-
113
- // return (
114
- // <Tabs
115
- // screenOptions={{
116
- // tabBarActiveTintColor: '#7C3AED',
117
- // tabBarInactiveTintColor: '#6B7280',
118
- // headerShown: true,
119
- // tabBarStyle: {
120
- // backgroundColor: '#FFFFFF',
121
- // borderTopColor: '#E5E7EB',
122
- // height: Platform.OS === 'ios' ? 88 : 60,
123
- // paddingBottom: Platform.OS === 'ios' ? 28 : 8,
124
- // paddingTop: 8,
125
- // },
126
- // headerStyle: {
127
- // backgroundColor: '#FFFFFF',
128
- // elevation: 0,
129
- // shadowOpacity: 0,
130
- // borderBottomWidth: 1,
131
- // borderBottomColor: '#E5E7EB',
132
- // },
133
- // headerTitleStyle: {
134
- // color: '#1F2937',
135
- // fontWeight: 'bold',
136
- // fontSize: 18,
137
- // },
138
- // tabBarLabelStyle: {
139
- // fontSize: 12,
140
- // fontWeight: '500',
141
- // },
142
- // // Add sign out button to header
143
- // headerRight: () => (
144
- // <TouchableOpacity
145
- // onPress={handleSignOut}
146
- // style={{ marginRight: 16 }}
147
- // >
148
- // <FontAwesome name="sign-out" size={24} color="#7C3AED" />
149
- // </TouchableOpacity>
150
- // ),
151
- // }}>
152
- // <Tabs.Screen
153
- // name="index"
154
- // options={{
155
- // title: 'Today',
156
- // tabBarIcon: ({ color, size }) => (
157
- // <FontAwesome size={size} name="calendar" color={color} />
158
- // ),
159
- // headerTitle: 'Life Companion',
160
- // }}
161
- // />
162
- // <Tabs.Screen
163
- // name="habits"
164
- // options={{
165
- // title: 'Habits',
166
- // tabBarIcon: ({ color, size }) => (
167
- // <FontAwesome size={size} name="check-square" color={color} />
168
- // ),
169
- // headerTitle: 'Habits',
170
- // }}
171
- // />
172
- // </Tabs>
173
- // );
174
- // }
95
+ }
0 commit comments