Spaces:
Running
Running
File size: 4,261 Bytes
27127dd |
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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
import { createContext, ReactNode, useContext } from "react";
import { useQuery, useMutation } from "@tanstack/react-query";
import { getQueryFn, queryClient } from "@/lib/queryClient";
import { useToast } from "@/hooks/use-toast";
interface User {
id: number;
username: string;
fullName?: string | null;
location?: string | null;
interests?: string[] | null;
profession?: string | null;
pets?: string | null;
systemContext?: string | null;
}
type AuthContextType = {
user: User | null;
isLoading: boolean;
error: Error | null;
login: () => Promise<void>;
logout: () => Promise<void>;
loginMutation: any;
registerMutation: any;
};
export const AuthContext = createContext<AuthContextType | null>(null);
function loginWithReplit() {
const h = 500;
const w = 350;
const left = screen.width / 2 - w / 2;
const top = screen.height / 2 - h / 2;
return new Promise<void>((resolve) => {
const authWindow = window.open(
`https://replit.com/auth_with_repl_site?domain=${location.host}`,
"_blank",
`modal=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=${w},height=${h},top=${top},left=${left}`
);
window.addEventListener("message", function authComplete(e) {
if (e.data !== "auth_complete") {
return;
}
window.removeEventListener("message", authComplete);
authWindow?.close();
resolve();
});
});
}
export function AuthProvider({ children }: { children: ReactNode }) {
const { toast } = useToast();
const {
data: user,
error,
isLoading,
} = useQuery<User | null, Error>({
queryKey: ["/api/user"],
queryFn: getQueryFn({ on401: "returnNull" }),
retry: false,
});
const loginMutation = useMutation({
mutationFn: async () => {
await loginWithReplit();
const res = await fetch("/api/auth/replit");
if (!res.ok) {
throw new Error("Authentication failed");
}
return res.json();
},
onSuccess: (userData) => {
queryClient.setQueryData(["/api/user"], userData);
toast({
title: "Welcome!",
description: "You've successfully logged in.",
});
},
onError: (error: Error) => {
toast({
title: "Login failed",
description: error.message,
variant: "destructive",
});
},
});
const registerMutation = useMutation({
mutationFn: async () => {
await loginWithReplit();
const res = await fetch("/api/auth/replit");
if (!res.ok) {
throw new Error("Registration failed");
}
return res.json();
},
onSuccess: (userData) => {
queryClient.setQueryData(["/api/user"], userData);
toast({
title: "Welcome!",
description: "Your account has been created successfully.",
});
},
onError: (error: Error) => {
toast({
title: "Registration failed",
description: error.message,
variant: "destructive",
});
},
});
const logoutMutation = useMutation({
mutationFn: async () => {
const res = await fetch("/api/logout", {
method: "POST",
credentials: "include",
});
if (!res.ok) {
throw new Error("Logout failed");
}
// Force a full page reload to clear Replit auth state
window.location.href = "/auth";
return null;
},
onSuccess: () => {
queryClient.clear();
queryClient.removeQueries();
queryClient.setQueryData(["/api/user"], null);
},
onError: (error: Error) => {
toast({
title: "Logout failed",
description: error.message,
variant: "destructive",
});
},
});
return (
<AuthContext.Provider
value={{
user: user || null,
isLoading,
error,
login: loginMutation.mutateAsync,
logout: logoutMutation.mutateAsync,
loginMutation,
registerMutation,
}}
>
{children}
</AuthContext.Provider>
);
}
export function useAuth() {
const context = useContext(AuthContext);
if (!context) {
throw new Error("useAuth must be used within an AuthProvider");
}
return context;
}
|