-
Notifications
You must be signed in to change notification settings - Fork 0
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
[TNT-114] 회원가입 화면 플로우 연결 #37
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
1c09407
[TNT-114] feat: TnTOutLinedTextField에 경고 메세지 추가
SeonJeongk 36c018f
[TNT-114] feat: 트레이니 기본 정보 입력 에러 문구 추가
SeonJeongk 7665ac1
[TNT-114] refactor: 회원가입 완료 화면 파일명 수정
SeonJeongk 0eb7cba
[TNT-114] feat: 트레이니 회원가입 Navigation 구현
SeonJeongk 37afaee
[TNT-114] chore: TNT-115 branch rebase
SeonJeongk 337bdb0
[TNT-114] feat: 회원가입 화면과 코드화면 연결
SeonJeongk cb74945
[TNT-114] fix: 트레이니 회원가입 화면 순서 수정
SeonJeongk c6c6280
[TNT-114] fix: core:ui 스트링 리소스 사용
SeonJeongk be63a54
[TNT-114] fix: Page로 이름 변경
SeonJeongk 4c4fd5d
[TNT-114] fix: 트레이니 코드 입력 없으면 인증하기 버튼 비활성화
SeonJeongk 1be5443
[TNT-114] fix: 트레이니 코드 입력 없으면 인증하기 버튼 비활성화
SeonJeongk 6792cd3
[TNT-114] fix: startDestination Login으로 복원
SeonJeongk adc6181
[TNT-114] fix: 주의사항 입력 화면 다음 버튼 enabled 수정
SeonJeongk 01e87e7
[TNT-114] feat: BackHandler 추가
SeonJeongk a193d4e
[TNT-114] chore: conflict 해결
SeonJeongk 13ecc67
[TNT-114] fix: PR 리뷰 반영
SeonJeongk 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 |
---|---|---|
|
@@ -13,6 +13,7 @@ import co.kr.tnt.trainee.connect.model.PTSessionFormData | |
|
||
@Composable | ||
internal fun TraineeConnectRoute( | ||
isFromMyPage: Boolean, | ||
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. humm.. |
||
navigateToPrevious: () -> Unit, | ||
navigateToHome: (Boolean) -> Unit, | ||
viewModel: TraineeConnectViewModel = hiltViewModel(), | ||
|
@@ -21,6 +22,7 @@ internal fun TraineeConnectRoute( | |
|
||
TraineeConnectScreen( | ||
state = state, | ||
isFromMyPage = isFromMyPage, | ||
onFormNextClick = { formData -> | ||
viewModel.setEvent(TraineeConnectUiEvent.UpdatePTSessionData(formData)) | ||
}, | ||
|
@@ -48,6 +50,7 @@ internal fun TraineeConnectRoute( | |
@Composable | ||
private fun TraineeConnectScreen( | ||
state: TraineeConnectUiState, | ||
isFromMyPage: Boolean, | ||
onCodeValidationClick: (String) -> Unit, | ||
onCodeChanged: (String) -> Unit, | ||
onFormNextClick: (PTSessionFormData) -> Unit, | ||
|
@@ -58,7 +61,9 @@ private fun TraineeConnectScreen( | |
when (state.page) { | ||
TraineeConnectPage.CodeEntry -> CodeEntryPage( | ||
state = state, | ||
isFromMyPage = isFromMyPage, | ||
onNextClick = onNextClick, | ||
onBackClick = onBackClick, | ||
onSkipClick = onSkipClick, | ||
onCodeChanged = { code -> | ||
onCodeChanged(code) | ||
|
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.
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.
humm...