Skip to content
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

Merged
merged 5 commits into from
Oct 10, 2024

Conversation

hwinkr
Copy link
Contributor

@hwinkr hwinkr commented Oct 8, 2024

관련 이슈

약속 퍼널 패턴을 실제로 서비스에서 활용할 수 있도록 인터페이스를 합쳤습니다.

낙타가 기존에 구현해 놨던 날짜만 선택하는 인터페이스와, 하나씩/기간으로 날짜를 선택하는 인터페이스를 통합했어요!

Screen.Recording.2024-10-08.at.22.15.37.mov

작업 내용

특이 사항

리뷰 요구사항 (선택)

@hwinkr hwinkr added 🐈 프론트엔드 프론트엔드 관련 이슈에요 :) 🥵 핫픽스 핫! 빠르게 문제를 해결해요 :( labels Oct 8, 2024
@hwinkr hwinkr added this to the 6차(최종) 데모데이 milestone Oct 8, 2024
@hwinkr hwinkr self-assigned this Oct 8, 2024
Copy link

github-actions bot commented Oct 8, 2024

Test Results

9 tests   9 ✅  11s ⏱️
2 suites  0 💤
1 files    0 ❌

Results for commit 4a52225.

Copy link
Contributor

@Largopie Largopie left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

드디어 퍼널패턴이 도입되겠네요! 👏👏👏

하지만 새로고침했을 때 값이 저장되지 않는 문제도 추후에 잘 해결해야할 것 같아요! 중간에 페이지가 새로고침되는 상황이 있을 때 이전 내용을 저장하고 있거나, 처음 페이지로 이동해 주어야 하니깐요!

특별히 드릴 리뷰는 없어서 Approve 드리겟습니다~!

Copy link
Contributor

@Yoonkyoungme Yoonkyoungme left a 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]));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

오예🤸‍♀️ Set 적극적으로 사용하는 모습 보기 좋군요! 음하하하하

@hwinkr hwinkr merged commit f538211 into develop Oct 10, 2024
11 checks passed
@hwinkr hwinkr deleted the hotfix/392-complete-funnel branch October 11, 2024 06:17
ehBeak pushed a commit that referenced this pull request Oct 11, 2024
* refactor: 하나씩, 기간으로 날짜를 선택할 때 사용되는 커스텀 훅과 약속의 타입을 결정하는 커스텀 훅 추가

* refactor: 약속 선택 로직을 Set 자료구조를 사용하는 것으로 수정

* chore: 사용하지 않는 css 파일 삭제

* chore: 임시 약속 생성 페이지 삭제

* chore: 임시 약속 생성 페이지 컴포넌트 네이밍 수정

- 하나씩/기간으로 약속 날짜 선택, 약속 타입 결정 props 추가
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐈 프론트엔드 프론트엔드 관련 이슈에요 :) 🥵 핫픽스 핫! 빠르게 문제를 해결해요 :(
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

[FE] 퍼널 패턴으로 약속을 생성할 수 있도록 인터페이스를 합쳐요 :)
3 participants