-
Notifications
You must be signed in to change notification settings - Fork 0
[OMF-332] 인트로 설문 유입·open-stats 연동 및 섹션 설문 UX/분기 판정 개선 #162
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
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
3d5fdcf
✨ Feat : 프로그레스 바 및 치어풀 메세지 추가
chldsbdud 9a7983b
✨ Feat : 온보딩 리뉴얼 화면 제작
chldsbdud 32a52d0
✨ Feat : 공개 open-stats로 배너 노출, 참여하기 플로우 및 스크리닝 분기
chldsbdud 0782b63
✨ Feat : 참여하기 로그인 후 설문 이동·바텀시트 안내
chldsbdud c307c25
🐛 Fix : 분기 객관식 미선택 시 마지막 섹션으로 오인하지 않도록 처리
chldsbdud 40a5e74
♻️ Refactor : 참여 불가 시 바텀시트 제거 후 홈으로 이동
chldsbdud bde3732
🐛 Fix : 스크리닝 목록 조회 실패 시 설문 info 우회 진입 막기
chldsbdud ebee102
🐛 Fix ; 분기 객관식이 여러 개일 때 미응답 검사 누락 수정
chldsbdud 8f7e871
💄 Design : 인트로 블록 중앙정렬 및 워딩 수정
chldsbdud File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,10 @@ | ||
| import { useQuery } from "@tanstack/react-query"; | ||
| import { getAllOngoingSurveys } from "../service/surveyList"; | ||
|
|
||
| export const useAllOngoingSurveys = () => { | ||
| export const useAllOngoingSurveys = (options?: { enabled?: boolean }) => { | ||
| return useQuery({ | ||
| queryKey: ["allOngoingSurveys"], | ||
| queryFn: () => getAllOngoingSurveys({ lastSurveyId: 0, size: 100 }), // 충분히 큰 size로 모든 설문 가져오기 | ||
| enabled: options?.enabled ?? true, | ||
| }); | ||
| }; |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.