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
|
import {
createContext,
type ReactNode,
useContext,
useEffect,
useState,
} from "react";
import { useMutation, useQuery } from "urql";
import {
GetCurrentUserDocument,
type GetCurrentUserQuery,
LoginDocument,
LogoutDocument,
} from "../graphql/generated/graphql";
type User = NonNullable<GetCurrentUserQuery["currentUser"]>;
type LoginResult = { success: true } | { success: false; error: string };
interface AuthContextType {
user: User | null;
isLoading: boolean;
error: string | null;
login: (username: string, password: string) => Promise<LoginResult>;
logout: () => Promise<void>;
}
const AuthContext = createContext<AuthContextType | undefined>(undefined);
export function AuthProvider({ children }: { children: ReactNode }) {
const [user, setUser] = useState<User | null>(null);
const [isLoading, setIsLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const [, executeLogin] = useMutation(LoginDocument);
const [, executeLogout] = useMutation(LogoutDocument);
const [currentUserResult, reexecuteCurrentUser] = useQuery({
query: GetCurrentUserDocument,
});
// Update user from CurrentUser query
useEffect(() => {
if (currentUserResult.data?.currentUser) {
setUser(currentUserResult.data.currentUser);
setError(null);
} else {
setUser(null);
}
if (currentUserResult.error) {
setError(currentUserResult.error.message);
}
if (!currentUserResult.fetching) {
setIsLoading(false);
}
}, [
currentUserResult.data,
currentUserResult.fetching,
currentUserResult.error,
]);
const login = async (
username: string,
password: string,
): Promise<LoginResult> => {
setError(null);
try {
const result = await executeLogin({ username, password });
if (result.error) {
const errorMessage =
result.error.graphQLErrors[0]?.message || result.error.message;
setError(errorMessage);
return { success: false, error: errorMessage };
}
if (result.data?.login?.user) {
// Refetch CurrentUser query to ensure session is established
reexecuteCurrentUser({ requestPolicy: "network-only" });
return { success: true };
}
const errorMessage = "Invalid username or password";
setError(errorMessage);
return { success: false, error: errorMessage };
} catch (error) {
const errorMessage =
error instanceof Error ? error.message : "An unknown error occurred";
console.error("Login failed:", error);
setError(errorMessage);
return { success: false, error: errorMessage };
}
};
const logout = async () => {
try {
await executeLogout({});
// Refetch CurrentUser query to ensure session is cleared
reexecuteCurrentUser({ requestPolicy: "network-only" });
} catch (error) {
console.error("Logout failed:", error);
// Even on error, refetch to get the latest state
reexecuteCurrentUser({ requestPolicy: "network-only" });
}
};
return (
<AuthContext.Provider value={{ user, isLoading, error, login, logout }}>
{children}
</AuthContext.Provider>
);
}
export function useAuth() {
const context = useContext(AuthContext);
if (context === undefined) {
throw new Error("useAuth must be used within an AuthProvider");
}
return context;
}
|