feat:10주차 1,2미션 - #94
Open
kimdoyeon1234 wants to merge 20 commits into
Open
Conversation
yewon20804
reviewed
Jun 23, 2026
yewon20804
left a comment
Collaborator
There was a problem hiding this comment.
10주차 미션 확인했습니다 ! React.memo, useCallback, useMemo를 활용해서 성능 최적화를 진행해주셨습니다
1. constants/movie.ts — 사용되지 않는 import
// 현재 (week10/src/constants/movie.ts)
import { MovieLanguage } from '../types/movie';
export const LATEST_LANGUAGE_OPTIONS = [
{ value: 'ko-KR', label: '한국어' },
{ value: 'en-US', label: '영어' },
{ value: 'ja-JP', label: '일본어' }
] as const;
1번째 줄에서 MovieLanguage 타입을 import 했지만, 코드 내에서 실제로 사용되지 않고 있습니다. 불필요한 import는 제거하는 것이 좋습니다 !
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 작업 내용
✨ 상세 작업 내용
1번째 미션 (영화 검색 기능 & 상세 정보 모달 및 최적화)
<form>태그로 엔터 키 검색 구현 함useState상태로 실시간 관리 함include_adult파라미터 연동 함<select>박스로 API 쿼리 스트링 설계 함window.open으로 IMDb 새 탭 검색 버튼 추가 함React.memo적용 및 객체·함수 재생성 방지로 성능 개선 함2번째 미션 (Vercel 배포 및 설정)
src/main.tsx에/movies/:movieId테스트 경로 추가 함index.html로 보내는vercel.json설정 적용 함.env유출 방지를 위해.gitignore등록 및 Vercel 대시보드에 API Key 결합 함베포 링크 : https://week10-359syse1b-kimdoyeons-projects-ab8b8e9e.vercel.app/
📸 스크린샷
✅ 체크리스트