korrupt10n
BABetter Auth
•Created by korrupt10n on 3/28/2025 in #help
Anyone have an idea what this bug is about
this? or the backend config?
8 replies
BABetter Auth
•Created by korrupt10n on 3/28/2025 in #help
Anyone have an idea what this bug is about
import { useContext, createContext, useState, useEffect } from "react";
import { authClient } from "./lib/auth-client";
import { ReactNode } from "@tanstack/react-router";
export type getSession = Awaited<ReturnType<typeof authClient.getSession>>;
type googleSignIn = Awaited<ReturnType<typeof authClient.signIn.social>>;
type AuthContextType = {
session: getSession;
signIn: googleSignIn;
};
const AuthContext = createContext<AuthContextType | undefined>(undefined);
export const AuthProvider = ({ children }: { children: ReactNode }) => {
const [session, setSession] = useState<getSession | undefined>(undefined);
const [loading, setLoading] = useState(true);
useEffect(() => {
const fetchSession = async (): Promise<getSession> => {
try {
const data = await authClient.getSession();
if (data.data) {
console.log(data.data?.user);
setSession(data);
setLoading(false);
}
} catch (e) {
throw new Error("could not grab session");
} finally {
setLoading(false);
}
};
fetchSession();
}, []);
const googleSignIn = async () => {
await authClient.signIn.social({
provider: "google",
callbackURL: import.meta.env.VITE_APP_BASE_URL,
});
};
return (
<AuthContext.Provider value={{ session, signIn: googleSignIn }}>
{loading ? (
<div className="text-red border-1 border-white flex flex-row gap-2 items-center justify-center h-screen">
<div className="h-6 w-6 animate-spin rounded-full border-b-2 border-current" />
<div>Loading your data ...</div>
</div>
) : (
children
)}
</AuthContext.Provider>
);
};
export const useAuth = (): AuthContextType => {
const context = useContext(AuthContext);
if (!context) {
throw new Error("You need to provide an authentication context");
}
return context;
};
8 replies
BABetter Auth
•Created by korrupt10n on 3/28/2025 in #help
Anyone have an idea what this bug is about
does not seem to change anything same issue
8 replies
BABetter Auth
•Created by korrupt10n on 3/24/2025 in #help
authClient.GetSessions() returning null for user data and session data
I fixed this. Issue was with the cookie settings , specifically domain settings thats why it was not being returned Anyone let me know if you have a similar issue I can try help
6 replies
BABetter Auth
•Created by korrupt10n on 3/24/2025 in #help
authClient.GetSessions() returning null for user data and session data
is anyone able to help with this?
6 replies
BABetter Auth
•Created by saze on 2/25/2025 in #bug-reports
getSession returning null in dev mode
this seems to be a recurring issue
8 replies