@@ -5,6 +5,7 @@ import com.niyaj.common.tags.CategoryTestTags.CATEGORY_NAME_EMPTY_ERROR
5
5
import com.niyaj.common.tags.CategoryTestTags.CATEGORY_NAME_LENGTH_ERROR
6
6
import com.niyaj.common.utils.Resource
7
7
import com.niyaj.common.utils.ValidationResult
8
+ import com.niyaj.data.mapper.toEntity
8
9
import com.niyaj.data.repository.CategoryRepository
9
10
import com.niyaj.data.repository.validation.CategoryValidationRepository
10
11
import com.niyaj.data.utils.collectWithSearch
@@ -20,9 +21,8 @@ import io.realm.kotlin.ext.query
20
21
import io.realm.kotlin.query.Sort
21
22
import kotlinx.coroutines.CoroutineDispatcher
22
23
import kotlinx.coroutines.flow.Flow
23
- import kotlinx.coroutines.flow.channelFlow
24
+ import kotlinx.coroutines.flow.mapLatest
24
25
import kotlinx.coroutines.withContext
25
- import org.mongodb.kbson.BsonObjectId
26
26
import timber.log.Timber
27
27
28
28
class CategoryRepositoryImpl (
@@ -37,24 +37,17 @@ class CategoryRepositoryImpl(
37
37
}
38
38
39
39
override suspend fun getAllCategories (searchText : String ): Flow <List <Category >> {
40
- return channelFlow {
41
- withContext(ioDispatcher) {
42
- try {
43
- val items = realm.query<CategoryEntity >()
44
- .sort(" categoryId" , Sort .ASCENDING )
45
- .find()
46
- .asFlow()
47
-
40
+ return withContext(ioDispatcher) {
41
+ realm.query<CategoryEntity >()
42
+ .sort(" categoryId" , Sort .ASCENDING )
43
+ .find()
44
+ .asFlow()
45
+ .mapLatest { items ->
48
46
items.collectWithSearch(
49
47
transform = { it.toExternalModel() },
50
48
searchFilter = { it.filterCategory(searchText) },
51
- send = { send(it) }
52
49
)
53
-
54
- } catch (e: Exception ) {
55
- send(emptyList())
56
50
}
57
- }
58
51
}
59
52
}
60
53
@@ -69,60 +62,33 @@ class CategoryRepositoryImpl(
69
62
}
70
63
}
71
64
72
- override fun findCategoryByName (name : String , categoryId : String? ): Boolean {
73
- val category = if (categoryId.isNullOrEmpty()) {
74
- realm.query<CategoryEntity >(" categoryName == $0" , name).first().find()
75
- } else {
76
- realm.query<CategoryEntity >(" categoryId != $0 && categoryName == $1" , categoryId, name)
77
- .first()
78
- .find()
79
- }
80
-
81
- return category != null
82
- }
83
-
84
- override suspend fun createNewCategory (newCategory : Category ): Resource <Boolean > {
85
- return try {
86
- withContext(ioDispatcher) {
87
- val validateCategoryName = validateCategoryName(newCategory.categoryName)
88
-
89
- if (validateCategoryName.successful) {
90
- val category = CategoryEntity ()
91
- category.categoryId =
92
- newCategory.categoryId.ifEmpty { BsonObjectId ().toHexString() }
93
- category.categoryName = newCategory.categoryName
94
- category.categoryAvailability = newCategory.categoryAvailability
95
- category.createdAt =
96
- newCategory.createdAt.ifEmpty { System .currentTimeMillis().toString() }
97
-
98
- realm.write {
99
- this .copyToRealm(category)
100
- }
101
-
102
- Resource .Success (true )
103
- } else {
104
- Resource .Error (
105
- validateCategoryName.errorMessage ? : " Unable to create category"
106
- )
107
- }
108
- }
109
- } catch (e: Exception ) {
110
- Resource .Error (e.message ? : " Unable to create new category" )
65
+ override suspend fun findCategoryByName (name : String , categoryId : String? ): Boolean {
66
+ return withContext(ioDispatcher) {
67
+ if (categoryId.isNullOrEmpty()) {
68
+ realm.query<CategoryEntity >(" categoryName == $0" , name).first().find()
69
+ } else {
70
+ realm.query<CategoryEntity >(
71
+ " categoryId != $0 && categoryName == $1" ,
72
+ categoryId,
73
+ name
74
+ )
75
+ .first()
76
+ .find()
77
+ } != null
111
78
}
112
79
}
113
80
114
- override suspend fun updateCategory (
81
+ override suspend fun createOrUpdateCategory (
115
82
updatedCategory : Category ,
116
83
categoryId : String
117
84
): Resource <Boolean > {
118
85
return try {
119
86
withContext(ioDispatcher) {
120
- val validateCategoryName =
121
- validateCategoryName(updatedCategory.categoryName, categoryId)
87
+ val validateName = validateCategoryName(updatedCategory.categoryName, categoryId)
122
88
123
- if (validateCategoryName .successful) {
124
- val category =
125
- realm.query< CategoryEntity >( " categoryId == $0 " , categoryId) .first().find()
89
+ if (validateName .successful) {
90
+ val category = realm.query< CategoryEntity >( " categoryId == $0 " , categoryId)
91
+ .first().find()
126
92
127
93
if (category != null ) {
128
94
realm.write {
@@ -135,55 +101,21 @@ class CategoryRepositoryImpl(
135
101
136
102
Resource .Success (true )
137
103
} else {
138
- Resource .Error (
139
- validateCategoryName.errorMessage ? : " Unable to update category"
140
- )
104
+ realm.write {
105
+ this .copyToRealm(updatedCategory.toEntity())
106
+ }
107
+
108
+ Resource .Success (true )
141
109
}
142
110
} else {
143
- Resource .Error (
144
- validateCategoryName.errorMessage ? : " Unable to update category"
145
- )
111
+ Resource .Error (validateName.errorMessage ? : " Unable" )
146
112
}
147
113
}
148
114
} catch (e: Exception ) {
149
115
Resource .Error (e.message ? : " Unable to update category" )
150
116
}
151
117
}
152
118
153
- override suspend fun deleteCategory (categoryId : String ): Resource <Boolean > {
154
- return try {
155
- val category =
156
- realm.query<CategoryEntity >(" categoryId == $0" , categoryId).first().find()
157
-
158
- if (category != null ) {
159
- withContext(ioDispatcher) {
160
- realm.write {
161
- val products =
162
- this .query<ProductEntity >(" category.categoryId == $0" , categoryId)
163
- .find()
164
- val cartOrders =
165
- this .query<CartEntity >(" product.category.categoryId == $0" , categoryId)
166
- .find()
167
-
168
- delete(cartOrders)
169
-
170
- delete(products)
171
-
172
- findLatest(category)?.let {
173
- delete(it)
174
- }
175
- }
176
- }
177
-
178
- Resource .Success (true )
179
- } else {
180
- Resource .Error (" Unable to find category" )
181
- }
182
- } catch (e: Exception ) {
183
- Resource .Error (e.message ? : " Unable to delete category" )
184
- }
185
- }
186
-
187
119
override suspend fun deleteCategories (categoryIds : List <String >): Resource <Boolean > {
188
120
return try {
189
121
withContext(ioDispatcher) {
@@ -227,7 +159,10 @@ class CategoryRepositoryImpl(
227
159
}
228
160
}
229
161
230
- override fun validateCategoryName (categoryName : String , categoryId : String? ): ValidationResult {
162
+ override suspend fun validateCategoryName (
163
+ categoryName : String ,
164
+ categoryId : String?
165
+ ): ValidationResult {
231
166
if (categoryName.isEmpty()) {
232
167
return ValidationResult (
233
168
successful = false ,
@@ -242,7 +177,11 @@ class CategoryRepositoryImpl(
242
177
)
243
178
}
244
179
245
- if (this .findCategoryByName(categoryName, categoryId)) {
180
+ val result = withContext(ioDispatcher) {
181
+ findCategoryByName(categoryName, categoryId)
182
+ }
183
+
184
+ if (result) {
246
185
return ValidationResult (
247
186
successful = false ,
248
187
errorMessage = CATEGORY_NAME_ALREADY_EXIST_ERROR
0 commit comments