-
Notifications
You must be signed in to change notification settings - Fork 7
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
모임 만들기 Funnel UI 적용 #397
Merged
Merged
모임 만들기 Funnel UI 적용 #397
Conversation
This file contains 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
… 페이지 벗어날 시 세션 스토리지 데이터 삭제 기능 구현
… 시 해당 storage data를 remove하도록 수정 (브라우저 강제 이동 시 storage data가 남는 문제를 해결하기 위해 모임 만들기 프로세스 시작할 때 remove)
ss0526100
approved these changes
Aug 20, 2024
jaeml06
approved these changes
Aug 20, 2024
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.
확인했습니다. 수야 고생했어요
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.
PR의 목적이 무엇인가요?
설명
모임 만들기 UX 개선(사용자가 한 번에 하나의 입력에만 집중할 수 있도록 페이지를 단순화하고 페이지를 스탭으로 연결)을 위해 Funnel UI를 적용했어요.
질문 혹은 공유 사항 (Optional)
재사용이 가능할 만한 부분을 두 개 찾아서 추상화해서 커스텀 훅으로 만들었어요.
1. useFunnel
퍼널은 사용자가 어떤 기능의 첫 단계부터 최종 단계에 도달하기까지 거치는 과정을 의미합니다. 보통 사용자에게 많은 입력을 받아 가입, 등록, 생성을 할 때 거치는 절차라고 생각하면 됩니다.
useFunnel 커스텀 훅은 그 퍼널을 쉽게 관리할 수 있도록 하는 데 목적을 두고 만들었어요. 디자인 요구사항에 퍼널 형태의 UI가 많은 것 같아서 개발했습니다.
toss의 useFunnel Interface 문서
toss funnel UI 유튜브
useFunnel 커스텀 훅은 react router에 의존이 있습니다! 스탭 변경을 react router의 useNavigate로 합니다. navigate시 전달해주는 state로 스탭을 판단합니다.
2. useStatePersist
브라우저의 스토리지를 활용해 새로고침을 해도 react state를 유지할 수 있도록 해주는 hook입니다. redux, recoil과 같은 전역 상태 관리 도구에서 persist를 지원하는 걸 보고, 지역 상태 관리도 persist가 되면 좋겠다 생각해서 만들어봤어요. 사용성을 위해 최대한 useState과 인터페이스를 맞추려고 했습니다.
페이지가 unload되기 전, react state를 스토리지에 임시로 저장했다가 다시 페이지가 load되면 스토리지 데이터를 react state로 옮기고, 스토리지 데이터는 삭제합니다.
이슈 ID는 무엇인가요?