HomeProfile.js 1.48 KB
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
import { Link } from "react-router-dom";
우지원's avatar
0726    
우지원 committed
2
3
import { useState, useEffect } from "react";
import userApi from "../../apis/user.api";
우지원's avatar
0728    
우지원 committed
4
import catchErrors from "../../context/catchError";
우지원's avatar
0726    
우지원 committed
5

seoyeon's avatar
0727    
seoyeon committed
6
const userprofile = localStorage.getItem("user");
우지원's avatar
0726    
우지원 committed
7
const INIT_USER = {
seoyeon's avatar
0727    
seoyeon committed
8
  id: userprofile,
이재연's avatar
d    
이재연 committed
9
  email: '',
우지원's avatar
0726    
우지원 committed
10
11
  img: '',
}
우지원's avatar
0628    
우지원 committed
12

Kim, Chaerin's avatar
Kim, Chaerin committed
13
const HomeProfile = () => {
우지원's avatar
0726    
우지원 committed
14
15
  const [user, setUser] = useState(INIT_USER)

seoyeon's avatar
0727    
seoyeon committed
16
  async function getSetUser(userID) {
우지원's avatar
0726    
우지원 committed
17
    try {
우지원's avatar
0728    
우지원 committed
18
      // console.log('userID', userID)
이재연's avatar
이재연 committed
19
      const data = await userApi.getUser(userID)
우지원's avatar
0728    
우지원 committed
20
      // console.log(data)
seoyeon's avatar
0727    
seoyeon committed
21
      setUser(data)
우지원's avatar
0728    
우지원 committed
22
      // console.log(user)
우지원's avatar
0726    
우지원 committed
23
24
25
26
27
28
    } catch (error) {
      // catchErrors(error, setError)
    }
  }

  useEffect(() => {
seoyeon's avatar
0727    
seoyeon committed
29
30
    getSetUser(userprofile)
  }, [userprofile])
우지원's avatar
0726    
우지원 committed
31

Kim, Chaerin's avatar
Kim, Chaerin committed
32
  return (
이재연's avatar
오잉    
이재연 committed
33
    <Link to={`/profile/${user.id}`} className="text-decoration-none text-dark">
Kim, Chaerin's avatar
Kim, Chaerin committed
34
35
36
      <form className="flex-column align-items-center justify-content-center m-2">
        <div className="d-flex justify-content-center">
          <img
이재연's avatar
이재연 committed
37
            src={`/uploads/${user.img}`}
Kim, Chaerin's avatar
Kim, Chaerin committed
38
39
40
41
42
            className="rounded-circle"
            style={{
              width: "157px",
              height: "157px",
            }}
이재연's avatar
오잉    
이재연 committed
43
            // value={user.img}
Kim, Chaerin's avatar
Kim, Chaerin committed
44
45
          />
        </div>
이재연's avatar
d    
이재연 committed
46
        <h1 className="d-flex justify-content-center"> {user.email} </h1>
우지원's avatar
0726    
우지원 committed
47
        <h2 className="d-flex justify-content-center"> #{user.id} </h2>
Kim, Chaerin's avatar
Kim, Chaerin committed
48
49
50
51
52
53
      </form>
      <div
        style={{ backgroundColor: "#262626", width: "auto", height: "2px" }}
      />
    </Link>
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
54
55
56
};

export default HomeProfile;