body.tsx 2.43 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import React, { useEffect, MouseEvent, useState } from "react";
import { Outlet, useSearchParams } from "react-router-dom";
import Theme from "./theme";
import Citylist from "../Pages/citylist";
import { getPicure } from "../Pages/pic";
import Pagination from "../Pages/picpagination";

const initSearchParams = { theme: "", city: "" };

export default function Body() {
  let limit = 15;
  const [searchParams, setSearchParams] = useSearchParams(initSearchParams);
  const [page, setPage] = useState(1);
  const offset = (page - 1) * limit;

  let getPics = getPicure();

  useEffect(() => {
    console.log(searchParams.get("theme"), searchParams.get("city"));
    // setSearchParams(searchParams)
  }, []);

  const themeHandleClick = (event: MouseEvent<HTMLButtonElement>) => {
    console.log(`theme id= ${event.currentTarget.id}`);
    setSearchParams({
      ...Object.fromEntries(searchParams),
      theme: event.currentTarget.id,
    });
  };

  const cityHandleClick = (event: MouseEvent<HTMLButtonElement>) => {
    console.log(`city id= ${event.currentTarget.id}`);
    setSearchParams({
      ...Object.fromEntries(searchParams),
      city: event.currentTarget.id,
    });
  };

  let themechange = searchParams.get("theme");
  let citylistchange = searchParams.get("city");

  const Idpics = getPics.filter((p) => {
    return (
      (p.themeid == themechange && p.cityid == citylistchange) ||
      (p.themeid == themechange && citylistchange == "") ||
      (themechange == "" && p.cityid == citylistchange) ||
      (themechange == "" && citylistchange == "")
    );
  });

  return (
    <div className="flex flex-col px-1 py-1">
      <Theme handleClick={themeHandleClick} />
      <div className="flex flex-col md:flex-row py-10 ">
        <Citylist handleClick={cityHandleClick} />
백승민's avatar
백승민 committed
56
        <div className=" md:mr-10 md:basis-4/5 grid grid-rows-3 grid-cols-5">
57
58
59
          {Idpics.slice(offset, offset + limit).map((pic, index: number) => (
            <div
              className="m-1 shrink-0 bg-gray-200 rounded overflow-hidden shadow-md"
백승민's avatar
백승민 committed
60
              key={index} 
61
62
63
64
65
66
67
            >
              <img
                src={pic.url}
                className="w-full h-10 md:h-20 object-center"
              />
              <p className="text-center text-xs">{pic.name}</p>
            </div>
백승민's avatar
백승민 committed
68
69
          ))} 
        <Pagination total={Idpics.length} page={page} setPage={setPage} />
70
71
        </div>
      </div>
백승민's avatar
백승민 committed
72
      
73
74
75
76
77
      <Outlet />
    </div>
    // Body Page
  );
}