HomeProfile.js 1.47 KB
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
import { Link } from "react-router-dom";
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
2
3
4
5
6
7
8
9
10
11
import { useState, useEffect } from "react";
import userApi from "../../apis/user.api";
import catchErrors from "../../context/catchError";

const userprofile = localStorage.getItem("user");
const INIT_USER = {
  id: userprofile,
  email: '',
  img: '',
}
우지원's avatar
0628    
우지원 committed
12

Kim, Chaerin's avatar
Kim, Chaerin committed
13
const HomeProfile = () => {
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  const [user, setUser] = useState(INIT_USER)

  async function getSetUser(userID) {
    try {
      console.log('userID', userID)
      const data = await userApi.getUser(userID)
      console.log(data)
      setUser(data)
      // console.log(user)
    } catch (error) {
      // catchErrors(error, setError)
    }
  }

  useEffect(() => {
    getSetUser(userprofile)
  }, [userprofile])

Kim, Chaerin's avatar
Kim, Chaerin committed
32
  return (
Kim, Chaerin's avatar
merge19    
Kim, Chaerin 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
Kim, Chaerin's avatar
merge19    
Kim, Chaerin 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",
            }}
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
43
            // value={user.img}
Kim, Chaerin's avatar
Kim, Chaerin committed
44
45
          />
        </div>
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
46
47
        <h1 className="d-flex justify-content-center"> {user.email} </h1>
        <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;