-
Notifications
You must be signed in to change notification settings - Fork 8
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
[FE] 약속 퍼널 패턴 인터페이스 통합 #393
Conversation
Test Results9 tests 9 ✅ 11s ⏱️ Results for commit 4a52225. |
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.
드디어 퍼널패턴이 도입되겠네요! 👏👏👏
하지만 새로고침했을 때 값이 저장되지 않는 문제도 추후에 잘 해결해야할 것 같아요! 중간에 페이지가 새로고침되는 상황이 있을 때 이전 내용을 저장하고 있거나, 처음 페이지로 이동해 주어야 하니깐요!
특별히 드릴 리뷰는 없어서 Approve 드리겟습니다~!
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.
고생하셨습니다 해리🍀
}; | ||
|
||
const handleRangeStartDatePick = (date: string) => { | ||
setRangeStartDate(date); | ||
setRangeEndDate(null); | ||
setSelectedDates([date]); | ||
setSelectedDates(new Set([date])); |
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.
오예🤸♀️ Set 적극적으로 사용하는 모습 보기 좋군요! 음하하하하
* refactor: 하나씩, 기간으로 날짜를 선택할 때 사용되는 커스텀 훅과 약속의 타입을 결정하는 커스텀 훅 추가 * refactor: 약속 선택 로직을 Set 자료구조를 사용하는 것으로 수정 * chore: 사용하지 않는 css 파일 삭제 * chore: 임시 약속 생성 페이지 삭제 * chore: 임시 약속 생성 페이지 컴포넌트 네이밍 수정 - 하나씩/기간으로 약속 날짜 선택, 약속 타입 결정 props 추가
관련 이슈
약속 퍼널 패턴을 실제로 서비스에서 활용할 수 있도록 인터페이스를 합쳤습니다.
낙타가 기존에 구현해 놨던 날짜만 선택하는 인터페이스와, 하나씩/기간으로 날짜를 선택하는 인터페이스를 통합했어요!
Screen.Recording.2024-10-08.at.22.15.37.mov
작업 내용
특이 사항
리뷰 요구사항 (선택)