@@ -9,6 +9,7 @@ import com.niyaj.common.utils.Constants.SELECTED_CART_ORDER_ID
9
9
import com.niyaj.common.utils.Resource
10
10
import com.niyaj.common.utils.ValidationResult
11
11
import com.niyaj.common.utils.getCalculatedStartDate
12
+ import com.niyaj.data.mapper.toEntity
12
13
import com.niyaj.data.repository.CartOrderRepository
13
14
import com.niyaj.data.repository.SettingsRepository
14
15
import com.niyaj.data.repository.validation.CartOrderValidationRepository
@@ -41,6 +42,7 @@ import kotlinx.coroutines.CoroutineDispatcher
41
42
import kotlinx.coroutines.flow.Flow
42
43
import kotlinx.coroutines.flow.channelFlow
43
44
import kotlinx.coroutines.flow.collectLatest
45
+ import kotlinx.coroutines.flow.mapLatest
44
46
import kotlinx.coroutines.withContext
45
47
import org.mongodb.kbson.BsonObjectId
46
48
import timber.log.Timber
@@ -137,45 +139,32 @@ class CartOrderRepositoryImpl(
137
139
}
138
140
139
141
override suspend fun getAllAddress (searchText : String ): Flow <List <Address >> {
140
- return channelFlow {
141
- withContext(ioDispatcher) {
142
- try {
143
- val items = realm.query<AddressEntity >()
144
- .sort(" addressId" , Sort .DESCENDING )
145
- .find()
146
- .asFlow()
147
-
142
+ return withContext(ioDispatcher) {
143
+ realm.query<AddressEntity >()
144
+ .sort(" addressId" , Sort .DESCENDING )
145
+ .find()
146
+ .asFlow()
147
+ .mapLatest { items ->
148
148
items.collectWithSearch(
149
149
transform = { it.toExternalModel() },
150
150
searchFilter = { it.filterAddress(searchText) },
151
- send = { send(it) }
152
151
)
153
-
154
- } catch (e: Exception ) {
155
- send(emptyList())
156
152
}
157
- }
158
153
}
159
154
}
160
155
161
156
override suspend fun getAllCustomers (searchText : String ): Flow <List <Customer >> {
162
- return channelFlow {
163
- withContext(ioDispatcher) {
164
- try {
165
- val items = realm.query<CustomerEntity >()
166
- .sort(" customerId" , Sort .DESCENDING )
167
- .find()
168
- .asFlow()
169
-
157
+ return withContext(ioDispatcher) {
158
+ realm.query<CustomerEntity >()
159
+ .sort(" customerId" , Sort .DESCENDING )
160
+ .find()
161
+ .asFlow()
162
+ .mapLatest { items ->
170
163
items.collectWithSearch(
171
164
transform = { it.toExternalModel() },
172
165
searchFilter = { it.filterCustomer(searchText) },
173
- send = { send(it) }
174
166
)
175
- } catch (e: Exception ) {
176
- send(emptyList())
177
167
}
178
- }
179
168
}
180
169
}
181
170
@@ -191,13 +180,16 @@ class CartOrderRepositoryImpl(
191
180
}
192
181
}
193
182
194
- override suspend fun createNewOrder (newOrder : CartOrder ): Resource <Boolean > {
195
- return try {
196
- withContext(ioDispatcher) {
197
- val validateOrderId = validateOrderId(newOrder.orderId, newOrder.cartOrderId)
183
+ override suspend fun createOrUpdateCartOrder (
184
+ newOrder : CartOrder ,
185
+ cartOrderId : String
186
+ ): Resource <Boolean > {
187
+ return withContext(ioDispatcher) {
188
+ try {
189
+ val validateOrderId = validateOrderId(newOrder.orderId, cartOrderId)
198
190
val validateAddress = validateCustomerAddress(
199
191
newOrder.orderType,
200
- newOrder.address?.addressName ? : " "
192
+ customerAddress = newOrder.address?.addressName ? : " "
201
193
)
202
194
val validateCustomer = validateCustomerPhone(
203
195
newOrder.orderType,
@@ -241,14 +233,12 @@ class CartOrderRepositoryImpl(
241
233
realm.query<AddressEntity >(
242
234
" addressId == $0" ,
243
235
newOrder.address!! .addressId
244
- )
245
- .first().find()
236
+ ).first().find()
246
237
} else {
247
238
realm.query<AddressEntity >(
248
239
" addressName == $0" ,
249
240
newOrder.address!! .addressName
250
- )
251
- .first().find()
241
+ ).first().find()
252
242
}
253
243
254
244
if (findAddress == null ) {
@@ -267,121 +257,12 @@ class CartOrderRepositoryImpl(
267
257
}
268
258
}
269
259
270
- val cartOrder = CartOrderEntity ()
271
- cartOrder.cartOrderId =
272
- newOrder.cartOrderId.ifEmpty { BsonObjectId ().toHexString() }
273
- cartOrder.orderId = newOrder.orderId
274
- cartOrder.orderType = newOrder.orderType.name
275
- cartOrder.createdAt =
276
- newOrder.createdAt.ifEmpty { System .currentTimeMillis().toString() }
277
-
278
- realm.write {
279
- if (customer != null ) {
280
- findLatest(customer)?.also {
281
- cartOrder.customer = it
282
- }
283
- }
284
-
285
- if (address != null ) {
286
- findLatest(address)?.also {
287
- cartOrder.address = it
288
- }
289
- }
290
-
291
- this .copyToRealm(cartOrder)
292
- }
293
-
294
- addSelectedCartOrder(cartOrder.cartOrderId)
295
-
296
- Resource .Success (true )
297
- } else {
298
- Resource .Error (" Unable to validate cart order" )
299
- }
300
- }
301
- } catch (e: Exception ) {
302
- Resource .Error (e.message ? : " Unable to create order" )
303
- }
304
- }
305
-
306
- override suspend fun updateCartOrder (
307
- newOrder : CartOrder ,
308
- cartOrderId : String
309
- ): Resource <Boolean > {
310
- return try {
311
- withContext(ioDispatcher) {
312
- val validateOrderId = validateOrderId(newOrder.orderId, cartOrderId)
313
- val validateAddress =
314
- validateCustomerAddress(newOrder.orderType, newOrder.address?.addressName ? : " " )
315
- val validateCustomer = validateCustomerPhone(
316
- newOrder.orderType,
317
- newOrder.customer?.customerPhone ? : " "
318
- )
319
-
320
- val hasError = listOf (
321
- validateAddress,
322
- validateCustomer,
323
- validateOrderId
324
- ).any { ! it.successful }
260
+ val cartOrder = realm
261
+ .query<CartOrderEntity >(" cartOrderId == $0" , cartOrderId)
262
+ .first()
263
+ .find()
325
264
326
- if (! hasError) {
327
- val cartOrder =
328
- realm.query<CartOrderEntity >(" cartOrderId == $0" , cartOrderId).first()
329
- .find()
330
265
if (cartOrder != null ) {
331
- var customer: CustomerEntity ? = null
332
-
333
- var address: AddressEntity ? = null
334
-
335
- if (newOrder.customer != null ) {
336
- val findCustomer = realm.query<CustomerEntity >(
337
- " customerPhone == $0" ,
338
- newOrder.customer!! .customerPhone
339
- ).first().find()
340
-
341
- if (findCustomer == null ) {
342
- val newCustomer = CustomerEntity ()
343
- newCustomer.customerId = BsonObjectId ().toHexString()
344
- newCustomer.customerPhone = newOrder.customer!! .customerPhone
345
- newCustomer.createdAt = System .currentTimeMillis().toString()
346
-
347
- customer = realm.write {
348
- this .copyToRealm(newCustomer)
349
- }
350
- } else {
351
- customer = findCustomer
352
- }
353
- }
354
-
355
- if (newOrder.address != null ) {
356
-
357
- val findAddress = if (newOrder.address!! .addressId.isNotEmpty()) {
358
- realm.query<AddressEntity >(
359
- " addressId == $0" ,
360
- newOrder.address!! .addressId
361
- ).first().find()
362
- } else {
363
- realm.query<AddressEntity >(
364
- " addressName == $0" ,
365
- newOrder.address!! .addressName
366
- ).first().find()
367
- }
368
-
369
- if (findAddress == null ) {
370
- val newAddress = AddressEntity ()
371
- newAddress.addressId = BsonObjectId ().toHexString()
372
- newAddress.shortName = newOrder.address!! .shortName
373
- newAddress.addressName = newOrder.address!! .addressName
374
- newAddress.createdAt = System .currentTimeMillis().toString()
375
-
376
- address = realm.write {
377
- this .copyToRealm(newAddress)
378
- }
379
-
380
- } else {
381
- address = findAddress
382
- }
383
- }
384
-
385
266
realm.write {
386
267
findLatest(cartOrder)?.apply {
387
268
this .orderId = newOrder.orderId
@@ -408,15 +289,30 @@ class CartOrderRepositoryImpl(
408
289
409
290
Resource .Success (true )
410
291
} else {
411
- Resource .Error (" Unable to find cart order" )
412
- }
292
+ val data = realm.write {
293
+ this .copyToRealm(
294
+ newOrder.toEntity(
295
+ customerEntity = if (customer != null ) {
296
+ findLatest(customer)
297
+ } else null ,
298
+ addressEntity = if (address != null ) {
299
+ findLatest(address)
300
+ } else null
301
+ )
302
+ )
303
+ }
304
+
305
+ addSelectedCartOrder(data.cartOrderId)
413
306
307
+ Resource .Success (true )
308
+ }
414
309
} else {
415
310
Resource .Error (" Unable to validate cart order" )
416
311
}
312
+
313
+ } catch (e: Exception ) {
314
+ Resource .Error (e.message ? : " Unable to update order" )
417
315
}
418
- } catch (e: Exception ) {
419
- Resource .Error (e.message ? : " Unable to update order" )
420
316
}
421
317
}
422
318
@@ -575,7 +471,7 @@ class CartOrderRepositoryImpl(
575
471
}
576
472
}
577
473
578
- override suspend fun getSelectedCartOrders (): Flow <String ?> {
474
+ override fun getSelectedCartOrders (): Flow <String ?> {
579
475
return channelFlow {
580
476
withContext(ioDispatcher) {
581
477
val selectedCartOrder = realm
@@ -656,11 +552,11 @@ class CartOrderRepositoryImpl(
656
552
657
553
override suspend fun deleteCartOrders (deleteAll : Boolean ): Resource <Boolean > {
658
554
return try {
659
- val settings = settingsRepository.getSetting().data!!
660
- val cartOrderDate =
661
- getCalculatedStartDate(days = " -${settings.cartOrderDataDeletionInterval} " )
662
-
663
555
withContext(ioDispatcher) {
556
+ val settings = settingsRepository.getSetting().data!!
557
+ val cartOrderDate =
558
+ getCalculatedStartDate(days = " -${settings.cartOrderDataDeletionInterval} " )
559
+
664
560
val cartOrders = if (deleteAll) {
665
561
realm.query<CartOrderEntity >().find()
666
562
} else {
0 commit comments