Changeset 87c9f1e for src/auth/context/firebase/auth-provider.tsx
- Timestamp:
- 02/27/25 00:42:38 (5 weeks ago)
- Branches:
- main
- Children:
- 32e9876
- Parents:
- 3c5302a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/auth/context/firebase/auth-provider.tsx
r3c5302a r87c9f1e 21 21 import { AuthContext } from './auth-context'; 22 22 import { ActionMapType, AuthStateType, AuthUserType } from '../../types'; 23 import { getUser } from 'src/api/user'; 23 24 24 25 // ---------------------------------------------------------------------- … … 71 72 if (user) { 72 73 if (user.emailVerified) { 73 const userProfile = doc(db, collections.administrator, user.uid); 74 75 const docSnap = await getDoc(userProfile); 76 77 const profile = docSnap.data(); 78 79 dispatch({ 80 type: Types.INITIAL, 81 payload: { 82 user: { 83 ...user, 84 ...profile, 85 id: user.uid, 74 try { 75 const profile = await getUser(); 76 console.log('profile', profile); 77 78 dispatch({ 79 type: Types.INITIAL, 80 payload: { 81 user: { ...profile, emailVerified: user.emailVerified }, 86 82 }, 87 }, 88 }); 83 }); 84 } catch (error) { 85 console.error('Failed to fetch user profile:', error); 86 dispatch({ 87 type: Types.INITIAL, 88 payload: { 89 user: null, 90 }, 91 }); 92 } 89 93 } else { 90 94 dispatch({ … … 145 149 const register = useCallback( 146 150 async (email: string, password: string, firstName: string, lastName: string) => { 147 const newUser = await createUserWithEmailAndPassword(auth, email, password); 148 149 await sendEmailVerification(newUser.user); 150 151 const userProfile = doc(collection(db, collections.administrator), newUser.user?.uid); 152 153 await setDoc(userProfile, { 154 uid: newUser.user?.uid, 155 email, 156 displayName: `${firstName} ${lastName}`, 157 }); 151 // const newUser = await createUserWithEmailAndPassword(auth, email, password); 152 // await sendEmailVerification(newUser.user); 153 // const userProfile = doc(collection(db, collections.administrator), newUser.user?.uid); 154 // await setDoc(userProfile, { 155 // uid: newUser.user?.uid, 156 // email, 157 // displayName: `${firstName} ${lastName}`, 158 // }); 158 159 }, 159 160 []
Note:
See TracChangeset
for help on using the changeset viewer.