intopost.tsx 3.53 KB
Newer Older
Lee Soobeom's avatar
Lee Soobeom committed
1
import React, { MouseEvent, useEffect, useState } from "react";
Lee Soobeom's avatar
Lee Soobeom committed
2
import { useLocation, useNavigate, Link, Outlet } from "react-router-dom";
Lee Soobeom's avatar
Lee Soobeom committed
3
import { catchErrors } from "../helpers";
Lee Soobeom's avatar
Lee Soobeom committed
4
import { postApi } from "../apis";
Yoon, Daeki's avatar
Yoon, Daeki committed
5
import { PostType } from "../types";
Lee Soobeom's avatar
Lee Soobeom committed
6

Lee Soobeom's avatar
Lee Soobeom committed
7
export interface PostState {
Yoon, Daeki's avatar
Yoon, Daeki committed
8
  state: PostType;
Lee Soobeom's avatar
Lee Soobeom committed
9
10
11
}

export function IntoPost() {
Lee Soobeom's avatar
Lee Soobeom committed
12
  const [posts, setPosts] = useState<PostType>();
Lee Soobeom's avatar
Lee Soobeom committed
13
14
  const location = useLocation() as PostState;
  const post = location.state;
Lee Soobeom's avatar
Lee Soobeom committed
15
  const navigate = useNavigate();
Lee Soobeom's avatar
Lee Soobeom committed
16

Lee Soobeom's avatar
Lee Soobeom committed
17
18
19
20
21
  const [loading, setLoading] = useState(false);
  const [error, setError] = useState("");
  const [addSuccess, setAddSuccess] = useState(false);
  const [delSuccess, setDelSuccess] = useState(false);

Lee Soobeom's avatar
Lee Soobeom committed
22
23
24
25
26
27
  // console.log("post.file", post.file);

  useEffect(() => {
    setPosts(post);
  }, []);

Lee Soobeom's avatar
Lee Soobeom committed
28
  const handleDeleteClick = async (event: MouseEvent<HTMLButtonElement>) => {
Lee Soobeom's avatar
Lee Soobeom committed
29
30
31
32
    try {
      if (confirm("삭제하시겠습니까?") == true) {
        const postId = event.currentTarget.id;
        const res = await postApi.deletePost(postId);
Lee Soobeom's avatar
Lee Soobeom committed
33
        navigate("/board");
Lee Soobeom's avatar
Lee Soobeom committed
34
35
36
37
38
39
40
41
        console.log("delete post", res);
      } else {
        return false;
      }
    } catch (error) {
      console.log("에러발생");
      catchErrors(error, setError);
    }
Lee Soobeom's avatar
Lee Soobeom committed
42
43
  };

Lee Soobeom's avatar
Lee Soobeom committed
44
  return (
Lee Soobeom's avatar
Lee Soobeom committed
45
46
47
48
    <div className="flex flex-col shadow-lg bg-white rounded px-8 py-4">
      <div className="text-3xl font-semibold md:text-4xl">
        [{post.city}] / [{post.theme}] Travel Report
      </div>
Kim, MinGyu's avatar
Kim, MinGyu committed
49
50
      <div className="flex h-8 gap-x-1 place-content-end place-items-center">
        <button
Lee Soobeom's avatar
Lee Soobeom committed
51
          id={posts?._id}
Kim, MinGyu's avatar
Kim, MinGyu committed
52
          onClick={handleDeleteClick}
Lee Soobeom's avatar
Lee Soobeom committed
53
          className=" whitespace-nowrap flex border-2 border-sky-100 place-self-center h-6 w-8 text-xs text-center transition delay-150 bg-white-400 hover:-translate-y-1 hover:bg-red-300 duration-300"
Kim, MinGyu's avatar
Kim, MinGyu committed
54
55
56
        >
          삭제
        </button>
Lee Soobeom's avatar
Lee Soobeom committed
57
        <Link to="/edit" state={posts}>
Lee Soobeom's avatar
Lee Soobeom committed
58
          <button className="whitespace-nowrap flex border-2 border-sky-100 place-self-center h-6 w-8 text-xs transition delay-150 bg-white-400 hover:-translate-y-1 hover:bg-sky-300 duration-300">
Kim, MinGyu's avatar
Kim, MinGyu committed
59
60
61
62
            수정
          </button>
        </Link>
      </div>
Lee Soobeom's avatar
Lee Soobeom committed
63
      <div className="flex h-10 border-t-2 border-sky-500 items-center text-2xl font-medium md:text-2xl">
Lee Soobeom's avatar
Lee Soobeom committed
64
        {posts?.title}
Kim, MinGyu's avatar
Kim, MinGyu committed
65
      </div>
Lee Soobeom's avatar
Lee Soobeom committed
66
67
      <div className="flex h-10 items-center border-t-2 border-sky-200 md:flex-row justify-between bg-slate-50 text-sm divide-x divide-slate-300">
        <div className="flex whitespace-nowrap px-0.5">
Lee Soobeom's avatar
Lee Soobeom committed
68
          작성자: {posts?.user.name}
Lee Soobeom's avatar
Lee Soobeom committed
69
        </div>
Kim, MinGyu's avatar
Kim, MinGyu committed
70
71

        <div className="flex divide-x divide-slate-300 ">
Lee Soobeom's avatar
Lee Soobeom committed
72
          <div className="flex basis-1/2 whitespace-nowrap px-0.5 md:px-2">
Lee Soobeom's avatar
Lee Soobeom committed
73
            작성일 : {posts?.date.slice(0, 10)}
Kim, MinGyu's avatar
Kim, MinGyu committed
74
          </div>
Lee Soobeom's avatar
Lee Soobeom committed
75
          <div className="md:flex hidden md:whitespace-nowrap md:px-2 ">
Lee Soobeom's avatar
Lee Soobeom committed
76
77
78
            {" "}
            {posts?.city}
          </div>
Lee Soobeom's avatar
Lee Soobeom committed
79
          <div className="md:flex hidden md:whitespace-nowrap md:px-2">
Lee Soobeom's avatar
Lee Soobeom committed
80
81
82
83
            {" "}
            {posts?.theme}
          </div>
          <div className="flex whitespace-nowrap px-0.5 md:px-2">
Lee Soobeom's avatar
Lee Soobeom committed
84
            조회수 : {posts?.counts}
Lee Soobeom's avatar
Lee Soobeom committed
85
86
          </div>
        </div>
Lee Soobeom's avatar
Lee Soobeom committed
87
      </div>
Kim, MinGyu's avatar
Kim, MinGyu committed
88
      <div className="flex border-t-2 border-sky-200 h-44 p-2 overflow-auto mb-5 ">
Lee Soobeom's avatar
Lee Soobeom committed
89
        {posts?.file?.map((file, i) => (
Kim, MinGyu's avatar
Kim, MinGyu committed
90
91
92
93
94
95
96
97
          <img
            key={i}
            src={"http://localhost:3000/images/" + file.newfilename}
            width={200}
            height={200}
          />
        ))}
      </div>
Lee Soobeom's avatar
Lee Soobeom committed
98
      <div className="border-b-2 border-sky-500 h-44 mb-10">{posts?.text}</div>
Lee Soobeom's avatar
Lee Soobeom committed
99
100
101
    </div>
  );
}