From dc034d97f6fdbf3edae94116eaa2d7f57f2022ae Mon Sep 17 00:00:00 2001 From: meem3443 Date: Fri, 20 Jun 2025 16:06:05 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EA=B3=BC=EC=A0=9C=EC=99=84=EB=A3=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.json | 7 --- .gitignore | 41 ------------- package-lock.json | 4 +- src/app/api/search/route.ts | 27 --------- src/app/checkout/page.tsx | 21 ------- src/app/favicon.ico | Bin 25931 -> 0 bytes src/app/globals.css | 71 ---------------------- src/app/layout.tsx | 34 ----------- src/app/mypage/page.tsx | 14 ----- src/app/page.tsx | 22 ------- src/app/search/layout.tsx | 14 ----- src/app/search/page.tsx | 30 ---------- src/component/layout/Content.tsx | 20 ------- src/component/layout/Footer.tsx | 17 ------ src/component/layout/Header.tsx | 31 ---------- src/component/search/SearchInput.tsx | 43 -------------- src/component/shopping/CartList.tsx | 71 ---------------------- src/component/shopping/ProductCard.tsx | 78 ------------------------- src/component/shopping/ProductCart.tsx | 34 ----------- src/component/shopping/ProductList.tsx | 22 ------- src/context/SearchContext.tsx | 40 ------------- src/context/ThemeContext.tsx | 9 --- src/context/UserContext.tsx | 41 ------------- src/interface/Theme.ts | 4 -- src/types/Product.ts | 16 ----- 25 files changed, 2 insertions(+), 709 deletions(-) delete mode 100644 .eslintrc.json delete mode 100644 .gitignore delete mode 100644 src/app/api/search/route.ts delete mode 100644 src/app/checkout/page.tsx delete mode 100644 src/app/favicon.ico delete mode 100644 src/app/globals.css delete mode 100644 src/app/layout.tsx delete mode 100644 src/app/mypage/page.tsx delete mode 100644 src/app/page.tsx delete mode 100644 src/app/search/layout.tsx delete mode 100644 src/app/search/page.tsx delete mode 100644 src/component/layout/Content.tsx delete mode 100644 src/component/layout/Footer.tsx delete mode 100644 src/component/layout/Header.tsx delete mode 100644 src/component/search/SearchInput.tsx delete mode 100644 src/component/shopping/CartList.tsx delete mode 100644 src/component/shopping/ProductCard.tsx delete mode 100644 src/component/shopping/ProductCart.tsx delete mode 100644 src/component/shopping/ProductList.tsx delete mode 100644 src/context/SearchContext.tsx delete mode 100644 src/context/ThemeContext.tsx delete mode 100644 src/context/UserContext.tsx delete mode 100644 src/interface/Theme.ts delete mode 100644 src/types/Product.ts diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 2de9271..0000000 --- a/.eslintrc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "extends": ["next/core-web-vitals", "next/typescript", "prettier"], - "rules": { - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-unused-vars": "off" - } -} diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 5ef6a52..0000000 --- a/.gitignore +++ /dev/null @@ -1,41 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.* -.yarn/* -!.yarn/patches -!.yarn/plugins -!.yarn/releases -!.yarn/versions - -# testing -/coverage - -# next.js -/.next/ -/out/ - -# production -/build - -# misc -.DS_Store -*.pem - -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* -.pnpm-debug.log* - -# env files (can opt-in for committing if needed) -.env* - -# vercel -.vercel - -# typescript -*.tsbuildinfo -next-env.d.ts diff --git a/package-lock.json b/package-lock.json index 22c80ad..0b88957 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "cnu-next-week02", + "name": "cnu-next", "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "cnu-next-week02", + "name": "cnu-next", "version": "0.1.0", "dependencies": { "next": "15.3.3", diff --git a/src/app/api/search/route.ts b/src/app/api/search/route.ts deleted file mode 100644 index 84703a0..0000000 --- a/src/app/api/search/route.ts +++ /dev/null @@ -1,27 +0,0 @@ -// app/api/search/route.ts -import { NextResponse } from "next/server"; // API 응답 처리 - -// GET 요청 처리 -export async function GET(request: Request) { - const { searchParams } = new URL(request.url); // request.url에서 searchParams를 추출해 query 값을 가져온다 - const query = searchParams.get("query"); // ex. /api/search?query=하리보 → query = "하리보" - - if (!query) { - return NextResponse.json({ error: "query 없음" }, { status: 400 }); - } - - const res = await fetch( - `https://openapi.naver.com/v1/search/shop.json?query=${encodeURIComponent( - query - )}`, - { - headers: { - "X-Naver-Client-Id": process.env.NAVER_CLIENT_ID!, - "X-Naver-Client-Secret": process.env.NAVER_CLIENT_SECRET!, - }, - } - ); - - const data = await res.json(); - return NextResponse.json(data); -} diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx deleted file mode 100644 index 0d40153..0000000 --- a/src/app/checkout/page.tsx +++ /dev/null @@ -1,21 +0,0 @@ -// CheckoutPage -import { useState } from "react"; -import { ProductItem } from "@/types/Product"; - -interface CheckoutItem { - product: ProductItem; - quantity: number; -} -// 과제 3 -export default function CheckoutPage() { - const [items, setItems] = useState([]); - // 3.1. 결제하기 구현 - return ( -
-

✅ 결제가 완료되었습니다!

- {/* 3.1. 결제하기 구현 */} -
- {/* 3.2. 홈으로 가기 버튼 구현 */} -
- ); -} diff --git a/src/app/favicon.ico b/src/app/favicon.ico deleted file mode 100644 index 718d6fea4835ec2d246af9800eddb7ffb276240c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25931 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 LrJugUA?W`A8`#=m diff --git a/src/app/globals.css b/src/app/globals.css deleted file mode 100644 index 4e1373b..0000000 --- a/src/app/globals.css +++ /dev/null @@ -1,71 +0,0 @@ -@import "tailwindcss"; - -/* global.css */ - -.page-container { - max-width: 800px; - margin: 40px auto; - border-radius: 8px; - overflow: hidden; - box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); - font-family: Arial, sans-serif; -} - -.header { - padding: 20px; - font-size: 24px; - font-weight: bold; - text-align: center; -} - -.content { - padding: 20px; - min-height: 150px; - font-size: 16px; - text-align: center; -} - -.footer { - padding: 20px; - text-align: center; -} - -.toggle-button { - margin-top: 10px; - padding: 8px 16px; - border: none; - border-radius: 4px; - cursor: pointer; -} - -/* 다크 테마 */ -.dark-bg { - background-color: #222; - color: #fff; -} - -.dark-content { - background-color: #333; - color: #eee; -} - -.dark-button { - background-color: #444; - color: #fff; -} - -/* 라이트 테마 */ -.light-bg { - background-color: #f5f5f5; - color: #333; -} - -.light-content { - background-color: #fff; - color: #444; -} - -.light-button { - background-color: #ddd; - color: #000; -} diff --git a/src/app/layout.tsx b/src/app/layout.tsx deleted file mode 100644 index f7fa87e..0000000 --- a/src/app/layout.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; - -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - {children} - - - ); -} diff --git a/src/app/mypage/page.tsx b/src/app/mypage/page.tsx deleted file mode 100644 index 93b3ba9..0000000 --- a/src/app/mypage/page.tsx +++ /dev/null @@ -1,14 +0,0 @@ -// 과제 1: 마이페이지 구현 -export default function MyPage() { - // 1.1. UserContext를 활용한 Mypage 구현 (UserContext에 아이디(userId: string), 나이(age: number), 핸드폰번호(phoneNumber: string) 추가) - - return ( -
- {/* 1.2. Header Component를 재활용하여 Mypage Header 표기 (title: 마이페이지) */} -

마이페이지

- {/* Mypage 정보를 UserContext 활용하여 표시 (이름, 아이디, 나이, 핸드폰번호 모두 포함) */} - - {/* 1.3. 홈으로 가기 버튼 구현(Link or Router 활용) */} -
- ); -} diff --git a/src/app/page.tsx b/src/app/page.tsx deleted file mode 100644 index a56cc0e..0000000 --- a/src/app/page.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import Link from "next/link"; - -// link -export default function Home() { - return ( -
-

축! 실전코딩 종강

- - - - - - - - -
- ); -} diff --git a/src/app/search/layout.tsx b/src/app/search/layout.tsx deleted file mode 100644 index 9b61099..0000000 --- a/src/app/search/layout.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import { SearchProvider } from "../../context/SearchContext"; -import { UserProvider } from "../../context/UserContext"; - -export default function SearchLayout({ - children, -}: { - children: React.ReactNode; -}) { - return ( - - {children} - - ); -} diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx deleted file mode 100644 index c3b6212..0000000 --- a/src/app/search/page.tsx +++ /dev/null @@ -1,30 +0,0 @@ -"use client"; - -import Header from "../../component/layout/Header"; -import Footer from "../../component/layout/Footer"; -import SearchInput from "../../component/search/SearchInput"; -import ProductCart from "../../component/shopping/ProductCart"; -import { useUser } from "../../context/UserContext"; -import { useEffect } from "react"; -import { useSearch } from "../../context/SearchContext"; - -export default function SearchHome() { - const { user, setUser } = useUser(); - const { result } = useSearch(); - - // 페이지 최초 렌더링 될 때, setUser로 이름 설정 - useEffect(() => { - // 학번 + 이름 형태로 작성 (ex. 2025***** 내이름 ) - setUser({ name: "" }); - }, []); - - return ( -
-
-
- - -
-
- ); -} diff --git a/src/component/layout/Content.tsx b/src/component/layout/Content.tsx deleted file mode 100644 index c380cbb..0000000 --- a/src/component/layout/Content.tsx +++ /dev/null @@ -1,20 +0,0 @@ -/* 실습 4 useContext */ -import { ThemeContext } from "@/context/ThemeContext"; -import { useContext } from "react"; - -const Content = () => { - const { isDark, setIsDark } = useContext(ThemeContext); - return ( -
-

콘텐츠 입니다

-
- ); -}; - -export default Content; diff --git a/src/component/layout/Footer.tsx b/src/component/layout/Footer.tsx deleted file mode 100644 index 965493a..0000000 --- a/src/component/layout/Footer.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import { useUser } from "@/context/UserContext"; - -/* 실습 4 useContext */ -const Footer = () => { - const { user } = useUser(); - - return ( -
- {/* 가운데 정렬된 copyright 텍스트 */} -

- © Copyright 2025. {user.name}. All rights reserved. -

-
- ); -}; - -export default Footer; diff --git a/src/component/layout/Header.tsx b/src/component/layout/Header.tsx deleted file mode 100644 index 295fc06..0000000 --- a/src/component/layout/Header.tsx +++ /dev/null @@ -1,31 +0,0 @@ -/* 실습 1 */ -/* 실습 4 useContext */ -import { useUser } from "@/context/UserContext"; - -interface HeaderProps { - title: string; -} - -// 1. props 실습 -const Header = ({ title }: HeaderProps) => { - // user 정보를 context API를 이용해 가져오기 - const { user, setUser } = useUser(); - - return ( -
-

{title}

- -
- {/* public directory에 profile.svg 파일 넣은 후, image tag에 경로 지정 */} - {user.name} - {user.name} -
-
- ); -}; - -export default Header; diff --git a/src/component/search/SearchInput.tsx b/src/component/search/SearchInput.tsx deleted file mode 100644 index aea7294..0000000 --- a/src/component/search/SearchInput.tsx +++ /dev/null @@ -1,43 +0,0 @@ -"use client"; -import { useSearch } from "@/context/SearchContext"; - -export default function SearchInput() { - const { query, setQuery, setResult } = useSearch(); - - // 검색 기능 - const search = async () => { - try { - const res = await fetch(`/api/search?query=${encodeURIComponent(query)}`); - if (!res.ok) throw new Error(`${res.status} 에러 발생`); - - const data = await res.json(); - setResult(data.items || []); - } catch (error) { - alert(error); - setResult([]); - } - }; - - // 2.2. SearchInput 컴포넌트가 최초 렌더링 될 때, input tag에 포커스 되는 기능 - const handleInputChange = () => {}; - - // 과제 1-2-3: 페이지 최초 렌더링 시, input에 포커스 되는 기능 (useRef) - - return ( -
- - -
- ); -} diff --git a/src/component/shopping/CartList.tsx b/src/component/shopping/CartList.tsx deleted file mode 100644 index adc8745..0000000 --- a/src/component/shopping/CartList.tsx +++ /dev/null @@ -1,71 +0,0 @@ -"use client"; -import { ProductItem } from "@/types/Product"; - -interface Props { - cart: { [productId: string]: number }; - products: ProductItem[]; - onRemove: (productId: string) => void; // 삭제 핸들러 추가 -} - -export default function CartList({ cart, products, onRemove }: Props) { - const cartItems = Object.entries(cart) - .map(([id, quantity]) => { - const product = products.find((p) => p.productId === id); - return product ? { ...product, quantity } : null; - }) - .filter((item): item is NonNullable => item !== null); - - const total = cartItems.reduce( - (sum, item) => sum + Number(item.lprice) * item.quantity, - 0 - ); - - // 2.4 결제하기: "결제하기" 버튼을 클릭하면, 현재 장바구니에 담긴 상품을 확인해 **localStorage**에 저장 후, 결제완료(/checkout) 페이지로 이동한다. - const handleCheckout = () => {}; - - return ( -
-

🛒 장바구니

- {cartItems.length === 0 ? ( -

장바구니가 비어 있어요.

- ) : ( -
    - {cartItems.map((item) => ( -
  • -
    -

    -

    수량: {item.quantity}

    -
    -
    -

    - {(Number(item.lprice) * item.quantity).toLocaleString()}원 -

    - -
    -
  • - ))} -
- )} -
- 총 합계: {total.toLocaleString()}원 -
- -
- -
-
- ); -} diff --git a/src/component/shopping/ProductCard.tsx b/src/component/shopping/ProductCard.tsx deleted file mode 100644 index 8a8327b..0000000 --- a/src/component/shopping/ProductCard.tsx +++ /dev/null @@ -1,78 +0,0 @@ -import Image from "next/image"; -import { useState } from "react"; -import { ProductItem } from "@/types/Product"; - -interface Props { - item: ProductItem; - onAddToCart: (item: ProductItem, quantity: number) => void; -} - -export default function ProductCard({ item, onAddToCart }: Props) { - const [quantity, setQuantity] = useState(1); - - return ( -
  • -
    - {item.title} -
    -
    -
    -

    -

    - {item.brand} / {item.maker} -

    -

    {item.mallName}

    -

    - {Number(item.lprice).toLocaleString()}원 -

    -

    - 카테고리:{" "} - {[item.category1, item.category2, item.category3] - .filter(Boolean) - .join(" > ")} -

    - {/* 수량 조절 UI */} -
    - - {quantity} - - - -
    -

    - - 상세 보기 - -
    -
  • - ); -} diff --git a/src/component/shopping/ProductCart.tsx b/src/component/shopping/ProductCart.tsx deleted file mode 100644 index a66c2b3..0000000 --- a/src/component/shopping/ProductCart.tsx +++ /dev/null @@ -1,34 +0,0 @@ -// ProductCartPage.tsx -import { useEffect, useState } from "react"; -import ProductList from "./ProductList"; -import { ProductItem } from "@/types/Product"; -import CartList from "./CartList"; - -export default function ProductCart({ items }: { items: ProductItem[] }) { - const [cart, setCart] = useState<{ [id: string]: number }>({}); // {"88159814281" : 1} - const [showCart, setShowCart] = useState(false); // 과제 2.1 - - // 카트에 담기 - const handleAddToCart = (item: ProductItem, quantity: number) => { - setCart((prev) => ({ - ...prev, - [item.productId]: quantity, - })); - - localStorage.setItem(item.productId, quantity + ""); - localStorage.getItem(item.productId); - }; - - /* 과제 2-3: Cart 아이템 지우기 */ - const handleRemoveFromCart = () => {}; - - return ( -
    - {/* 상품 리스트 */} - - {/* 장바구니 */} - {/* 2.1. 조건부 카트 보이기: 카트에 담긴 상품이 없으면 카트가 보이지 않고, 카트에 담긴 물건이 있으면 카트가 보인다 */} - -
    - ); -} diff --git a/src/component/shopping/ProductList.tsx b/src/component/shopping/ProductList.tsx deleted file mode 100644 index 550cf8e..0000000 --- a/src/component/shopping/ProductList.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import ProductCard from "./ProductCard"; -import { ProductItem } from "@/types/Product"; - -export default function ProductList({ - items, - onAddToCart, -}: { - items: ProductItem[]; - onAddToCart: (item: ProductItem, quantity: number) => void; -}) { - return ( -
      - {items.map((item) => ( - - ))} -
    - ); -} diff --git a/src/context/SearchContext.tsx b/src/context/SearchContext.tsx deleted file mode 100644 index 860043b..0000000 --- a/src/context/SearchContext.tsx +++ /dev/null @@ -1,40 +0,0 @@ -"use client"; -// query(쿼리), result(검색결과) - -import { createContext, ReactNode, useContext, useState } from "react"; -import { ProductItem } from "../types/Product"; - -// 1. SearchContextType -interface SearchContextType { - query: string; - setQuery: (q: string) => void; - result: ProductItem[]; // 타입 지정 예정 - setResult: (r: ProductItem[]) => void; -} - -/* 과제 수행 시, 초기 파일은 git에 공유 예정 */ - -// 2. createContext -const SearchContext = createContext(undefined); - -// 3. SearchProvider -export const SearchProvider = ({ children }: { children: ReactNode }) => { - const [query, setQuery] = useState(""); - const [result, setResult] = useState([]); - return ( - - {children} - - ); -}; - -// 4. useSearch custom Hook -export const useSearch = () => { - const context = useContext(SearchContext); - - if (!context) { - throw new Error("useSearch Error"); - } - - return context; -}; diff --git a/src/context/ThemeContext.tsx b/src/context/ThemeContext.tsx deleted file mode 100644 index 5444d6c..0000000 --- a/src/context/ThemeContext.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import { createContext } from "react"; - -// 1. 기본 context -//export const ThemeContext = createContext(null); // 이렇게만 지정하면 Provider에서 사용할 때 type error -export const ThemeContext = createContext({ - isDark: false, - setIsDark: () => {}, -}); // -// 2. con diff --git a/src/context/UserContext.tsx b/src/context/UserContext.tsx deleted file mode 100644 index e5d3f14..0000000 --- a/src/context/UserContext.tsx +++ /dev/null @@ -1,41 +0,0 @@ -"use client"; -import { createContext, ReactNode, useContext, useState } from "react"; - -// 과제 1.1 UserContext 구현 - -// User -interface User { - name: string; - // age: number - // 추가하고 싶은 속성들 ... -} -// UserContextType -interface UserContextType { - user: User; - setUser: (user: User) => void; -} - -// 1. createContext -export const UserContext = createContext( - undefined -); - -// 2. Provider 생성 -export const UserProvider = ({ children }: { children: ReactNode }) => { - const [user, setUser] = useState({ name: "" }); - return ( - - {children} - - ); -}; - -// 3. user 정보를 사용하기 위한 custom hook -export const useUser = () => { - const context = useContext(UserContext); - // 에러처리 - if (!context) { - throw new Error("error"); - } - return context; -}; diff --git a/src/interface/Theme.ts b/src/interface/Theme.ts deleted file mode 100644 index 64e1c39..0000000 --- a/src/interface/Theme.ts +++ /dev/null @@ -1,4 +0,0 @@ -interface ThemeContextType { - isDark: boolean; - setIsDark: React.Dispatch>; -} diff --git a/src/types/Product.ts b/src/types/Product.ts deleted file mode 100644 index 2894112..0000000 --- a/src/types/Product.ts +++ /dev/null @@ -1,16 +0,0 @@ -export interface ProductItem { - title: string; // 상품명 - link: string; // 상품 상세 페이지 링크 - image: string; // 상품 이미지 URL - lprice: string; // 최저가 (문자열로 제공됨) - hprice: string; // 최고가 - mallName: string; // 쇼핑몰 이름 - productId: string; // 상품 ID - productType: string; // 상품 타입 (1: 일반상품, 2: 스마트스토어 등) - brand: string; // 브랜드명 - maker: string; // 제조사 - category1: string; // 1차 카테고리 - category2: string; // 2차 카테고리 - category3: string; // 3차 카테고리 - category4: string; // 4차 카테고리 -} From 81e5806edfe5fefefc1f42e9f08131efc1d6c4f9 Mon Sep 17 00:00:00 2001 From: meem3443 Date: Fri, 20 Jun 2025 16:08:07 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EA=B3=BC=EC=A0=9C=20=EC=99=84=EB=A3=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package-lock.json | 4 +- src/app/api/search/route.ts | 27 ++++++++ src/app/checkout/page.tsx | 59 ++++++++++++++++++ src/app/favicon.ico | Bin 0 -> 25931 bytes src/app/globals.css | 71 +++++++++++++++++++++ src/app/layout.tsx | 38 +++++++++++ src/app/mypage/page.tsx | 29 +++++++++ src/app/page.tsx | 22 +++++++ src/app/search/layout.tsx | 14 +++++ src/app/search/page.tsx | 41 ++++++++++++ src/component/layout/Content.tsx | 20 ++++++ src/component/layout/Footer.tsx | 17 +++++ src/component/layout/Header.tsx | 31 +++++++++ src/component/search/SearchInput.tsx | 49 +++++++++++++++ src/component/shopping/CartList.tsx | 83 +++++++++++++++++++++++++ src/component/shopping/ProductCard.tsx | 78 +++++++++++++++++++++++ src/component/shopping/ProductCart.tsx | 40 ++++++++++++ src/component/shopping/ProductList.tsx | 22 +++++++ src/context/SearchContext.tsx | 40 ++++++++++++ src/context/ThemeContext.tsx | 9 +++ src/context/UserContext.tsx | 49 +++++++++++++++ src/interface/Theme.ts | 4 ++ src/types/Product.ts | 16 +++++ 23 files changed, 761 insertions(+), 2 deletions(-) create mode 100644 src/app/api/search/route.ts create mode 100644 src/app/checkout/page.tsx create mode 100644 src/app/favicon.ico create mode 100644 src/app/globals.css create mode 100644 src/app/layout.tsx create mode 100644 src/app/mypage/page.tsx create mode 100644 src/app/page.tsx create mode 100644 src/app/search/layout.tsx create mode 100644 src/app/search/page.tsx create mode 100644 src/component/layout/Content.tsx create mode 100644 src/component/layout/Footer.tsx create mode 100644 src/component/layout/Header.tsx create mode 100644 src/component/search/SearchInput.tsx create mode 100644 src/component/shopping/CartList.tsx create mode 100644 src/component/shopping/ProductCard.tsx create mode 100644 src/component/shopping/ProductCart.tsx create mode 100644 src/component/shopping/ProductList.tsx create mode 100644 src/context/SearchContext.tsx create mode 100644 src/context/ThemeContext.tsx create mode 100644 src/context/UserContext.tsx create mode 100644 src/interface/Theme.ts create mode 100644 src/types/Product.ts diff --git a/package-lock.json b/package-lock.json index 0b88957..22c80ad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "cnu-next", + "name": "cnu-next-week02", "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "cnu-next", + "name": "cnu-next-week02", "version": "0.1.0", "dependencies": { "next": "15.3.3", diff --git a/src/app/api/search/route.ts b/src/app/api/search/route.ts new file mode 100644 index 0000000..84703a0 --- /dev/null +++ b/src/app/api/search/route.ts @@ -0,0 +1,27 @@ +// app/api/search/route.ts +import { NextResponse } from "next/server"; // API 응답 처리 + +// GET 요청 처리 +export async function GET(request: Request) { + const { searchParams } = new URL(request.url); // request.url에서 searchParams를 추출해 query 값을 가져온다 + const query = searchParams.get("query"); // ex. /api/search?query=하리보 → query = "하리보" + + if (!query) { + return NextResponse.json({ error: "query 없음" }, { status: 400 }); + } + + const res = await fetch( + `https://openapi.naver.com/v1/search/shop.json?query=${encodeURIComponent( + query + )}`, + { + headers: { + "X-Naver-Client-Id": process.env.NAVER_CLIENT_ID!, + "X-Naver-Client-Secret": process.env.NAVER_CLIENT_SECRET!, + }, + } + ); + + const data = await res.json(); + return NextResponse.json(data); +} diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx new file mode 100644 index 0000000..186a577 --- /dev/null +++ b/src/app/checkout/page.tsx @@ -0,0 +1,59 @@ +// CheckoutPage +import { useState, useEffect, use } from "react"; +import { ProductItem } from "@/types/Product"; + +interface CheckoutItem { + product: ProductItem; + quantity: number; +} +// 과제 3 +export default function CheckoutPage() { + const [items, setItems] = useState([]); + // 3.1. 결제하기 구현 + useEffect(() => { + const storedItems = localStorage.getItem("checkoutItems"); + if (storedItems) { + const parsedItems: CheckoutItem[] = JSON.parse(storedItems); + setItems(parsedItems); + parsedItems.forEach((item) => { localStorage.removeItem(item.product.productId); }); + localStorage.removeItem("checkoutItems"); + } + }, []); + + const total = items.reduce((sum, item) => sum + Number(item.product.lprice) * item.quantity, 0); + return ( +
    +

    ✅ 결제가 완료되었습니다!

    + {/* 3.1. 결제하기 구현 */} + {items.length === 0 ? ( +

    결제한 아이템이 없습니다.

    + ):( + <> +
      + {items.map((item, index) => ( +
    • +

      +

      + 수량: {item.quantity}개 / 가격:{" "} + {(Number(item.product.lprice) * item.quantity).toLocaleString()}원 +

      +
    • + ))} +
    +
    + 총 결제 금액: {total.toLocaleString()}원 +
    + + )} + {/* 3.2. 홈으로 가기 버튼 구현 */} + +
    + ); +} diff --git a/src/app/favicon.ico b/src/app/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..718d6fea4835ec2d246af9800eddb7ffb276240c GIT binary patch literal 25931 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 LrJugUA?W`A8`#=m literal 0 HcmV?d00001 diff --git a/src/app/globals.css b/src/app/globals.css new file mode 100644 index 0000000..4e1373b --- /dev/null +++ b/src/app/globals.css @@ -0,0 +1,71 @@ +@import "tailwindcss"; + +/* global.css */ + +.page-container { + max-width: 800px; + margin: 40px auto; + border-radius: 8px; + overflow: hidden; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); + font-family: Arial, sans-serif; +} + +.header { + padding: 20px; + font-size: 24px; + font-weight: bold; + text-align: center; +} + +.content { + padding: 20px; + min-height: 150px; + font-size: 16px; + text-align: center; +} + +.footer { + padding: 20px; + text-align: center; +} + +.toggle-button { + margin-top: 10px; + padding: 8px 16px; + border: none; + border-radius: 4px; + cursor: pointer; +} + +/* 다크 테마 */ +.dark-bg { + background-color: #222; + color: #fff; +} + +.dark-content { + background-color: #333; + color: #eee; +} + +.dark-button { + background-color: #444; + color: #fff; +} + +/* 라이트 테마 */ +.light-bg { + background-color: #f5f5f5; + color: #333; +} + +.light-content { + background-color: #fff; + color: #444; +} + +.light-button { + background-color: #ddd; + color: #000; +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..11df4cd --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,38 @@ +import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; +import { UserProvider } from "@/context/UserContext"; +import "./globals.css"; + +const geistSans = Geist({ + variable: "--font-geist-sans", + subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", + subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "Create Next App", + description: "Generated by create next app", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + + + {children} + + + + + ); +} diff --git a/src/app/mypage/page.tsx b/src/app/mypage/page.tsx new file mode 100644 index 0000000..88add8e --- /dev/null +++ b/src/app/mypage/page.tsx @@ -0,0 +1,29 @@ +'use client'; + +import { useUser } from "@/context/UserContext"; +import Header from "@/component/layout/Header"; +import Link from "next/link"; +// 과제 1: 마이페이지 구현 +export default function MyPage() { + // 1.1. UserContext를 활용한 Mypage 구현 (UserContext에 아이디(userId: string), 나이(age: number), 핸드폰번호(phoneNumber: string) 추가) + const { user } = useUser(); + return ( +
    + {/* 1.2. Header Component를 재활용하여 Mypage Header 표기 (title: 마이페이지) */} +
    + {/* Mypage 정보를 UserContext 활용하여 표시 (이름, 아이디, 나이, 핸드폰번호 모두 포함) */} +
    +

    회원 정보

    +

    이름: {user.name}

    +

    아이디: {user.userId}

    +

    나이: {user.age}

    +

    전화번호: {user.phoneNumber}

    +
    + {/* 1.3. 홈으로 가기 버튼 구현(Link or Router 활용) */} + + 홈으로 가기 + +
    + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..a56cc0e --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,22 @@ +import Link from "next/link"; + +// link +export default function Home() { + return ( +
    +

    축! 실전코딩 종강

    + + + + + + + + +
    + ); +} diff --git a/src/app/search/layout.tsx b/src/app/search/layout.tsx new file mode 100644 index 0000000..9b61099 --- /dev/null +++ b/src/app/search/layout.tsx @@ -0,0 +1,14 @@ +import { SearchProvider } from "../../context/SearchContext"; +import { UserProvider } from "../../context/UserContext"; + +export default function SearchLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} + + ); +} diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx new file mode 100644 index 0000000..fcbd27f --- /dev/null +++ b/src/app/search/page.tsx @@ -0,0 +1,41 @@ +"use client"; + +import Header from "../../component/layout/Header"; +import Footer from "../../component/layout/Footer"; +import SearchInput from "../../component/search/SearchInput"; +import ProductCart from "../../component/shopping/ProductCart"; +import { useUser } from "../../context/UserContext"; +import { useEffect } from "react"; +import { useSearch } from "../../context/SearchContext"; + +export default function SearchHome() { + const { user, setUser } = useUser(); + const { result } = useSearch(); + + const [cart, setCart] = useState<{ [productId: string]: number }>({}); + const [showCart, setShowCart] = useState(false); + + // 페이지 최초 렌더링 될 때, setUser로 이름 설정 + useEffect(() => { + // 학번 + 이름 형태로 작성 (ex. 2025***** 내이름 ) + setUser({ + name: "202202643 조민정", + userId: "hi1234", + age: 16, + phoneNumber: "010-0000-0000" + }); + }, []); + useEffect(() => { + setShowCart(Object.keys(cart).length > 0); + }, [cart]); + + return ( +
    +
    +
    + + +
    +
    + ); +} diff --git a/src/component/layout/Content.tsx b/src/component/layout/Content.tsx new file mode 100644 index 0000000..c380cbb --- /dev/null +++ b/src/component/layout/Content.tsx @@ -0,0 +1,20 @@ +/* 실습 4 useContext */ +import { ThemeContext } from "@/context/ThemeContext"; +import { useContext } from "react"; + +const Content = () => { + const { isDark, setIsDark } = useContext(ThemeContext); + return ( +
    +

    콘텐츠 입니다

    +
    + ); +}; + +export default Content; diff --git a/src/component/layout/Footer.tsx b/src/component/layout/Footer.tsx new file mode 100644 index 0000000..965493a --- /dev/null +++ b/src/component/layout/Footer.tsx @@ -0,0 +1,17 @@ +import { useUser } from "@/context/UserContext"; + +/* 실습 4 useContext */ +const Footer = () => { + const { user } = useUser(); + + return ( +
    + {/* 가운데 정렬된 copyright 텍스트 */} +

    + © Copyright 2025. {user.name}. All rights reserved. +

    +
    + ); +}; + +export default Footer; diff --git a/src/component/layout/Header.tsx b/src/component/layout/Header.tsx new file mode 100644 index 0000000..295fc06 --- /dev/null +++ b/src/component/layout/Header.tsx @@ -0,0 +1,31 @@ +/* 실습 1 */ +/* 실습 4 useContext */ +import { useUser } from "@/context/UserContext"; + +interface HeaderProps { + title: string; +} + +// 1. props 실습 +const Header = ({ title }: HeaderProps) => { + // user 정보를 context API를 이용해 가져오기 + const { user, setUser } = useUser(); + + return ( +
    +

    {title}

    + +
    + {/* public directory에 profile.svg 파일 넣은 후, image tag에 경로 지정 */} + {user.name} + {user.name} +
    +
    + ); +}; + +export default Header; diff --git a/src/component/search/SearchInput.tsx b/src/component/search/SearchInput.tsx new file mode 100644 index 0000000..7a96990 --- /dev/null +++ b/src/component/search/SearchInput.tsx @@ -0,0 +1,49 @@ +"use client"; +import { useSearch } from "@/context/SearchContext"; + +export default function SearchInput() { + const { query, setQuery, setResult } = useSearch(); + + // 검색 기능 + const search = async () => { + try { + const res = await fetch(`/api/search?query=${encodeURIComponent(query)}`); + if (!res.ok) throw new Error(`${res.status} 에러 발생`); + + const data = await res.json(); + setResult(data.items || []); + } catch (error) { + alert(error); + setResult([]); + } + }; + + // 2.2. SearchInput 컴포넌트가 최초 렌더링 될 때, input tag에 포커스 되는 기능 + const handleInputChange = (e: React.ChangeEvent) => { + setQuery(e.target.value); + }; + + // 과제 1-2-3: 페이지 최초 렌더링 시, input에 포커스 되는 기능 (useRef) + useEffect(() => { + if (inputRef.current) { + inputRef.current.focus(); + } + }, []); + return ( +
    + + +
    + ); +} diff --git a/src/component/shopping/CartList.tsx b/src/component/shopping/CartList.tsx new file mode 100644 index 0000000..58189e3 --- /dev/null +++ b/src/component/shopping/CartList.tsx @@ -0,0 +1,83 @@ +"use client"; +import { ProductItem } from "@/types/Product"; + +interface Props { + cart: { [productId: string]: number }; + products: ProductItem[]; + onRemove: (productId: string) => void; // 삭제 핸들러 추가 +} + +export default function CartList({ cart, products, onRemove }: Props) { + const cartItems = Object.entries(cart) + .map(([id, quantity]) => { + const product = products.find((p) => p.productId === id); + return product ? { ...product, quantity } : null; + }) + .filter((item): item is NonNullable => item !== null); + + const total = cartItems.reduce( + (sum, item) => sum + Number(item.lprice) * item.quantity, + 0 + ); + + // 2.4 결제하기: "결제하기" 버튼을 클릭하면, 현재 장바구니에 담긴 상품을 확인해 **localStorage**에 저장 후, 결제완료(/checkout) 페이지로 이동한다. + const handleCheckout = () => { + const checkoutData = cartItems.map((item) => ({ + product: { + productId: item.productId, + title: item.title, + lprice: item.lprice, + }, + quantity: item.quantity, + })); + + localStorage.setItem("checkoutItems", JSON.stringify(checkoutData)); + window.location.href = "/checkout"; + }; + + return ( +
    +

    🛒 장바구니

    + {cartItems.length === 0 ? ( +

    장바구니가 비어 있어요.

    + ) : ( +
      + {cartItems.map((item) => ( +
    • +
      +

      +

      수량: {item.quantity}

      +
      +
      +

      + {(Number(item.lprice) * item.quantity).toLocaleString()}원 +

      + +
      +
    • + ))} +
    + )} +
    + 총 합계: {total.toLocaleString()}원 +
    + +
    + +
    +
    + ); +} diff --git a/src/component/shopping/ProductCard.tsx b/src/component/shopping/ProductCard.tsx new file mode 100644 index 0000000..8a8327b --- /dev/null +++ b/src/component/shopping/ProductCard.tsx @@ -0,0 +1,78 @@ +import Image from "next/image"; +import { useState } from "react"; +import { ProductItem } from "@/types/Product"; + +interface Props { + item: ProductItem; + onAddToCart: (item: ProductItem, quantity: number) => void; +} + +export default function ProductCard({ item, onAddToCart }: Props) { + const [quantity, setQuantity] = useState(1); + + return ( +
  • +
    + {item.title} +
    +
    +
    +

    +

    + {item.brand} / {item.maker} +

    +

    {item.mallName}

    +

    + {Number(item.lprice).toLocaleString()}원 +

    +

    + 카테고리:{" "} + {[item.category1, item.category2, item.category3] + .filter(Boolean) + .join(" > ")} +

    + {/* 수량 조절 UI */} +
    + + {quantity} + + + +
    +

    + + 상세 보기 + +
    +
  • + ); +} diff --git a/src/component/shopping/ProductCart.tsx b/src/component/shopping/ProductCart.tsx new file mode 100644 index 0000000..1cf5530 --- /dev/null +++ b/src/component/shopping/ProductCart.tsx @@ -0,0 +1,40 @@ +// ProductCartPage.tsx +import { useEffect, useState } from "react"; +import ProductList from "./ProductList"; +import { ProductItem } from "@/types/Product"; +import CartList from "./CartList"; + +export default function ProductCart({ items }: { items: ProductItem[] }) { + const [cart, setCart] = useState<{ [id: string]: number }>({}); // {"88159814281" : 1} + const [showCart, setShowCart] = useState(false); // 과제 2.1 + + // 카트에 담기 + const handleAddToCart = (item: ProductItem, quantity: number) => { + setCart((prev) => ({ + ...prev, + [item.productId]: quantity, + })); + + localStorage.setItem(item.productId, quantity + ""); + localStorage.getItem(item.productId); + }; + + /* 과제 2-3: Cart 아이템 지우기 */ + const handleRemoveFromCart = (productId: string) => { + const updatedCart = Object.fromEntries( + Object.entries(cart).filter(([id, _]) => id !== productId) + ); + setCart(updatedCart); + localStorage.removeItem(productId); + }; + + return ( +
    + {/* 상품 리스트 */} + + {/* 장바구니 */} + {/* 2.1. 조건부 카트 보이기: 카트에 담긴 상품이 없으면 카트가 보이지 않고, 카트에 담긴 물건이 있으면 카트가 보인다 */} + +
    + ); +} diff --git a/src/component/shopping/ProductList.tsx b/src/component/shopping/ProductList.tsx new file mode 100644 index 0000000..550cf8e --- /dev/null +++ b/src/component/shopping/ProductList.tsx @@ -0,0 +1,22 @@ +import ProductCard from "./ProductCard"; +import { ProductItem } from "@/types/Product"; + +export default function ProductList({ + items, + onAddToCart, +}: { + items: ProductItem[]; + onAddToCart: (item: ProductItem, quantity: number) => void; +}) { + return ( +
      + {items.map((item) => ( + + ))} +
    + ); +} diff --git a/src/context/SearchContext.tsx b/src/context/SearchContext.tsx new file mode 100644 index 0000000..860043b --- /dev/null +++ b/src/context/SearchContext.tsx @@ -0,0 +1,40 @@ +"use client"; +// query(쿼리), result(검색결과) + +import { createContext, ReactNode, useContext, useState } from "react"; +import { ProductItem } from "../types/Product"; + +// 1. SearchContextType +interface SearchContextType { + query: string; + setQuery: (q: string) => void; + result: ProductItem[]; // 타입 지정 예정 + setResult: (r: ProductItem[]) => void; +} + +/* 과제 수행 시, 초기 파일은 git에 공유 예정 */ + +// 2. createContext +const SearchContext = createContext(undefined); + +// 3. SearchProvider +export const SearchProvider = ({ children }: { children: ReactNode }) => { + const [query, setQuery] = useState(""); + const [result, setResult] = useState([]); + return ( + + {children} + + ); +}; + +// 4. useSearch custom Hook +export const useSearch = () => { + const context = useContext(SearchContext); + + if (!context) { + throw new Error("useSearch Error"); + } + + return context; +}; diff --git a/src/context/ThemeContext.tsx b/src/context/ThemeContext.tsx new file mode 100644 index 0000000..5444d6c --- /dev/null +++ b/src/context/ThemeContext.tsx @@ -0,0 +1,9 @@ +import { createContext } from "react"; + +// 1. 기본 context +//export const ThemeContext = createContext(null); // 이렇게만 지정하면 Provider에서 사용할 때 type error +export const ThemeContext = createContext({ + isDark: false, + setIsDark: () => {}, +}); // +// 2. con diff --git a/src/context/UserContext.tsx b/src/context/UserContext.tsx new file mode 100644 index 0000000..0aa8c16 --- /dev/null +++ b/src/context/UserContext.tsx @@ -0,0 +1,49 @@ +"use client"; +import { createContext, ReactNode, useContext, useState } from "react"; + +// 과제 1.1 UserContext 구현 + +// User +interface User { + name: string; + // age: number + // 추가하고 싶은 속성들 ... + userId: string; + age: number; + phoneNumber: string; +} +// UserContextType +interface UserContextType { + user: User; + setUser: (user: User) => void; +} + +// 1. createContext +export const UserContext = createContext( + undefined +); + +// 2. Provider 생성 +export const UserProvider = ({ children }: { children: ReactNode }) => { + const [user, setUser] = useState({ + name: "202202643 조민정", + userId: "hi1234", + age: 16, + phoneNumber: "010-0000-0000" + }); + return ( + + {children} + + ); +}; + +// 3. user 정보를 사용하기 위한 custom hook +export const useUser = () => { + const context = useContext(UserContext); + // 에러처리 + if (!context) { + throw new Error("error"); + } + return context; +}; diff --git a/src/interface/Theme.ts b/src/interface/Theme.ts new file mode 100644 index 0000000..64e1c39 --- /dev/null +++ b/src/interface/Theme.ts @@ -0,0 +1,4 @@ +interface ThemeContextType { + isDark: boolean; + setIsDark: React.Dispatch>; +} diff --git a/src/types/Product.ts b/src/types/Product.ts new file mode 100644 index 0000000..2894112 --- /dev/null +++ b/src/types/Product.ts @@ -0,0 +1,16 @@ +export interface ProductItem { + title: string; // 상품명 + link: string; // 상품 상세 페이지 링크 + image: string; // 상품 이미지 URL + lprice: string; // 최저가 (문자열로 제공됨) + hprice: string; // 최고가 + mallName: string; // 쇼핑몰 이름 + productId: string; // 상품 ID + productType: string; // 상품 타입 (1: 일반상품, 2: 스마트스토어 등) + brand: string; // 브랜드명 + maker: string; // 제조사 + category1: string; // 1차 카테고리 + category2: string; // 2차 카테고리 + category3: string; // 3차 카테고리 + category4: string; // 4차 카테고리 +}