File size: 3,408 Bytes
018dc4e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
import { createContext, useState, useEffect, useContext, ReactNode } from "react";
import { supabase } from "@/integrations/supabase/client";
import { Session, User } from "@supabase/supabase-js";
type AuthContextType = {
session: Session | null;
user: User | null;
loading: boolean;
signIn: (email: string, password: string) => Promise<{
error: Error | null;
success: boolean;
}>;
signUp: (email: string, password: string) => Promise<{
error: Error | null;
success: boolean;
}>;
signInWithGoogle: () => Promise<{
error: Error | null;
success: boolean;
}>;
signInWithGitHub: () => Promise<{
error: Error | null;
success: boolean;
}>;
signOut: () => Promise<void>;
};
const AuthContext = createContext<AuthContextType | undefined>(undefined);
export const AuthProvider = ({ children }: { children: ReactNode }) => {
const [session, setSession] = useState<Session | null>(null);
const [user, setUser] = useState<User | null>(null);
const [loading, setLoading] = useState(true);
useEffect(() => {
// Set up auth state listener FIRST
const { data: { subscription } } = supabase.auth.onAuthStateChange(
(event, session) => {
setSession(session);
setUser(session?.user ?? null);
}
);
// THEN check for existing session
supabase.auth.getSession().then(({ data: { session } }) => {
setSession(session);
setUser(session?.user ?? null);
setLoading(false);
});
return () => subscription.unsubscribe();
}, []);
const signIn = async (email: string, password: string) => {
try {
const { error } = await supabase.auth.signInWithPassword({
email,
password,
});
return { error, success: !error };
} catch (error) {
return { error: error as Error, success: false };
}
};
const signUp = async (email: string, password: string) => {
try {
const { error } = await supabase.auth.signUp({
email,
password,
});
return { error, success: !error };
} catch (error) {
return { error: error as Error, success: false };
}
};
const signInWithGoogle = async () => {
try {
const { data, error } = await supabase.auth.signInWithOAuth({
provider: 'google',
options: {
queryParams: {
access_type: 'offline',
prompt: 'consent',
},
},
});
return { error, success: !error };
} catch (error) {
return { error: error as Error, success: false };
}
};
const signInWithGitHub = async () => {
try {
const { data, error } = await supabase.auth.signInWithOAuth({
provider: 'github',
});
return { error, success: !error };
} catch (error) {
return { error: error as Error, success: false };
}
};
const signOut = async () => {
await supabase.auth.signOut();
};
return (
<AuthContext.Provider
value={{
session,
user,
loading,
signIn,
signUp,
signInWithGoogle,
signInWithGitHub,
signOut,
}}
>
{children}
</AuthContext.Provider>
);
};
export const useAuth = () => {
const context = useContext(AuthContext);
if (context === undefined) {
throw new Error("useAuth must be used within an AuthProvider");
}
return context;
};
|