auth_context.js 2.75 KB
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
import { createContext, useCallback, useContext, useEffect, useState } from "react";
한규민's avatar
push    
한규민 committed
2
3
4
5
6
7
import authApi from "../apis/auth.api";
import catchErrors from "../utils/catchErrors";

const AuthContext = createContext({
    error: "",
    loading: false,
Kim, Subin's avatar
Kim, Subin committed
8
    user: { id: 0, role: "user" },
한규민's avatar
push    
한규민 committed
9
10
11
12
13
14
15
16
17
    setUser: () => { },
    login: () => Promise.resolve(false),
    logout: () => { },
    catchErrorAuth: (error, displayError) => { },
});

const AuthProvider = ({ children }) => {
    const [error, setError] = useState("");
    const [loading, setLoading] = useState(false);
Kim, Subin's avatar
Kim, Subin committed
18
19
20
21
22
23
24
25
26
27
28
    const [user, setUser] = useState({ id: 0, role: "user" });

    const getUser = async () => {
        const { id, role } = await authApi.getUser();
        const user = { "id": id, "role": role };
        setUser(user);
    };

    useEffect(() => {
        getUser();
    }, []);
한규민's avatar
push    
한규민 committed
29

한규민's avatar
한규민 committed
30
    const login = useCallback(async (id, password) => {
한규민's avatar
push    
한규민 committed
31
32
33
        try {
            setError("");
            setLoading(true);
한규민's avatar
한규민 committed
34
            const user = await authApi.login(id, password);
한규민's avatar
push    
한규민 committed
35
36
37
38
39
40
41
42
43
44
45
46
47
48
            setUser(user);
            return true;
        } catch (error) {
            catchErrors(error, setError);
            return false;
        } finally {
            setLoading(false);
        }
    }, []);

    const logout = useCallback(async () => {
        try {
            setError("");
            setLoading(true);
Kim, Subin's avatar
Kim, Subin committed
49
50
51
            const user = await authApi.logout();
            setUser(user);
            alert("로그아웃되었습니다.");
한규민's avatar
push    
한규민 committed
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
        } catch (error) {
            catchErrors(error, setError);
        } finally {
            setLoading(false);
        }
    }, []);

    const catchErrorAuth = useCallback(async (error, displayError) => {
        let errorMsg;
        if (error.response) {
            if (typeof error.response.data === "string") {
                errorMsg = error.response.data;
                console.log("Error response:", errorMsg);
            } else {
                const { data } = error.response;
                if (data.redirectUrl) {
                    errorMsg = data.message;
                    console.log("Error response with redirected message:", errorMsg);
                    return await logout();
                }
            }
        } else if (error.request) {
            errorMsg = error.request;
            console.log("Error request:", errorMsg);
        } else {
            errorMsg = error.message;
            console.log("Error message:", errorMsg);
        }
        displayError(errorMsg);
    }, []);

    return (
        <AuthContext.Provider
            value={{ error, loading, user, setUser, login, logout, catchErrorAuth }}
        >
            {children}
        </AuthContext.Provider>
    );
};

const useAuth = () => useContext(AuthContext);

export { AuthProvider, useAuth };