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
|
import {
createContext,
ReactNode,
useContext,
useEffect,
useState,
} from "react";
import { apiClient } from "../api/client";
type AuthState = {
isLoading: boolean;
isAuthenticated: boolean;
};
type AuthContextType = AuthState & {
signIn: (
email: string,
password: string,
) => Promise<{ success: boolean; reason?: string }>;
signInWithGoogle: (
idToken: string,
) => Promise<{ success: boolean; reason?: string }>;
signUp: (
email: string,
password: string,
) => Promise<{ success: boolean; reason?: string }>;
signOut: () => Promise<void>;
};
const AuthContext = createContext<AuthContextType | null>(null);
export function AuthProvider({ children }: { children: ReactNode }) {
const [state, setState] = useState<AuthState>({
isLoading: true,
isAuthenticated: false,
});
useEffect(() => {
// Check if user is already authenticated
const checkAuth = async () => {
await apiClient.initialize();
setState({
isLoading: false,
isAuthenticated: apiClient.isAuthenticated(),
});
};
checkAuth();
}, []);
const signIn = async (email: string, password: string) => {
const result = await apiClient.signIn(email, password);
if (result.success) {
setState({ isLoading: false, isAuthenticated: true });
}
return { success: result.success, reason: result.reason };
};
const signUp = async (email: string, password: string) => {
const result = await apiClient.signUp(email, password);
if (result.success) {
setState({ isLoading: false, isAuthenticated: true });
}
return { success: result.success, reason: result.reason };
};
const signInWithGoogle = async (idToken: string) => {
const result = await apiClient.signInWithGoogle(idToken);
if (result.success) {
setState({ isLoading: false, isAuthenticated: true });
}
return { success: result.success, reason: result.reason };
};
const signOut = async () => {
await apiClient.signOut();
setState({ isLoading: false, isAuthenticated: false });
};
return (
<AuthContext.Provider
value={{ ...state, signIn, signInWithGoogle, signUp, signOut }}
>
{children}
</AuthContext.Provider>
);
}
export function useAuth() {
const context = useContext(AuthContext);
if (!context) {
throw new Error("useAuth must be used within an AuthProvider");
}
return context;
}
|