ordering-ui-react-native 0.15.90 → 0.15.91-release

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (239) hide show
  1. package/package.json +7 -3
  2. package/src/DeliveryApp.tsx +43 -1
  3. package/src/components/ActiveOrders/index.tsx +61 -63
  4. package/src/components/ActiveOrders/styles.tsx +1 -1
  5. package/src/components/AddressForm/index.tsx +18 -2
  6. package/src/components/BusinessBasicInformation/index.tsx +11 -19
  7. package/src/components/BusinessController/index.tsx +16 -8
  8. package/src/components/BusinessInformation/index.tsx +14 -0
  9. package/src/components/BusinessTypeFilter/index.tsx +1 -2
  10. package/src/components/BusinessesListing/index.tsx +1 -1
  11. package/src/components/Checkout/index.tsx +25 -3
  12. package/src/components/DriverTips/index.tsx +11 -6
  13. package/src/components/LanguageSelector/index.tsx +21 -16
  14. package/src/components/LoginForm/index.tsx +120 -30
  15. package/src/components/LoginForm/styles.tsx +6 -0
  16. package/src/components/Messages/index.tsx +2 -2
  17. package/src/components/NotificationSetting/index.tsx +85 -0
  18. package/src/components/OrderDetails/index.tsx +7 -21
  19. package/src/components/PaymentOptions/index.tsx +335 -365
  20. package/src/components/PaymentOptionsWebView/index.tsx +120 -121
  21. package/src/components/ReviewDriver/index.tsx +1 -1
  22. package/src/components/ReviewOrder/index.tsx +2 -1
  23. package/src/components/ReviewProducts/index.tsx +11 -0
  24. package/src/components/SignupForm/index.tsx +145 -61
  25. package/src/components/SingleProductCard/index.tsx +16 -4
  26. package/src/components/SingleProductReview/index.tsx +1 -1
  27. package/src/components/StripeElementsForm/index.tsx +25 -16
  28. package/src/components/StripeMethodForm/index.tsx +22 -24
  29. package/src/components/UpsellingProducts/index.tsx +1 -1
  30. package/src/components/UserProfileForm/index.tsx +63 -6
  31. package/src/components/UserProfileForm/styles.tsx +8 -0
  32. package/src/components/VerifyPhone/styles.tsx +1 -2
  33. package/src/components/shared/OBottomPopup.tsx +6 -2
  34. package/src/components/shared/OModal.tsx +1 -1
  35. package/src/index.tsx +2 -0
  36. package/src/navigators/CheckoutNavigator.tsx +6 -0
  37. package/src/navigators/HomeNavigator.tsx +6 -0
  38. package/src/pages/BusinessesListing.tsx +7 -6
  39. package/src/pages/MultiCheckout.tsx +31 -0
  40. package/src/pages/MultiOrdersDetails.tsx +27 -0
  41. package/src/pages/OrderDetails.tsx +1 -1
  42. package/src/pages/ReviewDriver.tsx +2 -2
  43. package/src/pages/ReviewOrder.tsx +2 -2
  44. package/src/theme.json +0 -1
  45. package/src/types/index.tsx +18 -11
  46. package/src/utils/index.tsx +1 -2
  47. package/themes/business/index.tsx +4 -0
  48. package/themes/business/src/components/AcceptOrRejectOrder/index.tsx +1 -1
  49. package/themes/business/src/components/Chat/index.tsx +52 -92
  50. package/themes/business/src/components/DriverMap/index.tsx +6 -5
  51. package/themes/business/src/components/DriverSchedule/index.tsx +71 -0
  52. package/themes/business/src/components/DriverSchedule/styles.tsx +6 -0
  53. package/themes/business/src/components/LoginForm/index.tsx +89 -2
  54. package/themes/business/src/components/LoginForm/styles.tsx +6 -0
  55. package/themes/business/src/components/LogoutButton/index.tsx +1 -1
  56. package/themes/business/src/components/MapView/index.tsx +1 -1
  57. package/themes/business/src/components/MessagesOption/index.tsx +11 -1
  58. package/themes/business/src/components/NewOrderNotification/index.tsx +24 -13
  59. package/themes/business/src/components/OrderDetails/Business.tsx +1 -1
  60. package/themes/business/src/components/OrderDetails/Delivery.tsx +17 -7
  61. package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +26 -18
  62. package/themes/business/src/components/OrdersListManager/index.tsx +10 -3
  63. package/themes/business/src/components/OrdersOption/index.tsx +66 -20
  64. package/themes/business/src/components/OrdersOption/styles.tsx +5 -1
  65. package/themes/business/src/components/OrdersOptionBusiness/index.tsx +15 -1
  66. package/themes/business/src/components/OrdersOptionCity/index.tsx +15 -1
  67. package/themes/business/src/components/OrdersOptionDate/index.tsx +19 -6
  68. package/themes/business/src/components/OrdersOptionDelivery/index.tsx +15 -1
  69. package/themes/business/src/components/OrdersOptionDriver/index.tsx +15 -1
  70. package/themes/business/src/components/OrdersOptionPaymethod/index.tsx +15 -1
  71. package/themes/business/src/components/OrdersOptionStatus/index.tsx +10 -1
  72. package/themes/business/src/components/PreviousMessages/index.tsx +1 -0
  73. package/themes/business/src/components/PreviousOrders/index.tsx +7 -7
  74. package/themes/business/src/components/ProductItemAccordion/index.tsx +5 -4
  75. package/themes/business/src/components/ReviewCustomer/index.tsx +1 -1
  76. package/themes/business/src/components/ScheduleBlocked/index.tsx +53 -0
  77. package/themes/business/src/components/UserFormDetails/index.tsx +5 -2
  78. package/themes/business/src/components/UserProfileForm/index.tsx +28 -4
  79. package/themes/business/src/components/shared/ODropDown.tsx +42 -8
  80. package/themes/business/src/components/shared/ODropDownCalendar.tsx +36 -7
  81. package/themes/business/src/components/shared/OModal.tsx +41 -38
  82. package/themes/business/src/types/index.tsx +15 -7
  83. package/themes/doordash/src/components/BusinessesListing/index.tsx +1 -1
  84. package/themes/doordash/src/components/LoginForm/index.tsx +1 -2
  85. package/themes/instacart/src/components/BusinessesListing/index.tsx +1 -1
  86. package/themes/kiosk/src/components/BusinessMenu/index.tsx +25 -26
  87. package/themes/kiosk/src/components/BusinessesListing/index.tsx +2 -3
  88. package/themes/kiosk/src/components/Cart/index.tsx +10 -11
  89. package/themes/kiosk/src/components/CartBottomSheet/index.tsx +9 -2
  90. package/themes/kiosk/src/components/CartContent/index.tsx +0 -11
  91. package/themes/kiosk/src/components/CartItem/index.tsx +4 -3
  92. package/themes/kiosk/src/components/CategoriesMenu/index.tsx +107 -62
  93. package/themes/kiosk/src/components/Checkout/index.tsx +40 -22
  94. package/themes/kiosk/src/components/CustomerName/index.tsx +0 -6
  95. package/themes/kiosk/src/components/DrawerView/index.tsx +1 -0
  96. package/themes/kiosk/src/components/DrawerView/styles.tsx +2 -2
  97. package/themes/kiosk/src/components/NavBar/index.tsx +14 -14
  98. package/themes/kiosk/src/components/OptionCard/index.tsx +1 -1
  99. package/themes/kiosk/src/components/OrderDetails/index.tsx +2 -2
  100. package/themes/kiosk/src/components/OrderTypeCardSelector/index.tsx +9 -11
  101. package/themes/kiosk/src/components/PaymentOptions/index.tsx +55 -53
  102. package/themes/kiosk/src/components/ProductForm/index.tsx +6 -7
  103. package/themes/kiosk/src/components/ProductOptionSubOption/index.tsx +3 -1
  104. package/themes/kiosk/src/components/UpsellingProducts/index.tsx +16 -5
  105. package/themes/kiosk/src/components/shared/OButton.tsx +5 -18
  106. package/themes/kiosk/src/types/index.d.ts +1 -0
  107. package/themes/original/index.tsx +22 -0
  108. package/themes/original/src/components/ActiveOrders/index.tsx +15 -132
  109. package/themes/original/src/components/ActiveOrders/styles.tsx +0 -54
  110. package/themes/original/src/components/AddressForm/index.tsx +137 -134
  111. package/themes/original/src/components/AddressList/index.tsx +2 -2
  112. package/themes/original/src/components/AppleLogin/index.tsx +6 -8
  113. package/themes/original/src/components/BusinessBasicInformation/index.tsx +302 -160
  114. package/themes/original/src/components/BusinessBasicInformation/styles.tsx +6 -2
  115. package/themes/original/src/components/BusinessController/index.tsx +179 -96
  116. package/themes/original/src/components/BusinessController/styles.tsx +5 -0
  117. package/themes/original/src/components/BusinessItemAccordion/index.tsx +11 -8
  118. package/themes/original/src/components/BusinessItemAccordion/styles.tsx +3 -1
  119. package/themes/original/src/components/BusinessListingSearch/BusinessControllerSkeletons/index.tsx +57 -0
  120. package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/index.tsx +59 -0
  121. package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/styles.tsx +13 -0
  122. package/themes/original/src/components/BusinessListingSearch/index.tsx +217 -127
  123. package/themes/original/src/components/BusinessListingSearch/styles.tsx +29 -11
  124. package/themes/original/src/components/BusinessPreorder/index.tsx +1 -1
  125. package/themes/original/src/components/BusinessProductsCategories/index.tsx +2 -2
  126. package/themes/original/src/components/BusinessProductsList/CategoryDescription/index.tsx +44 -0
  127. package/themes/original/src/components/BusinessProductsList/SubcategoriesComponent/index.tsx +87 -0
  128. package/themes/original/src/components/BusinessProductsList/SubcategoriesComponent/styles.tsx +12 -0
  129. package/themes/original/src/components/BusinessProductsList/index.tsx +66 -73
  130. package/themes/original/src/components/BusinessProductsList/styles.tsx +0 -3
  131. package/themes/original/src/components/BusinessProductsListing/index.tsx +296 -178
  132. package/themes/original/src/components/BusinessProductsListing/styles.tsx +18 -0
  133. package/themes/original/src/components/BusinessReviews/index.tsx +6 -1
  134. package/themes/original/src/components/BusinessTypeFilter/index.tsx +106 -38
  135. package/themes/original/src/components/BusinessTypeFilter/styles.tsx +2 -0
  136. package/themes/original/src/components/BusinessesListing/Layout/Appointment/index.tsx +561 -0
  137. package/themes/original/src/components/BusinessesListing/{styles.tsx → Layout/Appointment/styles.tsx} +24 -2
  138. package/themes/original/src/components/BusinessesListing/Layout/Original/index.tsx +673 -0
  139. package/themes/original/src/components/BusinessesListing/Layout/Original/styles.tsx +137 -0
  140. package/themes/original/src/components/BusinessesListing/index.tsx +102 -462
  141. package/themes/original/src/components/Cart/index.tsx +82 -37
  142. package/themes/original/src/components/Cart/styles.tsx +4 -0
  143. package/themes/original/src/components/CartContent/index.tsx +22 -16
  144. package/themes/original/src/components/Checkout/index.tsx +141 -93
  145. package/themes/original/src/components/Checkout/styles.tsx +0 -1
  146. package/themes/original/src/components/DriverTips/index.tsx +17 -12
  147. package/themes/original/src/components/Favorite/index.tsx +92 -0
  148. package/themes/original/src/components/Favorite/styles.tsx +22 -0
  149. package/themes/original/src/components/FavoriteList/index.tsx +298 -0
  150. package/themes/original/src/components/FavoriteList/styles.tsx +5 -0
  151. package/themes/original/src/components/GPSButton/index.tsx +25 -17
  152. package/themes/original/src/components/GoogleMap/index.tsx +21 -12
  153. package/themes/original/src/components/Help/index.tsx +21 -4
  154. package/themes/original/src/components/HelpAccountAndPayment/index.tsx +8 -3
  155. package/themes/original/src/components/HelpGuide/index.tsx +8 -3
  156. package/themes/original/src/components/HelpOrder/index.tsx +8 -3
  157. package/themes/original/src/components/HighestRatedBusinesses/index.tsx +18 -1
  158. package/themes/original/src/components/LastOrders/index.tsx +12 -1
  159. package/themes/original/src/components/LoginForm/Otp/index.tsx +3 -3
  160. package/themes/original/src/components/LoginForm/index.tsx +52 -13
  161. package/themes/original/src/components/LoginForm/styles.tsx +1 -3
  162. package/themes/original/src/components/Messages/index.tsx +17 -17
  163. package/themes/original/src/components/MomentSelector/index.tsx +197 -0
  164. package/themes/original/src/components/MomentSelector/styles.tsx +6 -0
  165. package/themes/original/src/components/MultiCartsPaymethodsAndWallets/index.tsx +243 -0
  166. package/themes/original/src/components/MultiCartsPaymethodsAndWallets/styles.tsx +46 -0
  167. package/themes/original/src/components/MultiCheckout/index.tsx +304 -0
  168. package/themes/original/src/components/MultiCheckout/styles.tsx +59 -0
  169. package/themes/original/src/components/MultiOrdersDetails/SingleOrderCard.tsx +372 -0
  170. package/themes/original/src/components/MultiOrdersDetails/index.tsx +262 -0
  171. package/themes/original/src/components/MultiOrdersDetails/styles.tsx +50 -0
  172. package/themes/original/src/components/MyOrders/index.tsx +132 -27
  173. package/themes/original/src/components/MyOrders/styles.tsx +8 -1
  174. package/themes/original/src/components/NavBar/index.tsx +11 -5
  175. package/themes/original/src/components/NotFoundSource/index.tsx +2 -1
  176. package/themes/original/src/components/OrderDetails/OrderHistory.tsx +167 -0
  177. package/themes/original/src/components/OrderDetails/index.tsx +154 -77
  178. package/themes/original/src/components/OrderDetails/styles.tsx +5 -2
  179. package/themes/original/src/components/OrderItAgain/index.tsx +73 -0
  180. package/themes/original/src/components/OrderItAgain/styles.tsx +10 -0
  181. package/themes/original/src/components/OrderProgress/index.tsx +8 -2
  182. package/themes/original/src/components/OrderSummary/index.tsx +2 -35
  183. package/themes/original/src/components/OrderTypeSelector/index.tsx +84 -36
  184. package/themes/original/src/components/OrderTypeSelector/styles.tsx +19 -1
  185. package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/index.tsx +140 -0
  186. package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/styles.tsx +6 -0
  187. package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/index.tsx +53 -0
  188. package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/styles.tsx +6 -0
  189. package/themes/original/src/components/OrdersOption/index.tsx +138 -46
  190. package/themes/original/src/components/OrdersOption/styles.tsx +4 -1
  191. package/themes/original/src/components/PaymentOptionCash/index.tsx +2 -2
  192. package/themes/original/src/components/PaymentOptionWallet/index.tsx +15 -22
  193. package/themes/original/src/components/PaymentOptions/index.tsx +57 -37
  194. package/themes/original/src/components/PhoneInputNumber/index.tsx +4 -10
  195. package/themes/original/src/components/PlaceSpot/index.tsx +243 -47
  196. package/themes/original/src/components/PlaceSpot/styles.tsx +0 -2
  197. package/themes/original/src/components/PreviousOrders/index.tsx +18 -147
  198. package/themes/original/src/components/ProductForm/index.tsx +737 -682
  199. package/themes/original/src/components/ProductForm/styles.tsx +9 -7
  200. package/themes/original/src/components/ProductItemAccordion/index.tsx +2 -2
  201. package/themes/original/src/components/ProductOption/index.tsx +1 -1
  202. package/themes/original/src/components/ProductOptionSubOption/index.tsx +13 -9
  203. package/themes/original/src/components/ProfessionalFilter/index.tsx +128 -0
  204. package/themes/original/src/components/ProfessionalFilter/styles.tsx +0 -0
  205. package/themes/original/src/components/ProfessionalProfile/index.tsx +298 -0
  206. package/themes/original/src/components/ProfessionalProfile/styles.tsx +46 -0
  207. package/themes/original/src/components/Promotions/index.tsx +22 -6
  208. package/themes/original/src/components/ReviewDriver/index.tsx +6 -6
  209. package/themes/original/src/components/ReviewOrder/index.tsx +1 -1
  210. package/themes/original/src/components/ReviewTrigger/index.tsx +118 -0
  211. package/themes/original/src/components/ReviewTrigger/styles.tsx +34 -0
  212. package/themes/original/src/components/SearchBar/index.tsx +13 -5
  213. package/themes/original/src/components/ServiceForm/index.tsx +579 -0
  214. package/themes/original/src/components/ServiceForm/styles.tsx +50 -0
  215. package/themes/original/src/components/SignupForm/index.tsx +237 -127
  216. package/themes/original/src/components/SingleOrderCard/index.tsx +316 -0
  217. package/themes/original/src/components/SingleOrderCard/styles.tsx +54 -0
  218. package/themes/original/src/components/SingleProductCard/index.tsx +204 -95
  219. package/themes/original/src/components/SingleProductCard/styles.tsx +2 -2
  220. package/themes/original/src/components/StripeElementsForm/index.tsx +25 -9
  221. package/themes/original/src/components/StripeElementsForm/naked.tsx +2 -2
  222. package/themes/original/src/components/UpsellingProducts/index.tsx +7 -3
  223. package/themes/original/src/components/UserDetails/index.tsx +32 -18
  224. package/themes/original/src/components/UserFormDetails/index.tsx +108 -74
  225. package/themes/original/src/components/UserProfile/index.tsx +4 -0
  226. package/themes/original/src/components/UserProfileForm/index.tsx +15 -10
  227. package/themes/original/src/components/UserVerification/index.tsx +178 -192
  228. package/themes/original/src/components/WalletTransactions/index.tsx +76 -0
  229. package/themes/original/src/components/WalletTransactions/styles.tsx +13 -0
  230. package/themes/original/src/components/Wallets/index.tsx +176 -162
  231. package/themes/original/src/components/Wallets/styles.tsx +10 -8
  232. package/themes/original/src/components/shared/OBottomPopup.tsx +47 -14
  233. package/themes/original/src/components/shared/OButton.tsx +10 -3
  234. package/themes/original/src/components/shared/OInput.tsx +3 -2
  235. package/themes/original/src/components/shared/OModal.tsx +4 -2
  236. package/themes/original/src/layouts/FloatingBottomContainer.tsx +5 -1
  237. package/themes/original/src/types/index.tsx +200 -48
  238. package/themes/original/src/utils/index.tsx +77 -0
  239. package/themes/uber-eats/src/components/BusinessesListing/index.tsx +1 -1
@@ -1,6 +1,6 @@
1
1
  //React & React Native
2
2
  import React, { useState, useEffect } from 'react';
3
- import { StyleSheet, View, Platform, ScrollView } from 'react-native';
3
+ import { StyleSheet, View } from 'react-native';
4
4
 
5
5
  // Thirds
6
6
  import { Placeholder, PlaceholderLine, Fade } from 'rn-placeholder';
@@ -29,7 +29,6 @@ import { NotFoundSource } from '../NotFoundSource';
29
29
  import { getOrderStatus } from '../../utils';
30
30
  import { OrderHeaderComponent } from './OrderHeaderComponent';
31
31
  import { OrderContentComponent } from './OrderContentComponent';
32
-
33
32
  //Styles
34
33
  import { OrderDetailsContainer, Pickup } from './styles';
35
34
 
@@ -52,7 +51,8 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
52
51
  appTitle,
53
52
  handleClickLogisticOrder,
54
53
  forceUpdate,
55
- getPermissions
54
+ getPermissions,
55
+ isGrantedPermissions
56
56
  } = props;
57
57
  const [, { showToast }] = useToast();
58
58
  const { order } = props.order
@@ -73,6 +73,8 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
73
73
  key?: string | null;
74
74
  }>({ open: false, content: [], key: null });
75
75
 
76
+ const validStatusComplete = [9, 19, 23]
77
+
76
78
  const logisticOrderStatus = [4, 6, 7]
77
79
 
78
80
  const showFloatButtonsPickUp: any = {
@@ -102,6 +104,10 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
102
104
  };
103
105
 
104
106
  const handleOpenMapView = async () => {
107
+ if (!isGrantedPermissions) {
108
+ navigation.navigate('RequestPermissions')
109
+ return
110
+ }
105
111
  const _permissions = await getPermissions()
106
112
 
107
113
  const isBlocked = _permissions.some((_permission: string) => permissions?.locationStatus?.[_permission] === 'blocked')
@@ -128,6 +134,10 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
128
134
  };
129
135
 
130
136
  const handleViewActionOrder = (action: string) => {
137
+ if (!isGrantedPermissions) {
138
+ navigation.navigate('RequestPermissions')
139
+ return
140
+ }
131
141
  if (openModalForMapView) {
132
142
  setOpenModalForMapView(false);
133
143
  }
@@ -237,17 +247,17 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
237
247
  let isToFollow = false;
238
248
  let isBusinessMarker = false;
239
249
 
240
- if (order?.status === 7 || order?.status === 8) {
250
+ if (order?.status === 7 || order?.status === 8 || order?.status === 18) {
241
251
  const markerBusiness = 'Business';
242
252
  isBusinessMarker = true;
243
253
  locationMarker = locations.find(
244
254
  (location: any) => location.type === markerBusiness,
245
255
  );
246
256
 
247
- if (order?.status === 8) {
257
+ if (order?.status === 8 || order?.status === 18) {
248
258
  isToFollow = true;
249
259
  }
250
- } else if (order?.status === 3 || order?.status === 9) {
260
+ } else if (order?.status === 3 || order?.status === 9 || order?.status === 19 || order?.status === 23) {
251
261
  const markerCustomer = 'Customer';
252
262
  isToFollow = true;
253
263
  isBusinessMarker = false;
@@ -385,7 +395,7 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
385
395
  widthButton={'45%'}
386
396
  />
387
397
  )}
388
- {(order?.status === 9 || order?.status === 19) && (
398
+ {(validStatusComplete.includes(order?.status)) && (
389
399
  <>
390
400
  <FloatingButton
391
401
  disabled={props.order?.loading}
@@ -77,6 +77,7 @@ export const OrderContentComponent = (props: OrderContent) => {
77
77
  })
78
78
 
79
79
  const getIncludedTaxes = () => {
80
+ if (!order?.taxes) return 0
80
81
  if (order?.taxes?.length === 0) {
81
82
  return order.tax_type === 1 ? order?.summary?.tax ?? 0 : 0
82
83
  } else {
@@ -273,8 +274,8 @@ export const OrderContentComponent = (props: OrderContent) => {
273
274
  <View style={styles.linkWithIcons}>
274
275
  <OLink
275
276
  PressStyle={styles.linkWithIcons}
276
- url={`tel:${order?.customer?.cellphone}`}
277
- shorcut={order?.customer?.cellphone}
277
+ url={`tel:${!!order?.customer?.country_phone_code ? '+' + order?.customer?.country_phone_code : ''} ${order?.customer?.cellphone}`}
278
+ shorcut={`${!!order?.customer?.country_phone_code ? '+' + order?.customer?.country_phone_code : ''} ${order?.customer?.cellphone}`}
278
279
  TextStyle={styles.textLink}
279
280
  />
280
281
  </View>
@@ -322,6 +323,12 @@ export const OrderContentComponent = (props: OrderContent) => {
322
323
  {order?.customer?.zipcode}
323
324
  </OText>
324
325
  )}
326
+
327
+ {!!order?.on_behalf_of && (
328
+ <OText numberOfLines={1} mBottom={4} ellipsizeMode="tail">
329
+ {t('ON_BEHALF_OF', 'On behalf of')}{': '} {order?.on_behalf_of}
330
+ </OText>
331
+ )}
325
332
  {((order?.delivery_option !== undefined && order?.delivery_type === 1) || !!order?.comment) && (
326
333
  <View style={{ marginTop: 10 }}>
327
334
  {order?.delivery_option !== undefined && order?.delivery_type === 1 && (
@@ -357,6 +364,7 @@ export const OrderContentComponent = (props: OrderContent) => {
357
364
  <ProductItemAccordion
358
365
  key={product?.id || i}
359
366
  product={product}
367
+ currency={order?.currency}
360
368
  />
361
369
  ))}
362
370
  </OrderProducts>
@@ -365,7 +373,7 @@ export const OrderContentComponent = (props: OrderContent) => {
365
373
  <Table>
366
374
  <OText mBottom={4}>{t('SUBTOTAL', 'Subtotal')}</OText>
367
375
  <OText mBottom={4}>
368
- {parsePrice(((order?.summary?.subtotal ?? order?.subtotal) + getIncludedTaxes()))}
376
+ {parsePrice(((order?.summary?.subtotal ?? order?.subtotal) + getIncludedTaxes()), { currency: order?.currency})}
369
377
  </OText>
370
378
  </Table>
371
379
  {(order?.summary?.discount > 0 ?? order?.discount > 0) && order?.offers?.length === 0 && (
@@ -378,7 +386,7 @@ export const OrderContentComponent = (props: OrderContent) => {
378
386
  ) : (
379
387
  <OText mBottom={4}>{t('DISCOUNT', theme?.defaultLanguages?.DISCOUNT || 'Discount')}</OText>
380
388
  )}
381
- <OText>- {parsePrice(order?.summary?.discount ?? order?.discount)}</OText>
389
+ <OText>- {parsePrice(order?.summary?.discount ?? order?.discount, { currency: order?.currency})}</OText>
382
390
  </Table>
383
391
  )}
384
392
  {
@@ -392,7 +400,7 @@ export const OrderContentComponent = (props: OrderContent) => {
392
400
  )}
393
401
  </OText>
394
402
  </OSRow>
395
- <OText mBottom={4}>- {parsePrice(offer?.summary?.discount)}</OText>
403
+ <OText mBottom={4}>- {parsePrice(offer?.summary?.discount, { currency: order?.currency})}</OText>
396
404
  </Table>
397
405
  ))
398
406
  }
@@ -400,9 +408,9 @@ export const OrderContentComponent = (props: OrderContent) => {
400
408
  <Table>
401
409
  <OText mBottom={4}>{t('SUBTOTAL_WITH_DISCOUNT', 'Subtotal with discount')}</OText>
402
410
  {order?.tax_type === 1 ? (
403
- <OText mBottom={4}>{parsePrice((order?.summary?.subtotal_with_discount + getIncludedTaxesDiscounts() ?? 0))}</OText>
411
+ <OText mBottom={4}>{parsePrice((order?.summary?.subtotal_with_discount + getIncludedTaxesDiscounts() ?? 0), { currency: order?.currency})}</OText>
404
412
  ) : (
405
- <OText mBottom={4}>{parsePrice(order?.summary?.subtotal_with_discount ?? 0)}</OText>
413
+ <OText mBottom={4}>{parsePrice(order?.summary?.subtotal_with_discount ?? 0, { currency: order?.currency})}</OText>
406
414
  )}
407
415
  </Table>
408
416
  )}
@@ -412,7 +420,7 @@ export const OrderContentComponent = (props: OrderContent) => {
412
420
  {t('TAX', 'Tax')} {`(${verifyDecimals(order?.tax, parseNumber)}%)`}
413
421
  </OText>
414
422
  <OText mBottom={4}>
415
- {parsePrice(order?.summary?.tax ?? 0)}
423
+ {parsePrice(order?.summary?.tax ?? 0, { currency: order?.currency})}
416
424
  </OText>
417
425
  </Table>
418
426
  )}
@@ -423,7 +431,7 @@ export const OrderContentComponent = (props: OrderContent) => {
423
431
  {t('SERVICE_FEE', 'Service fee')}
424
432
  {`(${verifyDecimals(order?.service_fee, parseNumber)}%)`}
425
433
  </OText>
426
- <OText mBottom={4}>{parsePrice(order?.summary?.service_fee ?? 0)}</OText>
434
+ <OText mBottom={4}>{parsePrice(order?.summary?.service_fee ?? 0, { currency: order?.currency})}</OText>
427
435
  </Table>
428
436
  )
429
437
  }
@@ -436,7 +444,7 @@ export const OrderContentComponent = (props: OrderContent) => {
436
444
  {`(${verifyDecimals(tax?.rate, parseNumber)}%)`}{' '}
437
445
  </OText>
438
446
  </OSRow>
439
- <OText mBottom={4}>{parsePrice(tax?.summary?.tax_after_discount ?? tax?.summary?.tax ?? 0)}</OText>
447
+ <OText mBottom={4}>{parsePrice(tax?.summary?.tax_after_discount ?? tax?.summary?.tax ?? 0, { currency: order?.currency})}</OText>
440
448
  </Table>
441
449
  ))
442
450
  }
@@ -446,10 +454,10 @@ export const OrderContentComponent = (props: OrderContent) => {
446
454
  <OSRow>
447
455
  <OText mBottom={4}>
448
456
  {fee.name || t('INHERIT_FROM_BUSINESS', 'Inherit from business')}
449
- ({fee?.fixed > 0 && `${parsePrice(fee?.fixed)} + `}{fee.percentage}%){' '}
457
+ ({fee?.fixed > 0 && `${parsePrice(fee?.fixed, { currency: order?.currency})} + `}{fee.percentage}%){' '}
450
458
  </OText>
451
459
  </OSRow>
452
- <OText mBottom={4}>{parsePrice(fee?.summary?.fixed + (fee?.summary?.percentage_after_discount ?? fee?.summary?.percentage) ?? 0)}</OText>
460
+ <OText mBottom={4}>{parsePrice(fee?.summary?.fixed + (fee?.summary?.percentage_after_discount ?? fee?.summary?.percentage) ?? 0, { currency: order?.currency})}</OText>
453
461
  </Table>
454
462
  ))
455
463
  }
@@ -464,7 +472,7 @@ export const OrderContentComponent = (props: OrderContent) => {
464
472
  )}
465
473
  </OText>
466
474
  </OSRow>
467
- <OText mBottom={4}>- {parsePrice(offer?.summary?.discount)}</OText>
475
+ <OText mBottom={4}>- {parsePrice(offer?.summary?.discount, { currency: order?.currency})}</OText>
468
476
  </Table>
469
477
  ))
470
478
  }
@@ -476,7 +484,7 @@ export const OrderContentComponent = (props: OrderContent) => {
476
484
  </OText>
477
485
 
478
486
  <OText mBottom={4}>
479
- {parsePrice(order?.summary?.delivery_price)}
487
+ {parsePrice(order?.summary?.delivery_price, { currency: order?.currency})}
480
488
  </OText>
481
489
  </Table>
482
490
  )
@@ -492,7 +500,7 @@ export const OrderContentComponent = (props: OrderContent) => {
492
500
  )}
493
501
  </OText>
494
502
  </OSRow>
495
- <OText mBottom={4}>- {parsePrice(offer?.summary?.discount)}</OText>
503
+ <OText mBottom={4}>- {parsePrice(offer?.summary?.discount, { currency: order?.currency})}</OText>
496
504
  </Table>
497
505
  ))
498
506
  }
@@ -507,7 +515,7 @@ export const OrderContentComponent = (props: OrderContent) => {
507
515
  `(${verifyDecimals(order?.summary?.driver_tip, parseNumber)}%)`
508
516
  )}
509
517
  </OText>
510
- <OText mBottom={4}>{parsePrice(order?.summary?.driver_tip ?? order?.totalDriverTip)}</OText>
518
+ <OText mBottom={4}>{parsePrice(order?.summary?.driver_tip ?? order?.totalDriverTip, { currency: order?.currency})}</OText>
511
519
  </Table>
512
520
  )}
513
521
 
@@ -521,7 +529,7 @@ export const OrderContentComponent = (props: OrderContent) => {
521
529
  mBottom={4}
522
530
  style={styles.textBold}
523
531
  color={theme.colors.primary}>
524
- {parsePrice(order?.summary?.total ?? order?.total)}
532
+ {parsePrice(order?.summary?.total ?? order?.total, { currency: order?.currency})}
525
533
  </OText>
526
534
  </Table>
527
535
  </Total>
@@ -564,7 +572,7 @@ export const OrderContentComponent = (props: OrderContent) => {
564
572
  )}
565
573
  </View>
566
574
  <OText>
567
- -{parsePrice(event.amount)}
575
+ -{parsePrice(event.amount, { currency: order?.currency})}
568
576
  </OText>
569
577
  </View>
570
578
  ))}
@@ -6,7 +6,7 @@ import FontistoIcon from 'react-native-vector-icons/Fontisto'
6
6
  import FeatherIcon from 'react-native-vector-icons/Feather';
7
7
  import SelectDropdown from 'react-native-select-dropdown'
8
8
  import { useTheme } from 'styled-components/native';
9
-
9
+ import { NotificationSetting } from '../../../../../src/components/NotificationSetting'
10
10
  import {
11
11
  FiltersTab,
12
12
  TabsContainer,
@@ -611,7 +611,7 @@ const OrdersListManagerUI = (props: OrdersOptionParams) => {
611
611
  </LeftSide>
612
612
 
613
613
  <RightSide style={{ paddingBottom: 110, paddingHorizontal: 20 }}>
614
- {currentOrderSelected && (
614
+ {currentOrderSelected && (
615
615
  <OrderDetailsBusiness {...props.orderDetailsProps} order={currentOrderSelected} isCustomView />
616
616
  )}
617
617
  </RightSide>
@@ -756,6 +756,7 @@ const OrdersListManagerUI = (props: OrdersOptionParams) => {
756
756
 
757
757
  export const OrdersListManager = (props: OrdersOptionParams) => {
758
758
  const [, t] = useLanguage();
759
+ const [checkNotificationStatus, setCheckNotificationStatus] = useState({ open: false, checked: false })
759
760
  const ordersProps = {
760
761
  ...props,
761
762
  UIComponent: OrdersListManagerUI,
@@ -870,5 +871,11 @@ export const OrdersListManager = (props: OrdersOptionParams) => {
870
871
  ]
871
872
  };
872
873
 
873
- return <OrderListGroups {...ordersProps} />;
874
+ return (<>
875
+ <OrderListGroups {...ordersProps} />
876
+ {props?.checkNotification && (
877
+ <NotificationSetting checkNotificationStatus={checkNotificationStatus}
878
+ setCheckNotificationStatus={setCheckNotificationStatus} />
879
+ )}
880
+ </>);
874
881
  };
@@ -5,8 +5,10 @@ import SelectDropdown from 'react-native-select-dropdown'
5
5
  import { Placeholder, PlaceholderLine, Fade } from 'rn-placeholder';
6
6
  import FeatherIcon from 'react-native-vector-icons/Feather';
7
7
  import FontistoIcon from 'react-native-vector-icons/Fontisto'
8
+ import AntDesignIcon from 'react-native-vector-icons/AntDesign'
8
9
  import { useTheme } from 'styled-components/native';
9
10
  import { DeviceOrientationMethods } from '../../../../../src/hooks/DeviceOrientation'
11
+ import { NotificationSetting } from '../../../../../src/components/NotificationSetting'
10
12
  import { NewOrderNotification } from '../NewOrderNotification';
11
13
 
12
14
  import { OText, OButton, OModal, OIconButton, OInput, OIcon } from '../shared';
@@ -32,7 +34,8 @@ import {
32
34
  ItemContent,
33
35
  TimerInputWrapper,
34
36
  OverLine,
35
- Actions
37
+ Actions,
38
+ InputContainer
36
39
  } from './styles';
37
40
  import { PreviousOrders } from '../PreviousOrders';
38
41
  import { OrdersOptionParams } from '../../types';
@@ -47,7 +50,7 @@ import { OrdersOptionDelivery } from '../OrdersOptionDelivery';
47
50
  import { OrdersOptionPaymethod } from '../OrdersOptionPaymethod';
48
51
  import { OrdersOptionDriver } from '../OrdersOptionDriver';
49
52
  import { OrdersOptionDate } from '../OrdersOptionDate';
50
-
53
+ import { GestureEvent, GestureDetector } from 'react-native-gesture-handler'
51
54
  const tabsList: any = {
52
55
  pending: 1,
53
56
  inProgress: 2,
@@ -88,7 +91,8 @@ const OrdersOptionUI = (props: OrdersOptionParams) => {
88
91
  handleClickLogisticOrder,
89
92
  logisticOrders,
90
93
  loadLogisticOrders,
91
- isLogisticActivated
94
+ isLogisticActivated,
95
+ isAlsea
92
96
  } = props;
93
97
 
94
98
  const defaultSearchList = {
@@ -121,7 +125,7 @@ const OrdersOptionUI = (props: OrdersOptionParams) => {
121
125
  const [selectedTabStatus, setSelectedTabStatus] = useState([])
122
126
  const [hour, setHour] = useState(0)
123
127
  const [minute, setMinute] = useState(0)
124
-
128
+ const [openedSelect, setOpenedSelect] = useState('')
125
129
  const WIDTH_SCREEN = orientationState?.dimensions?.width
126
130
  const HEIGHT_SCREEN = orientationState?.dimensions?.height
127
131
  const IS_PORTRAIT = orientationState.orientation === PORTRAIT
@@ -401,10 +405,11 @@ const OrdersOptionUI = (props: OrdersOptionParams) => {
401
405
  setOpenSLASettingModal(false)
402
406
  }
403
407
 
404
- useEffect(() => {
405
- setCurrentFilters(null)
406
- onFiltered && onFiltered(null)
408
+ const handleClearFilters = () => {
407
409
  setSearch(defaultSearchList)
410
+ }
411
+
412
+ useEffect(() => {
408
413
  scrollRefTab.current?.scrollTo({ animated: true });
409
414
  scrollListRef.current?.scrollTo({ animated: true });
410
415
  scrollRef.current?.scrollTo({ y: 0, animated: true });
@@ -413,7 +418,7 @@ const OrdersOptionUI = (props: OrdersOptionParams) => {
413
418
  useEffect(() => {
414
419
  setSelectedTabStatus(deliveryStatus)
415
420
  }, [])
416
-
421
+
417
422
  return (
418
423
  // <GestureRecognizer
419
424
  // onSwipeLeft={onSwipeLeft}
@@ -545,7 +550,7 @@ const OrdersOptionUI = (props: OrdersOptionParams) => {
545
550
  </ScrollView>
546
551
  </FiltersTab>
547
552
  <View style={{ flex: 1, minHeight: HEIGHT_SCREEN - 450 }}>
548
- {currentTabSelected !== 'logisticOrders' && (
553
+ {currentTabSelected !== 'logisticOrders' && !isAlsea && (
549
554
  <View
550
555
  style={{
551
556
  display: 'flex',
@@ -726,7 +731,10 @@ const OrdersOptionUI = (props: OrdersOptionParams) => {
726
731
  </View>
727
732
  {/* </GestureRecognizer> */}
728
733
 
729
- <NewOrderNotification isBusinessApp={isBusinessApp} />
734
+ {isBusinessApp && (
735
+ <NewOrderNotification isBusinessApp={isBusinessApp} />
736
+ )}
737
+
730
738
  {(openSearchModal || openSLASettingModal) && (
731
739
  <OModal open={openSearchModal || openSLASettingModal} entireModal customClose>
732
740
  <ModalContainer
@@ -749,22 +757,34 @@ const OrdersOptionUI = (props: OrdersOptionParams) => {
749
757
  {openSearchModal && (
750
758
  <SearchModalContent>
751
759
  <ModalTitle>{t('SEARCH_ORDERS', 'Search orders')}</ModalTitle>
752
- <OInput
753
- value={search.id}
754
- onChange={(value: any) => setSearch({ ...search, id: value })}
755
- style={styles.inputStyle}
756
- placeholder={t('ORDER_NUMBER', 'Order number')}
757
- autoCorrect={false}
758
- />
760
+ <InputContainer>
761
+ <OInput
762
+ value={search.id}
763
+ onChange={(value: any) => setSearch({ ...search, id: value })}
764
+ style={styles.inputStyle}
765
+ placeholder={t('ORDER_NUMBER', 'Order number')}
766
+ autoCorrect={false}
767
+ />
768
+ <AntDesignIcon
769
+ name='close'
770
+ size={20}
771
+ style={{ position: 'absolute', right: 12, top: 13 }}
772
+ onPress={() => setSearch({ ...search, id: '' })}
773
+ />
774
+ </InputContainer>
759
775
  <OrdersOptionDate
760
776
  {...props}
761
777
  search={search}
762
778
  onSearch={setSearch}
779
+ setOpenedSelect={setOpenedSelect}
780
+ openedSelect={openedSelect}
763
781
  />
764
782
  <OrdersOptionCity
765
783
  {...props}
766
784
  search={search}
767
785
  onSearch={setSearch}
786
+ setOpenedSelect={setOpenedSelect}
787
+ openedSelect={openedSelect}
768
788
  />
769
789
  {isBusinessApp && (
770
790
  <>
@@ -772,21 +792,29 @@ const OrdersOptionUI = (props: OrdersOptionParams) => {
772
792
  {...props}
773
793
  search={search}
774
794
  onSearch={setSearch}
795
+ setOpenedSelect={setOpenedSelect}
796
+ openedSelect={openedSelect}
775
797
  />
776
798
  <OrdersOptionDelivery
777
799
  {...props}
778
800
  search={search}
779
801
  onSearch={setSearch}
802
+ setOpenedSelect={setOpenedSelect}
803
+ openedSelect={openedSelect}
780
804
  />
781
805
  <OrdersOptionDriver
782
806
  {...props}
783
807
  search={search}
784
808
  onSearch={setSearch}
809
+ setOpenedSelect={setOpenedSelect}
810
+ openedSelect={openedSelect}
785
811
  />
786
812
  <OrdersOptionPaymethod
787
813
  {...props}
788
814
  search={search}
789
815
  onSearch={setSearch}
816
+ setOpenedSelect={setOpenedSelect}
817
+ openedSelect={openedSelect}
790
818
  />
791
819
  </>
792
820
  )}
@@ -796,13 +824,24 @@ const OrdersOptionUI = (props: OrdersOptionParams) => {
796
824
  imgRightSrc={null}
797
825
  style={{
798
826
  borderRadius: 7.6,
799
- marginBottom: 70,
827
+ marginBottom: 10,
800
828
  marginTop: 60,
801
829
  zIndex: 12
802
830
  }}
803
831
  onClick={applyFilters}
804
832
  />
805
-
833
+ <OButton
834
+ text={t('CLEAR_SEARCh', 'Clear search')}
835
+ imgRightSrc={null}
836
+ bgColor='#fff'
837
+ style={{
838
+ borderRadius: 7.6,
839
+ marginBottom: 0,
840
+ marginTop: 0,
841
+ zIndex: 12
842
+ }}
843
+ onClick={handleClearFilters}
844
+ />
806
845
  </SearchModalContent>
807
846
  )}
808
847
  {openSLASettingModal && (
@@ -931,6 +970,7 @@ export const OrdersOption = (props: OrdersOptionParams) => {
931
970
  const [, t] = useLanguage();
932
971
  const [configState] = useConfig()
933
972
  const theme = useTheme()
973
+ const [checkNotificationStatus, setCheckNotificationStatus] = useState({ open: false, checked: false })
934
974
  const ordersProps = {
935
975
  ...props,
936
976
  UIComponent: OrdersOptionUI,
@@ -1045,5 +1085,11 @@ export const OrdersOption = (props: OrdersOptionParams) => {
1045
1085
  ]
1046
1086
  };
1047
1087
 
1048
- return <OrderListGroups {...ordersProps} />;
1088
+ return (<>
1089
+ <OrderListGroups {...ordersProps} />
1090
+ {props?.checkNotification && (
1091
+ <NotificationSetting checkNotificationStatus={checkNotificationStatus}
1092
+ setCheckNotificationStatus={setCheckNotificationStatus} />
1093
+ )}
1094
+ </>);
1049
1095
  };
@@ -149,4 +149,8 @@ export const OverLine = styled.View`
149
149
  `
150
150
  export const Actions = styled.View`
151
151
 
152
- `
152
+ `
153
+
154
+ export const InputContainer = styled.View`
155
+ position: relative;
156
+ `
@@ -10,7 +10,9 @@ export const OrdersOptionBusinessUI = (props: any) => {
10
10
  const {
11
11
  search,
12
12
  onSearch,
13
- businessesList
13
+ businessesList,
14
+ setOpenedSelect,
15
+ openedSelect
14
16
  } = props
15
17
 
16
18
  const theme = useTheme();
@@ -25,6 +27,14 @@ export const OrdersOptionBusinessUI = (props: any) => {
25
27
  setOptionsList(businesses)
26
28
  }, [businessesList?.businesses])
27
29
 
30
+ const handleClear = () => {
31
+ onSearch({ ...search, option: '' })
32
+ }
33
+
34
+ const handleOpenSelect = () => {
35
+ setOpenedSelect('business')
36
+ }
37
+
28
38
  return (
29
39
  <Container isIos={Platform.OS === 'ios'}>
30
40
  <ODropDown
@@ -36,6 +46,10 @@ export const OrdersOptionBusinessUI = (props: any) => {
36
46
  textcolor={theme.colors.unselectText}
37
47
  placeholder={t('SELECT_BUSINESS', 'Select Business')}
38
48
  dropViewMaxHeight={200}
49
+ handleClear={handleClear}
50
+ handleOpenSelect={handleOpenSelect}
51
+ openedSelect={openedSelect}
52
+ selectType='business'
39
53
  />
40
54
  </Container>
41
55
  );
@@ -10,7 +10,9 @@ export const OrdersOptionCityUI = (props: any) => {
10
10
  const {
11
11
  search,
12
12
  onSearch,
13
- allListValues
13
+ allListValues,
14
+ setOpenedSelect,
15
+ openedSelect
14
16
  } = props
15
17
 
16
18
  const theme = useTheme();
@@ -27,6 +29,14 @@ export const OrdersOptionCityUI = (props: any) => {
27
29
  setOptionsList(cities)
28
30
  }, [allListValues?.countries])
29
31
 
32
+ const handleClear = () => {
33
+ onSearch({ ...search, city: '' })
34
+ }
35
+
36
+ const handleOpenSelect = () => {
37
+ setOpenedSelect('city')
38
+ }
39
+
30
40
  return (
31
41
  <Container isIos={Platform.OS === 'ios'}>
32
42
  <ODropDown
@@ -38,6 +48,10 @@ export const OrdersOptionCityUI = (props: any) => {
38
48
  textcolor={theme.colors.unselectText}
39
49
  placeholder={t('SELECT_CITY', 'Select City')}
40
50
  dropViewMaxHeight={200}
51
+ handleClear={handleClear}
52
+ handleOpenSelect={handleOpenSelect}
53
+ openedSelect={openedSelect}
54
+ selectType='city'
41
55
  />
42
56
  </Container>
43
57
  );
@@ -3,12 +3,16 @@ import { useLanguage } from 'ordering-components/native';
3
3
  import { useTheme } from 'styled-components/native';
4
4
  import { Container } from './styles';
5
5
  import ODropDownCalendar from '../shared/ODropDownCalendar';
6
- import { Platform } from 'react-native'
7
-
6
+ import { Button, Platform, Touchable, TouchableOpacity, View } from 'react-native'
7
+ import DoubleClick from 'react-native-double-tap'
8
+ import { OText } from '../shared';
9
+ import DoubleTap from 'react-native-double-tap';
8
10
  export const OrdersOptionDate = (props: any) => {
9
11
  const {
10
12
  search,
11
- onSearch
13
+ onSearch,
14
+ setOpenedSelect,
15
+ openedSelect
12
16
  } = props
13
17
 
14
18
  const theme = useTheme();
@@ -22,18 +26,23 @@ export const OrdersOptionDate = (props: any) => {
22
26
 
23
27
  const handleChangeOption = (option: any) => {
24
28
  if (option === 'calendar') {
25
- onSearch({...search, date: {...search.date, type: option}})
29
+ onSearch({ ...search, date: { ...search.date, type: option } })
26
30
  } else {
27
- onSearch({...search, date: {from: '', to: '', type: option}})
31
+ onSearch({ ...search, date: { from: '', to: '', type: option } })
28
32
  }
29
33
  }
30
34
 
31
35
  const handleChangeDate = (from: any, to: any) => {
32
- onSearch({...search, date: {...search.date, from: from, to: to}})
36
+ onSearch({ ...search, date: { ...search.date, from: from, to: to } })
37
+ }
38
+
39
+ const handleOpenSelect = () => {
40
+ setOpenedSelect('calendar')
33
41
  }
34
42
 
35
43
  return (
36
44
  <Container isIos={Platform.OS === 'ios'}>
45
+
37
46
  <ODropDownCalendar
38
47
  options={optionsList}
39
48
  defaultValue={search.date.type}
@@ -47,6 +56,10 @@ export const OrdersOptionDate = (props: any) => {
47
56
  rangeDate={search.date}
48
57
  handleChangeDate={handleChangeDate}
49
58
  isCalendarAlwaysVisible
59
+ handleClear={() => onSearch({ ...search, date: { from: '', to: '', type: '' } })}
60
+ handleOpenSelect={handleOpenSelect}
61
+ openedSelect={openedSelect}
62
+ selectType='calendar'
50
63
  />
51
64
  </Container>
52
65
  );
@@ -8,7 +8,9 @@ import { Platform } from 'react-native'
8
8
  export const OrdersOptionDelivery = (props: any) => {
9
9
  const {
10
10
  search,
11
- onSearch
11
+ onSearch,
12
+ setOpenedSelect,
13
+ openedSelect
12
14
  } = props
13
15
 
14
16
  const theme = useTheme();
@@ -18,6 +20,14 @@ export const OrdersOptionDelivery = (props: any) => {
18
20
  { value: '2', content: t('PICKUP', 'Pickup') }
19
21
  ]
20
22
 
23
+ const handleClear = () => {
24
+ onSearch({ ...search, delivery_type: '' })
25
+ }
26
+
27
+ const handleOpenSelect = () => {
28
+ setOpenedSelect('delivery_type')
29
+ }
30
+
21
31
  return (
22
32
  <Container isIos={Platform.OS === 'ios'}>
23
33
  <ODropDown
@@ -29,6 +39,10 @@ export const OrdersOptionDelivery = (props: any) => {
29
39
  textcolor={theme.colors.unselectText}
30
40
  placeholder={t('SELECT_DELIVERY_TYPE', 'Select Delivery type')}
31
41
  dropViewMaxHeight={200}
42
+ handleClear={handleClear}
43
+ handleOpenSelect={handleOpenSelect}
44
+ openedSelect={openedSelect}
45
+ selectType='delivery_type'
32
46
  />
33
47
  </Container>
34
48
  );