-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[김경기] sprint8 #282
The head ref may contain hidden characters: "React-\uAE40\uACBD\uAE30-sprint8"
[김경기] sprint8 #282
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,45 @@ | ||
import React, { useState, useEffect } from "react"; | ||
import { getProducts } from "api"; | ||
import NavBar from "./navBar"; | ||
import ProductList from "./products"; | ||
import Pagination from "./pagination"; | ||
import { getProducts } from "../../api.ts"; | ||
import NavBar from "./navBar.tsx"; | ||
import ProductList from "./products.tsx"; | ||
import Pagination from "./pagination.tsx"; | ||
import styles from "./allProduct.module.css"; | ||
|
||
function AllProducts() { | ||
const [products, setProducts] = useState([]); // 상품 데이터 상태 | ||
const [pageSize, setPageSize] = useState(getPageSize(window.innerWidth)); // 페이지 크기 상태 (화면 크기에 따라 동적으로 변경됨) | ||
const [currentPage, setCurrentPage] = useState(1); // 현재 페이지 상태 | ||
const [orderBy, setOrderBy] = useState("recent"); // 정렬 기준 (최신순) | ||
const [totalItems, setTotalItems] = useState(0); // 전체 상품 개수 상태 (페이징에 사용) | ||
const [keyword, setKeyword] = useState(""); // 검색어 상태 | ||
// Product 타입 정의 | ||
interface Product { | ||
id: string; // 상품 ID | ||
name: string; // 상품 이름 | ||
price: number; // 상품 가격 | ||
favoriteCount: number; // 좋아요 개수 | ||
images: string[]; // 상품 이미지 URL 배열 | ||
} | ||
|
||
// API에서 반환되는 데이터 타입 정의 | ||
interface ProductResponse { | ||
list: Product[]; | ||
totalCount: number; | ||
} | ||
|
||
// 화면 크기 기반으로 페이지 크기 결정 함수 | ||
function getPageSize(width) { | ||
if (width <= 767) { | ||
return 4; // 화면 너비가 768px 미만이면 한 페이지에 4개 | ||
} else if (width <= 1199) { | ||
return 6; // 화면 너비가 768px 이상이면 한 페이지에 6개 | ||
} else { | ||
return 10; // 화면 너비가 1200px 이상이면 한 페이지에 10개 | ||
} | ||
// 페이지 크기 계산 함수의 인수 타입 | ||
function getPageSize(width: number): number { | ||
if (width <= 767) { | ||
return 4; // 화면 너비가 768px 미만이면 한 페이지에 4개 | ||
} else if (width <= 1199) { | ||
return 6; // 화면 너비가 768px 이상이면 한 페이지에 6개 | ||
} else { | ||
return 10; // 화면 너비가 1200px 이상이면 한 페이지에 10개 | ||
} | ||
} | ||
|
||
function AllProducts() { | ||
const [products, setProducts] = useState<Product[]>([]); // 상품 데이터 상태 | ||
const [pageSize, setPageSize] = useState<number>( | ||
getPageSize(window.innerWidth) | ||
); // 페이지 크기 상태 | ||
const [currentPage, setCurrentPage] = useState<number>(1); // 현재 페이지 상태 | ||
const [orderBy, setOrderBy] = useState<string>("recent"); // 정렬 기준 (최신순) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 여기는 그냥 string 이 아닌 "recent" 등과 같이 정해진 string 만 올 수 있기 때문에 그 string 들을 묶은 타입을 만드는 걸 추천드려요! |
||
const [totalItems, setTotalItems] = useState<number>(0); // 전체 상품 개수 상태 | ||
const [keyword, setKeyword] = useState<string>(""); // 검색어 상태 | ||
|
||
// 화면 크기 변경 시 페이지 크기 재조정 (반응형 디자인 처리) | ||
useEffect(() => { | ||
|
@@ -41,7 +58,7 @@ function AllProducts() { | |
useEffect(() => { | ||
const fetchProducts = async () => { | ||
try { | ||
const result = await getProducts({ | ||
const result: ProductResponse = await getProducts({ | ||
page: currentPage, // 현재 페이지 | ||
pageSize, // 페이지 크기 (한 페이지당 표시할 상품 개수) | ||
orderBy, // 정렬 기준 (최신순 등) | ||
|
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요기 사용하는 수들을 묶어서 object 로 만들어도 좋을 거 같아요!