Created
March 5, 2023 21:15
-
-
Save ByteCrak07/dad00319254e1e5c180d5032a551f705 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
createContext, | |
FC, | |
ReactNode, | |
useContext, | |
useEffect, | |
useState, | |
} from "react"; | |
import { useRouter } from "next/router"; | |
import pb from "../lib/pocketbase"; | |
import type { AuthProviderInfo, Record as PbRecord } from "pocketbase"; | |
interface PbUser { | |
id: string; | |
name: string; | |
email: string; | |
username: string; | |
avatarUrl: string; | |
} | |
interface AuthContextType { | |
user: PbUser | null; | |
googleSignIn: () => void; | |
githubSignIn: () => void; | |
setUserData: (user: PbRecord) => void; | |
signOut: () => void; | |
} | |
const AuthContext = createContext<AuthContextType | null>(null); | |
const AuthWrapper: FC<{ children: ReactNode }> = ({ children }) => { | |
const router = useRouter(); | |
const [user, setUser] = useState<PbUser | null>(null); | |
const [googleAuthProvider, setGoogleAuthProvider] = | |
useState<AuthProviderInfo | null>(null); | |
const [githubAuthProvider, setGithubAuthProvider] = | |
useState<AuthProviderInfo | null>(null); | |
useEffect(() => { | |
const initAuth = async () => { | |
const authMethods = await pb | |
.collection("users") | |
.listAuthMethods() | |
.then((methods) => methods) | |
.catch((err) => { | |
console.error(err); | |
}); | |
if (authMethods) | |
for (const provider of authMethods.authProviders) { | |
if (provider.name === "google") setGoogleAuthProvider(provider); | |
if (provider.name === "github") setGithubAuthProvider(provider); | |
} | |
}; | |
initAuth(); | |
if (pb.authStore.model) setUserData(pb.authStore.model as PbRecord); | |
}, []); | |
const setUserData = (pbUser: PbRecord) => { | |
const { id, name, email, username, avatarUrl } = pbUser; | |
setUser({ id, name, email, username, avatarUrl }); | |
}; | |
const googleSignIn = () => { | |
signOut(); | |
localStorage.setItem("provider", JSON.stringify(googleAuthProvider)); | |
const redirectUrl = `${location.origin}/signin`; | |
const url = googleAuthProvider?.authUrl + redirectUrl; | |
router.push(url); | |
}; | |
const githubSignIn = () => { | |
signOut(); | |
localStorage.setItem("provider", JSON.stringify(githubAuthProvider)); | |
const redirectUrl = `${location.origin}/signin`; | |
const url = githubAuthProvider?.authUrl + redirectUrl; | |
router.push(url); | |
}; | |
const signOut = () => { | |
setUser(null); | |
pb.authStore.clear(); | |
}; | |
return ( | |
<AuthContext.Provider | |
value={{ user, googleSignIn, githubSignIn, setUserData, signOut }} | |
> | |
{children} | |
</AuthContext.Provider> | |
); | |
}; | |
export const usePbAuth = () => useContext(AuthContext) as AuthContextType; | |
export default AuthWrapper; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment