-
Notifications
You must be signed in to change notification settings - Fork 1
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
Feature/mz 199 마이페이지 - 내정보 편집, 앱 버전, 개인정보처리방침 #91
Merged
Merged
Changes from 6 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
007e8b2
feat: 내정보 편집 출생년도 미선택 옵션 추가
yangsooplus 09dfcb9
feat: 내정보 편집 이름 형식 불만족시 붉은 점 표시
yangsooplus a0eac97
feat: 내정보 편집 이름 형식 불만족 시 등록을 누르면 스낵바 출력
yangsooplus 05315d9
chore: 연동된 소셜 계정 카카오톡만 표시
yangsooplus f366f6c
feat: 현재 앱 버전 표시
yangsooplus 7438e60
chore: 마이페이지 상단 알림 아이콘 삭제
yangsooplus beaa1e7
chore: ktlint, detekt check
yangsooplus 73f18a0
refactor: getAppVersion 함수 runCatching으로 변경 및 remember로 호출 최소화
yangsooplus 7b72345
feat: 개인정보 처리방침 웹뷰 추가
yangsooplus 0976644
chore: ktlint check
yangsooplus 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 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 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 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 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 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 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 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 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 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,5 +1,6 @@ | ||||||||||||||||||||||||||||||||||||||||||||
package com.susu.feature.mypage.main | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
import android.content.Context | ||||||||||||||||||||||||||||||||||||||||||||
import android.os.Environment | ||||||||||||||||||||||||||||||||||||||||||||
import androidx.compose.foundation.background | ||||||||||||||||||||||||||||||||||||||||||||
import androidx.compose.foundation.layout.Box | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -29,7 +30,6 @@ import androidx.hilt.navigation.compose.hiltViewModel | |||||||||||||||||||||||||||||||||||||||||||
import androidx.lifecycle.compose.collectAsStateWithLifecycle | ||||||||||||||||||||||||||||||||||||||||||||
import com.susu.core.designsystem.component.appbar.SusuDefaultAppBar | ||||||||||||||||||||||||||||||||||||||||||||
import com.susu.core.designsystem.component.appbar.icon.LogoIcon | ||||||||||||||||||||||||||||||||||||||||||||
import com.susu.core.designsystem.component.appbar.icon.NotificationIcon | ||||||||||||||||||||||||||||||||||||||||||||
import com.susu.core.designsystem.component.button.GhostButtonColor | ||||||||||||||||||||||||||||||||||||||||||||
import com.susu.core.designsystem.component.button.SmallButtonStyle | ||||||||||||||||||||||||||||||||||||||||||||
import com.susu.core.designsystem.component.button.SusuGhostButton | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -150,13 +150,15 @@ fun MyPageDefaultScreen( | |||||||||||||||||||||||||||||||||||||||||||
navigateToInfo: () -> Unit = {}, | ||||||||||||||||||||||||||||||||||||||||||||
navigateToSocial: () -> Unit = {}, | ||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||
val context = LocalContext.current | ||||||||||||||||||||||||||||||||||||||||||||
Column( | ||||||||||||||||||||||||||||||||||||||||||||
modifier = Modifier.fillMaxSize().padding(padding), | ||||||||||||||||||||||||||||||||||||||||||||
modifier = Modifier | ||||||||||||||||||||||||||||||||||||||||||||
.fillMaxSize() | ||||||||||||||||||||||||||||||||||||||||||||
.padding(padding), | ||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||
SusuDefaultAppBar( | ||||||||||||||||||||||||||||||||||||||||||||
modifier = Modifier.padding(SusuTheme.spacing.spacing_xs), | ||||||||||||||||||||||||||||||||||||||||||||
leftIcon = { LogoIcon() }, | ||||||||||||||||||||||||||||||||||||||||||||
actions = { NotificationIcon() }, | ||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
MyPageMenuItem( | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -218,14 +220,15 @@ fun MyPageDefaultScreen( | |||||||||||||||||||||||||||||||||||||||||||
onMenuClick = onWithdraw, | ||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||
Box( | ||||||||||||||||||||||||||||||||||||||||||||
modifier = Modifier.fillMaxWidth() | ||||||||||||||||||||||||||||||||||||||||||||
modifier = Modifier | ||||||||||||||||||||||||||||||||||||||||||||
.fillMaxWidth() | ||||||||||||||||||||||||||||||||||||||||||||
.weight(1f) | ||||||||||||||||||||||||||||||||||||||||||||
.background(color = Gray20) | ||||||||||||||||||||||||||||||||||||||||||||
.padding(SusuTheme.spacing.spacing_m), | ||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||
Text( | ||||||||||||||||||||||||||||||||||||||||||||
modifier = Modifier.align(Alignment.TopStart), | ||||||||||||||||||||||||||||||||||||||||||||
text = stringResource(com.susu.feature.mypage.R.string.mypage_app_version) + uiState.appVersion, | ||||||||||||||||||||||||||||||||||||||||||||
text = stringResource(com.susu.feature.mypage.R.string.mypage_app_version) + " ${getAppVersion(context)}", | ||||||||||||||||||||||||||||||||||||||||||||
style = SusuTheme.typography.title_xxxs, | ||||||||||||||||||||||||||||||||||||||||||||
color = Gray50, | ||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -239,6 +242,21 @@ fun MyPageDefaultScreen( | |||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
private fun getAppVersion(context: Context): String { | ||||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||||
val packageInfo = context.packageManager.getPackageInfo( | ||||||||||||||||||||||||||||||||||||||||||||
context.packageName, 0, | ||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
if (packageInfo != null) { | ||||||||||||||||||||||||||||||||||||||||||||
return packageInfo.versionName | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
} catch (e: Exception) { | ||||||||||||||||||||||||||||||||||||||||||||
e.printStackTrace() | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
return "" | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
모든 예외를 catch 할거면 runCatching이 더 가독성이 좋을거같아요 또 이 함수는 리컴포지션이 발생할 때마다 실행되서 별로인거같습니다. remember 쓰는거 어때요? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
@Composable | ||||||||||||||||||||||||||||||||||||||||||||
fun MyPageDivider( | ||||||||||||||||||||||||||||||||||||||||||||
modifier: Modifier = Modifier, | ||||||||||||||||||||||||||||||||||||||||||||
|
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
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
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.
packageInfo는 non-null 아닌가용??
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.
엇 맞네요
긁어오고 확인 안한거 딱 걸렸네요 머슥