Skip to content

Commit

Permalink
🐛 fix order changes in step images
Browse files Browse the repository at this point in the history
  • Loading branch information
kmkim2689 authored and Hogu59 committed Oct 23, 2024
1 parent efcb5da commit 4de75e3
Showing 1 changed file with 30 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,28 +261,30 @@ class RecipeMakingViewModel2
}

override fun onConfirm() {
if (!validateDescriptionForm()) {
_uiEvent.value = Event(RecipeMakingEvent2.DescriptionFormNotCompleted)
_isMakingStepButtonClicked.value = true
return
}

currentStepImages.value?.forEach {
if (!it.uploaded || it.cookingTime.isEmpty() || it.description.isEmpty()) {
viewModelScope.launch {
if (!validateDescriptionForm()) {
_uiEvent.value = Event(RecipeMakingEvent2.DescriptionFormNotCompleted)
_isMakingStepButtonClicked.value = true
return
return@launch
}
}

if (currentStepImages.value.isNullOrEmpty()) {
_uiEvent.value = Event(RecipeMakingEvent2.DescriptionFormNotCompleted)
return
}
val currentStepImages = stepMakingRepository.fetchRecipeSteps().getOrNull()

_isLoading.value = true
currentStepImages?.forEach {
if (!it.imageUploaded || it.cookingTime.isEmpty() || it.description.isEmpty()) {
_uiEvent.value = Event(RecipeMakingEvent2.DescriptionFormNotCompleted)
_isMakingStepButtonClicked.value = true
return@launch
}
}

if (currentStepImages.isNullOrEmpty()) {
_uiEvent.value = Event(RecipeMakingEvent2.DescriptionFormNotCompleted)
return@launch
}

_isLoading.value = true

viewModelScope.launch {
val recipeCreation = recipeCreation()
if (recipeCreation == null) {
_isLoading.value = false
Expand Down Expand Up @@ -429,12 +431,18 @@ class RecipeMakingViewModel2
}

override fun onStepImageClick(item: RecipeStepImage) {
_uiEvent.value =
Event(
RecipeMakingEvent2.NavigateToMakingStep(
sequence = currentStepImages.value?.indexOf(item) ?: return,
),
)
viewModelScope.launch(coroutineExceptionHandler) {
val recipeId = recipeId
if (recipeId != null) {
saveRecipeSteps(recipeId)
}
_uiEvent.value =
Event(
RecipeMakingEvent2.NavigateToMakingStep(
sequence = currentStepImages.value?.indexOf(item) ?: return@launch,
),
)
}
}

override fun navigationAction() {
Expand Down

0 comments on commit 4de75e3

Please sign in to comment.