[Fix#60] 비공개 테스트 4차 업데이트 #61
Merged
1971123-seongmin merged 15 commits intodevelopfrom Apr 24, 2025
Merged
Conversation
ThirFir
approved these changes
Apr 22, 2025
| photoUri.startsWith("https://") -> { | ||
| AsyncImage( | ||
| model = photoUri, | ||
| contentDescription = "선택한 프로필 사진", |
Member
Author
There was a problem hiding this comment.
contentDescription 말 하시는 건가요??
Comment on lines
+109
to
111
| selectedPhotoId.let { | ||
| viewModel.updateProfileImage(selectedPhotoId) | ||
| } |
Member
Author
There was a problem hiding this comment.
ProfileModScreen은 제가 만든 화면은 아니라 질문하신 부분은 원래 만들어져 있던 그대로 놔뒀어요 (따로 손 안대고 그대로 뒀어요!) 바뀐거로 나온건 코드 정리 최적화 기능 때문에 된 것 같아요
ThirFir
reviewed
Apr 23, 2025
Comment on lines
+140
to
148
| if (text.any { it in "!@#$%^&*()-=+[]{};:'\",<>/?\\|" }) { | ||
| errors.add(NicknameErrorType.InvalidChar) | ||
| } | ||
|
|
||
| val allowedChars = (33..126).map { it.toChar() } + | ||
| ('가'..'힣') + ('ㄱ'..'ㅎ') + ('ㅏ'..'ㅣ') | ||
| if (filteredText.any { it !in allowedChars }) { | ||
| if (text.any { it !in allowedChars }) { | ||
| errors.add(NicknameErrorType.InvalidLang) | ||
| } |
Member
Author
There was a problem hiding this comment.
이것도 원래 되어있던 코드를 그대로 활용한건데 다른 것들 고치느라 바빠서 정규식을 생각해볼 겨를이 없었네요.
Regex 이용해서 정규식으로 바꾸면 될 것 같네요.
감사합니다 ~~
# Conflicts: # app/build.gradle.kts
…fix-close-test-update-4
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
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.
🧨 Issue
💻 Work Description
프로필 화면, 프로필 수정 화면에서 프로필 사진이 안나오는 문제 수정
프로필 수정에서 생년월일 여부에 관계없이 수정할 수 있도록 조건 변경
홈 화면 filter에서 25분 이상, 5만원 이상 조건 선택시 서버 통신 실패하는 문제 수정
SpotList fetchSpots 함수 성공시 상태 업데이트 로직 변경
현재 Success State를 새로 생성해서 기존 데이터가 날아가는 문제가 있습니다.
또한, fetchSpots에서 함수를 호출하는 spotListResultDeferred의 condition도 Condition.Default에서 아래로 수정했습니다.
SpotList 일치하는 맛집 없을 때 조건 변경
프로필 수정 버튼 활성화 조건 수정
프로필 수정 닉네임 텍스트 필드 수정
💭 To Reviewers
프로필 수정 화면에 진입 할 때 서버에서 값을 로딩하는 시간 차로 인해 순간 깜빡이며 뷰가 이상하게 바뀌는 문제가 있습니다.
프로필 수정에서 이미지 눌러서 갤러리 들어가서 이미지를 선택하지 않고 뒤로가기로 나오면 이미지가 저장이 안되서 기존 이미지 날아가서 프로필 이미지에 아무것도 안뜨는 (null) 문제가 있습니다.
화면 구조 자체를 바꿔야할 것 같습니다.
현재 구조는 갤러리 화면에서 네비게이션을 통해 프로필 수정 화면에 이미지 Uri를 담아 보내는 방식입니다.