forked from muhamadzolfaghari/ladder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthContext.tsx
48 lines (39 loc) · 1.21 KB
/
AuthContext.tsx
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
// components/AuthContext.tsx
"use client";
import { createContext, useState, useContext, ReactNode, useEffect } from "react";
interface AuthContextProps {
user: { name: string; email: string } | null;
login: (name: string, email: string) => void;
logout: () => void;
}
const AuthContext = createContext<AuthContextProps | undefined>(undefined);
export const AuthProvider = ({ children }: { children: ReactNode }) => {
const [user, setUser] = useState<{ name: string; email: string } | null>(null);
useEffect(() => {
const storedUser = localStorage.getItem("user");
if (storedUser) {
setUser(JSON.parse(storedUser));
}
}, []);
const login = (name: string, email: string) => {
const userData = { name, email };
setUser(userData);
localStorage.setItem("user", JSON.stringify(userData));
};
const logout = () => {
setUser(null);
localStorage.removeItem("user");
};
return (
<AuthContext.Provider value={{ user, login, logout }}>
{children}
</AuthContext.Provider>
);
};
export const useAuth = () => {
const context = useContext(AuthContext);
if (!context) {
throw new Error("useAuth must be used within an AuthProvider");
}
return context;
};