Skip to content

Commit 45be490

Browse files
committed
Enhancement - UpdateProfileScreen UI
- Close #211
1 parent d357488 commit 45be490

File tree

4 files changed

+239
-69
lines changed

4 files changed

+239
-69
lines changed

core/data/src/main/java/com/niyaj/data/data/repository/RestaurantInfoRepositoryImpl.kt

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import com.niyaj.common.tags.ProfileTestTags.TAG_EMPTY_ERROR
2020
import com.niyaj.common.utils.Resource
2121
import com.niyaj.common.utils.ValidationResult
2222
import com.niyaj.common.utils.isValidPassword
23+
import com.niyaj.data.mapper.toEntity
2324
import com.niyaj.data.repository.RestaurantInfoRepository
2425
import com.niyaj.data.repository.validation.RestaurantInfoValidationRepository
2526
import com.niyaj.database.model.RestaurantInfoEntity
@@ -87,7 +88,7 @@ class RestaurantInfoRepositoryImpl(
8788
restaurant.logo = imageName
8889
restaurant.updatedAt = System.currentTimeMillis().toString()
8990
} else {
90-
val newRestaurant = RestaurantInfoEntity()
91+
val newRestaurant = RestaurantInfo().toEntity()
9192
newRestaurant.restaurantId = RESTAURANT_ID
9293
newRestaurant.logo = imageName
9394
newRestaurant.createdAt = System.currentTimeMillis().toString()
@@ -115,7 +116,7 @@ class RestaurantInfoRepositoryImpl(
115116
restaurant.printLogo = imageName
116117
restaurant.updatedAt = System.currentTimeMillis().toString()
117118
} else {
118-
val newRestaurant = RestaurantInfoEntity()
119+
val newRestaurant = RestaurantInfo().toEntity()
119120
newRestaurant.restaurantId = RESTAURANT_ID
120121
newRestaurant.printLogo = imageName
121122
newRestaurant.createdAt = System.currentTimeMillis().toString()

core/ui/src/main/java/com/niyaj/ui/util/Screens.kt

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ object Screens {
1212
const val HOME_SCREEN = "home_screen"
1313

1414
const val PROFILE_SCREEN = "profile_screen"
15+
const val UPDATE_PROFILE_SCREEN = "update_profile_screen"
1516

1617
const val CART_SCREEN = "cart_screen"
1718

0 commit comments

Comments
 (0)