adding different components for use and starting top header

This commit is contained in:
Arjun Patel
2022-01-14 15:20:47 -08:00
parent 5e73b75d73
commit dcc3633dca
11 changed files with 217 additions and 127 deletions
+51 -43
View File
@@ -1,82 +1,90 @@
import { getAuth, GoogleAuthProvider, onAuthStateChanged, signInWithPopup, signOut, User } from "firebase/auth";
import {
getAuth,
GoogleAuthProvider,
onAuthStateChanged,
signInWithPopup,
signOut,
User,
} from "firebase/auth";
import React, { useContext, useEffect, useState } from "react";
import firebase from '../services/firebaseService'
import nookies from 'nookies'
import firebase from "../services/firebaseService";
const AuthContext = React.createContext(null);
const googleProvider = new GoogleAuthProvider()
const googleProvider = new GoogleAuthProvider();
const auth = getAuth();
export function AuthProvider({ children }) {
const [currUser, setCurrUser] = useState();
const [loading, setLoading] = useState(true)
const [loading, setLoading] = useState(true);
useEffect(() => {
const unsubscribe = onAuthStateChanged(auth, async (user) => {
console.log('change in auth')
console.log("change in auth");
if (user) {
setCurrUser(user)
setCurrUser(user);
// set the token in the cookies for ssr verification
const token = await user.getIdToken();
nookies.set(undefined, 'token', token, { path: '/' });
// nookies.set(undefined, "token", token, { path: "/" });
} else {
nookies.set(undefined, 'token', '', { path: '/' });
setCurrUser(null)
// nookies.set(undefined, "token", "", { path: "/" });
setCurrUser(null);
}
setLoading(false)
setLoading(false);
});
return unsubscribe
}, [])
return unsubscribe;
}, []);
const signInGoogle = () => {
return signInWithPopup(auth, googleProvider).then((res) => {
// This gives you a Google Access Token. You can use it to access the Google API.
const credential = GoogleAuthProvider.credentialFromResult(res);
const token = credential.accessToken;
// The signed-in user info.
const user = res.user;
return signInWithPopup(auth, googleProvider)
.then((res) => {
// This gives you a Google Access Token. You can use it to access the Google API.
const credential = GoogleAuthProvider.credentialFromResult(res);
const token = credential.accessToken;
// The signed-in user info.
const user = res.user;
setCurrUser(user)
setCurrUser(user);
console.log(user)
}).catch((error) => {
// Handle Errors here.
const errorCode = error.code;
const errorMessage = error.message;
// The email of the user's account used.
const email = error.email;
// The AuthCredential type that was used.
const credential = GoogleAuthProvider.credentialFromError(error);
console.log(error)
throw error
})
}
console.log(user);
})
.catch((error) => {
// Handle Errors here.
const errorCode = error.code;
const errorMessage = error.message;
// The email of the user's account used.
const email = error.email;
// The AuthCredential type that was used.
const credential = GoogleAuthProvider.credentialFromError(error);
console.log(error);
throw error;
});
};
const logOut = () => {
console.log('logging user out')
console.log("logging user out");
return signOut(auth)
}
return signOut(auth);
};
const value = {
currUser,
signInGoogle,
logOut
}
logOut,
};
return (
<AuthContext.Provider value={value}>
{!loading && children}
</AuthContext.Provider>
)
);
}
// custom hook to use the authUserContext and access currUser
export function useAuth() {
return useContext(AuthContext)
}
return useContext(AuthContext);
}