-
Notifications
You must be signed in to change notification settings - Fork 0
release: 홈 레벨/미션 UI·인증(세션·푸시) 개선 반영 #53
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
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9f554eb
fix(badge): 마이페이지 배지 이미지 지연 로딩 개선
Develop-KIM 26d7bcc
chore(dev): Capacitor 라이브 리로드 스크립트 추가
Develop-KIM f778c24
fix(auth): 계정 전환 시 이전 계정 데이터 노출 수정
Develop-KIM eee1a00
fix(auth): 네이티브 로그인 시 세션 유지·푸시 등록 및 알림 딥링크 콜드스타트 처리
Develop-KIM 14f18ab
feat(home): 회고 유무·레벨별 홈/마이 상태 정리 및 최고레벨 카드 추가
Develop-KIM a150e87
fix(retrospect): 한글 IME 조합 중 음성 버튼 토글 오작동 수정
Develop-KIM 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
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 |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| <template> | ||
| <!-- 최고 레벨(Lv.10): 진행할 미션이 없어 '이번 주 회고 현황'만 노출 (Figma 8173-30195) --> | ||
| <div class="bg-white rounded-2xl p-[22px] flex flex-col gap-3"> | ||
| <p class="text-[14px] font-semibold text-grey-9 leading-[1.4] tracking-[-0.02em]">이번 주 회고 현황</p> | ||
| <div class="flex gap-2"> | ||
| <div | ||
| v-for="d in weekDays" | ||
| :key="d.day" | ||
| class="flex-1 aspect-square max-w-11 rounded-xl flex items-center justify-center text-[15px] font-semibold" | ||
| :class="d.isCompleted ? 'bg-green-light-hover text-green-hover' : 'bg-grey-4 text-grey-6'" | ||
| > | ||
| {{ d.day }} | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </template> | ||
|
|
||
| <script setup lang="ts"> | ||
| import type { WeeklyRetroStatus } from '~/types/api' | ||
|
|
||
| const props = defineProps<{ weeklyStatus?: WeeklyRetroStatus | null }>() | ||
|
|
||
| // 이번 주 요일 스탬프 — 백엔드 days(월~일 boolean[])를 요일 라벨과 zip. 데이터 없으면 전부 미완료 | ||
| const WEEKDAY_LABELS = ['월', '화', '수', '목', '금', '토', '일'] | ||
| const weekDays = computed(() => { | ||
| const days = props.weeklyStatus?.days ?? [] | ||
| return WEEKDAY_LABELS.map((day, i) => ({ day, isCompleted: days[i] ?? false })) | ||
| }) | ||
| </script> |
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
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
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
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.
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.
On an authenticated cold start,
index.vueconsumespendingDeepLinkand callsnavigateTo(... ?? '/home')in its mounted hook, while the native listener is bound later fromapp.vue's mounted hook. If Capacitor deliverspushNotificationActionPerformedin that window andcurrentRouteis still'/', this branch only stores the link; becauseindex.vueis the only caller ofconsumePendingDeepLink()and it has already returned, nothing ever opens the notification target and the scheduled/homenavigation wins. This affects notification taps that launch an already logged-in app.Useful? React with 👍 / 👎.