AuthContext.jsx
1.56 KB
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
import React, { createContext, useContext, useState, useEffect } from 'react';
/**
* Authentication Context for user login/logout functionality
*/
const AuthContext = createContext();
/**
* AuthProvider component to manage authentication state
*
* @param {Object} props - Component props
* @param {ReactNode} props.children - Child elements
* @returns {JSX.Element} AuthProvider component
*/
export const AuthProvider = ({ children }) => {
const [currentUser, setCurrentUser] = useState(null);
const [loading, setLoading] = useState(true);
// Check for saved user on mount
useEffect(() => {
const savedUser = localStorage.getItem('currentUser');
if (savedUser) {
setCurrentUser(JSON.parse(savedUser));
}
setLoading(false);
}, []);
// Login function
const login = (userData) => {
setCurrentUser(userData);
localStorage.setItem('currentUser', JSON.stringify(userData));
return true;
};
// Logout function
const logout = () => {
setCurrentUser(null);
localStorage.removeItem('currentUser');
};
// Context value
const value = {
currentUser,
loading,
login,
logout
};
return (
<AuthContext.Provider value={value}>
{!loading && children}
</AuthContext.Provider>
);
};
/**
* Hook to use auth functionality throughout the app
* @returns {Object} Auth context value
*/
export const useAuth = () => {
const context = useContext(AuthContext);
if (!context) {
throw new Error("useAuth must be used within an AuthProvider");
}
return context;
};
export default AuthContext;