-
-
Save virendersran01/2c4229661096631ef965a7dc706f822f to your computer and use it in GitHub Desktop.
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
override fun onViewCreated() { | |
observeVisitDetail() | |
} | |
private fun observeVisitDetail() { | |
viewLifecycleOwner.lifecycleScope.launch { | |
viewLifecycleOwner.repeatOnLifecycle(Lifecycle.State.STARTED) { | |
viewModel.agentDetail?.collect { visitingUiState -> | |
when (visitingUiState) { | |
is VisitingDetailUiState.Success -> { | |
// HANDLE SUCCESS EVENT | |
} | |
is VisitingDetailUiState.Error -> { | |
viewModel.eventFlow.collectLatest { | |
when (it) { | |
is VisitingUiEvent.ShowErrorMessageStatic -> { | |
Timber.tag("MYTAG") | |
.d("observeVisitDetail: %s", it.staticError) | |
Timber.tag("MYTAG") | |
.d("observeVisitDetail: %s", it.dynamicError) | |
Timber.tag("MYTAG") | |
.d("observeVisitDetail: %s", it.errorCode) | |
} | |
} | |
} | |
} | |
is VisitingDetailUiState.Loading -> { | |
// HANDLE LOADING EVENT | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment