Ignore:
Timestamp:
02/27/25 00:42:38 (5 weeks ago)
Author:
Naum Shapkarovski <naumshapkarovski@…>
Branches:
main
Children:
32e9876
Parents:
3c5302a
Message:

update the seed script. update the prisma schema, use mapping

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/auth/context/firebase/auth-provider.tsx

    r3c5302a r87c9f1e  
    2121import { AuthContext } from './auth-context';
    2222import { ActionMapType, AuthStateType, AuthUserType } from '../../types';
     23import { getUser } from 'src/api/user';
    2324
    2425// ----------------------------------------------------------------------
     
    7172        if (user) {
    7273          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 },
    8682                },
    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            }
    8993          } else {
    9094            dispatch({
     
    145149  const register = useCallback(
    146150    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      // });
    158159    },
    159160    []
Note: See TracChangeset for help on using the changeset viewer.