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

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

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

seoyeon's avatar
0727    
seoyeon committed
15
  async function getSetUser(userID) {
우지원's avatar
0726    
우지원 committed
16
17
    try {
      // `/users/${userId}`랑 userId랑 같은지 확인
seoyeon's avatar
0727    
seoyeon committed
18
19
20
21
      console.log('userID',userID)
      const data = await userApi.getUser({id: userID})
      console.log(data)
      setUser(data)
우지원's avatar
0726    
우지원 committed
22
23
24
25
26
27
28
      console.log(user)
    } catch (error) {
      // catchErrors(error, setError)
    }
  }

  useEffect(() => {
seoyeon's avatar
0727    
seoyeon committed
29
30
31
    console.log('예에에에에ㅔ에에')
    getSetUser(userprofile)
  }, [userprofile])
우지원's avatar
0726    
우지원 committed
32

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

export default HomeProfile;