[FEAT] 챌린지 페이지 퍼블리싱#26
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Code Review
This pull request implements the core challenge features, including list, detail, and verification routes, supported by a variety of new components such as a hero carousel, state modals, and an image uploader. Key feedback includes addressing a potential memory leak with Blob URLs in the uploader, optimizing performance by moving static navigation items outside the component, and adhering to React and Next.js best practices by replacing direct DOM queries with refs and using the optimized Image component. Additionally, it is recommended to decompose the large client page into smaller, more manageable files to improve maintainability.
| const navItems: NavItem[] = [ | ||
| { | ||
| label: '홈', | ||
| href: '/main', | ||
| iconType: 'home', | ||
| }, | ||
| { | ||
| label: '저장한 꿀팁', | ||
| href: '/saved-tips', | ||
| iconType: 'savedTips', | ||
| }, | ||
| { | ||
| label: '챌린지', | ||
| href: '/challenges', | ||
| iconType: 'challenge', | ||
| }, | ||
| { | ||
| label: '마이페이지', | ||
| href: '/mypage', | ||
| iconType: 'mypage', | ||
| }, | ||
| { label: '홈', href: '/main', iconType: 'home' }, | ||
| { label: '저장한 꿀팁', href: '/saved-tips', iconType: 'savedTips' }, | ||
| { label: '챌린지', href: '/challenges', iconType: 'challenge' }, | ||
| { label: '마이페이지', href: '/mypage', iconType: 'mypage' }, | ||
| ]; |
| <img | ||
| src={previewUrl} | ||
| alt="업로드한 인증 사진" | ||
| className="h-full w-full object-cover" | ||
| /> |
| } | ||
|
|
||
| return Array.from( | ||
| container.querySelectorAll<HTMLElement>('[data-carousel-slide="true"]'), |
…llengeVerifyUploader.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
…llengeVerifyUploader.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
🔑 이슈 번호
closes #24
✒ 진행한 작업
💡 생겼던 문제 및 해결법
1️⃣ 요약
📢 아쉬운 부분 및 개선점
📚 개발에 참고한 자료 및 포인트
📸 스크린샷