ordering-ui-react-native 0.21.34 → 0.21.35-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 (213) hide show
  1. package/package.json +7 -6
  2. package/src/DeliveryApp.tsx +43 -1
  3. package/src/components/BusinessesListing/index.tsx +1 -1
  4. package/src/components/PaymentOptionsWebView/index.tsx +1 -0
  5. package/src/components/StripeMethodForm/index.tsx +6 -4
  6. package/src/components/VerifyPhone/styles.tsx +1 -2
  7. package/src/types/index.tsx +3 -1
  8. package/src/utils/index.tsx +2 -2
  9. package/themes/business/index.tsx +4 -0
  10. package/themes/business/src/components/AcceptOrRejectOrder/index.tsx +9 -2
  11. package/themes/business/src/components/BusinessController/index.tsx +19 -17
  12. package/themes/business/src/components/BusinessProductList/AccordionDropdown.tsx +63 -0
  13. package/themes/business/src/components/BusinessProductList/IterateCategories.tsx +108 -0
  14. package/themes/business/src/components/BusinessProductList/ProductList.tsx +196 -0
  15. package/themes/business/src/components/BusinessProductList/index.tsx +196 -0
  16. package/themes/business/src/components/BusinessProductList/styles.tsx +10 -0
  17. package/themes/business/src/components/DriverMap/index.tsx +36 -23
  18. package/themes/business/src/components/FloatingButton/index.tsx +34 -31
  19. package/themes/business/src/components/GoogleMap/index.tsx +15 -8
  20. package/themes/business/src/components/Home/index.tsx +5 -1
  21. package/themes/business/src/components/LanguageSelector/index.tsx +1 -2
  22. package/themes/business/src/components/LanguageSelector/lang_country.json +515 -70
  23. package/themes/business/src/components/MapView/index.tsx +16 -9
  24. package/themes/business/src/components/MessagesOption/index.tsx +2 -1
  25. package/themes/business/src/components/NewOrderNotification/index.tsx +55 -23
  26. package/themes/business/src/components/OrderDetails/Business.tsx +50 -2
  27. package/themes/business/src/components/OrderDetails/Delivery.tsx +23 -11
  28. package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +61 -54
  29. package/themes/business/src/components/OrderDetails/OrderHeaderComponent.tsx +52 -20
  30. package/themes/business/src/components/OrderDetails/usePrinterCommands.tsx +220 -0
  31. package/themes/business/src/components/OrderDetailsLogistic/index.tsx +6 -1
  32. package/themes/business/src/components/OrderSummary/index.tsx +240 -76
  33. package/themes/business/src/components/OrdersListManager/index.tsx +7 -2
  34. package/themes/business/src/components/OrdersListManager/utils.tsx +1 -1
  35. package/themes/business/src/components/OrdersOption/index.tsx +124 -43
  36. package/themes/business/src/components/PhoneInputNumber/index.tsx +8 -5
  37. package/themes/business/src/components/PreviousOrders/OrderItem.tsx +36 -38
  38. package/themes/business/src/components/PreviousOrders/OrderList.tsx +18 -13
  39. package/themes/business/src/components/PreviousOrders/index.tsx +80 -66
  40. package/themes/business/src/components/PreviousOrders/styles.tsx +10 -0
  41. package/themes/business/src/components/PrinterSettings/index.tsx +279 -0
  42. package/themes/business/src/components/PrinterSettings/styles.tsx +17 -0
  43. package/themes/business/src/components/ProductItemAccordion/index.tsx +2 -2
  44. package/themes/business/src/components/ReviewCustomer/index.tsx +2 -0
  45. package/themes/business/src/components/SearchBar/index.tsx +2 -1
  46. package/themes/business/src/components/Sessions/index.tsx +187 -0
  47. package/themes/business/src/components/Sessions/styles.tsx +20 -0
  48. package/themes/business/src/components/StoresList/index.tsx +5 -3
  49. package/themes/business/src/components/UserFormDetails/index.tsx +111 -107
  50. package/themes/business/src/components/UserProfileForm/index.tsx +107 -53
  51. package/themes/business/src/components/WebsocketStatus/index.tsx +171 -0
  52. package/themes/business/src/components/WebsocketStatus/styles.tsx +28 -0
  53. package/themes/business/src/components/shared/OInput.tsx +2 -0
  54. package/themes/business/src/hooks/useLocation.tsx +5 -4
  55. package/themes/business/src/types/index.tsx +15 -2
  56. package/themes/business/src/utils/index.tsx +5 -0
  57. package/themes/doordash/src/components/BusinessesListing/index.tsx +1 -1
  58. package/themes/doordash/src/components/LoginForm/index.tsx +1 -2
  59. package/themes/instacart/src/components/BusinessesListing/index.tsx +1 -1
  60. package/themes/kiosk/src/components/Checkout/index.tsx +6 -0
  61. package/themes/kiosk/src/components/LoginForm/index.tsx +7 -4
  62. package/themes/kiosk/src/components/NavBar/index.tsx +14 -14
  63. package/themes/kiosk/src/components/OptionCard/index.tsx +1 -1
  64. package/themes/kiosk/src/components/OrderTypeCardSelector/index.tsx +8 -10
  65. package/themes/kiosk/src/components/shared/OButton.tsx +5 -18
  66. package/themes/original/index.tsx +9 -4
  67. package/themes/original/src/components/AddressDetails/index.tsx +20 -10
  68. package/themes/original/src/components/AddressForm/index.tsx +27 -12
  69. package/themes/original/src/components/AddressForm/styles.tsx +1 -1
  70. package/themes/original/src/components/AddressList/index.tsx +18 -4
  71. package/themes/original/src/components/AddressList/styles.tsx +4 -4
  72. package/themes/original/src/components/AnalyticsSegment/index.tsx +6 -6
  73. package/themes/original/src/components/AppleLogin/index.tsx +4 -4
  74. package/themes/original/src/components/BusinessBasicInformation/index.tsx +7 -10
  75. package/themes/original/src/components/BusinessBasicInformation/styles.tsx +1 -1
  76. package/themes/original/src/components/BusinessController/index.tsx +18 -10
  77. package/themes/original/src/components/BusinessController/styles.tsx +8 -7
  78. package/themes/original/src/components/BusinessInformation/index.tsx +0 -1
  79. package/themes/original/src/components/BusinessInformation/styles.tsx +2 -2
  80. package/themes/original/src/components/BusinessItemAccordion/index.tsx +11 -7
  81. package/themes/original/src/components/BusinessListingSearch/BusinessSearchFooter.tsx +317 -0
  82. package/themes/original/src/components/BusinessListingSearch/BusinessSearchHeader.tsx +96 -0
  83. package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/index.tsx +1 -1
  84. package/themes/original/src/components/BusinessListingSearch/index.tsx +47 -358
  85. package/themes/original/src/components/BusinessListingSearch/styles.tsx +1 -1
  86. package/themes/original/src/components/BusinessPreorder/index.tsx +4 -3
  87. package/themes/original/src/components/BusinessProductsCategories/index.tsx +1 -1
  88. package/themes/original/src/components/BusinessProductsList/index.tsx +3 -3
  89. package/themes/original/src/components/BusinessProductsList/styles.tsx +0 -3
  90. package/themes/original/src/components/BusinessProductsListing/index.tsx +35 -19
  91. package/themes/original/src/components/BusinessProductsListing/styles.tsx +2 -2
  92. package/themes/original/src/components/BusinessReviews/index.tsx +1 -1
  93. package/themes/original/src/components/BusinessesListing/Layout/Appointment/index.tsx +1 -1
  94. package/themes/original/src/components/BusinessesListing/Layout/Appointment/styles.tsx +5 -5
  95. package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListFooter.tsx +69 -0
  96. package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListHeader.tsx +406 -0
  97. package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListing.tsx +76 -0
  98. package/themes/original/src/components/BusinessesListing/Layout/Original/index.tsx +24 -404
  99. package/themes/original/src/components/BusinessesListing/Layout/Original/styles.tsx +1 -1
  100. package/themes/original/src/components/BusinessesListing/index.tsx +0 -1
  101. package/themes/original/src/components/Cart/index.tsx +32 -9
  102. package/themes/original/src/components/CartContent/index.tsx +96 -58
  103. package/themes/original/src/components/CartStoresListing/styles.tsx +2 -2
  104. package/themes/original/src/components/Checkout/index.tsx +149 -63
  105. package/themes/original/src/components/Checkout/styles.tsx +17 -0
  106. package/themes/original/src/components/CitiesControl/styles.tsx +1 -1
  107. package/themes/original/src/components/DatePicker/index.tsx +33 -0
  108. package/themes/original/src/components/DatePicker/styles.tsx +20 -0
  109. package/themes/original/src/components/Favorite/index.tsx +9 -9
  110. package/themes/original/src/components/Favorite/styles.tsx +0 -2
  111. package/themes/original/src/components/FloatingButton/styles.tsx +1 -1
  112. package/themes/original/src/components/ForgotPasswordForm/index.tsx +5 -0
  113. package/themes/original/src/components/GPSButton/index.tsx +1 -1
  114. package/themes/original/src/components/GiftCard/GiftCardOrdersList/index.tsx +64 -0
  115. package/themes/original/src/components/GiftCard/GiftCardOrdersList/styles.tsx +8 -0
  116. package/themes/original/src/components/GiftCard/GiftCardUI/index.tsx +8 -3
  117. package/themes/original/src/components/GiftCard/PurchaseGiftCard/index.tsx +36 -3
  118. package/themes/original/src/components/GiftCard/PurchaseGiftCard/styles.tsx +1 -1
  119. package/themes/original/src/components/GiftCard/RedeemGiftCard/index.tsx +67 -4
  120. package/themes/original/src/components/GiftCard/RedeemGiftCard/styles.tsx +1 -1
  121. package/themes/original/src/components/GiftCard/SendGiftCard/index.tsx +2 -2
  122. package/themes/original/src/components/GiftCard/SendGiftCard/styles.tsx +1 -1
  123. package/themes/original/src/components/GiftCard/SingleGiftCard/index.tsx +101 -0
  124. package/themes/original/src/components/GiftCard/SingleGiftCard/styles.tsx +4 -0
  125. package/themes/original/src/components/GiftCard/VerticalGiftCardOrdersLayout/index.tsx +83 -0
  126. package/themes/original/src/components/GiftCard/VerticalGiftCardOrdersLayout/styles.tsx +9 -0
  127. package/themes/original/src/components/GoogleMap/index.tsx +1 -1
  128. package/themes/original/src/components/Help/index.tsx +7 -0
  129. package/themes/original/src/components/HelpAccountAndPayment/index.tsx +5 -0
  130. package/themes/original/src/components/HelpGuide/index.tsx +5 -0
  131. package/themes/original/src/components/HelpOrder/index.tsx +5 -0
  132. package/themes/original/src/components/HighestRatedBusinesses/index.tsx +2 -2
  133. package/themes/original/src/components/HighestRatedBusinesses/styles.tsx +1 -1
  134. package/themes/original/src/components/Home/index.tsx +2 -1
  135. package/themes/original/src/components/LastOrder/index.tsx +2 -1
  136. package/themes/original/src/components/LastOrders/index.tsx +2 -1
  137. package/themes/original/src/components/LoginForm/Otp/index.tsx +4 -16
  138. package/themes/original/src/components/LoginForm/index.tsx +8 -3
  139. package/themes/original/src/components/MessageListing/index.tsx +6 -0
  140. package/themes/original/src/components/Messages/index.tsx +8 -7
  141. package/themes/original/src/components/Messages/styles.tsx +1 -1
  142. package/themes/original/src/components/MomentOption/index.tsx +19 -4
  143. package/themes/original/src/components/MultiCart/index.tsx +1 -1
  144. package/themes/original/src/components/MultiCartsPaymethodsAndWallets/index.tsx +1 -0
  145. package/themes/original/src/components/MultiCheckout/index.tsx +208 -21
  146. package/themes/original/src/components/MultiCheckout/styles.tsx +17 -0
  147. package/themes/original/src/components/MultiOrdersDetails/index.tsx +20 -15
  148. package/themes/original/src/components/MyOrders/index.tsx +28 -28
  149. package/themes/original/src/components/NavBar/index.tsx +5 -1
  150. package/themes/original/src/components/NetworkError/index.tsx +2 -3
  151. package/themes/original/src/components/NetworkError/styles.tsx +2 -2
  152. package/themes/original/src/components/Notifications/index.tsx +9 -8
  153. package/themes/original/src/components/Notifications/styles.tsx +0 -1
  154. package/themes/original/src/components/OrderDetails/OrderHistory.tsx +1 -1
  155. package/themes/original/src/components/OrderDetails/index.tsx +709 -665
  156. package/themes/original/src/components/OrderDetails/styles.tsx +24 -8
  157. package/themes/original/src/components/OrderProgress/index.tsx +24 -4
  158. package/themes/original/src/components/OrderProgress/styles.tsx +1 -1
  159. package/themes/original/src/components/OrderSummary/index.tsx +3 -1
  160. package/themes/original/src/components/OrderTypeSelector/index.tsx +10 -6
  161. package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/styles.tsx +1 -1
  162. package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/styles.tsx +1 -1
  163. package/themes/original/src/components/OrdersOption/index.tsx +3 -5
  164. package/themes/original/src/components/OrdersOption/styles.tsx +1 -1
  165. package/themes/original/src/components/PaymentOptionCard/index.tsx +4 -2
  166. package/themes/original/src/components/PaymentOptionWallet/index.tsx +56 -56
  167. package/themes/original/src/components/PaymentOptions/index.tsx +50 -5
  168. package/themes/original/src/components/PreviousOrders/index.tsx +2 -0
  169. package/themes/original/src/components/ProductForm/ActionButton.tsx +122 -0
  170. package/themes/original/src/components/ProductForm/ExtraOptions.tsx +56 -0
  171. package/themes/original/src/components/ProductForm/index.tsx +67 -155
  172. package/themes/original/src/components/ProductItemAccordion/index.tsx +54 -44
  173. package/themes/original/src/components/ProductItemAccordion/styles.tsx +3 -4
  174. package/themes/original/src/components/ProductOptionSubOption/index.tsx +105 -91
  175. package/themes/original/src/components/ProfessionalProfile/styles.tsx +3 -3
  176. package/themes/original/src/components/Promotions/index.tsx +13 -11
  177. package/themes/original/src/components/Promotions/styles.tsx +0 -2
  178. package/themes/original/src/components/ReviewDriver/index.tsx +5 -0
  179. package/themes/original/src/components/ReviewDriver/styles.tsx +1 -1
  180. package/themes/original/src/components/ReviewOrder/index.tsx +5 -0
  181. package/themes/original/src/components/ReviewOrder/styles.tsx +1 -1
  182. package/themes/original/src/components/ReviewProducts/index.tsx +5 -0
  183. package/themes/original/src/components/ReviewProducts/styles.tsx +1 -1
  184. package/themes/original/src/components/ServiceForm/index.tsx +1 -1
  185. package/themes/original/src/components/ServiceForm/styles.tsx +4 -4
  186. package/themes/original/src/components/Sessions/index.tsx +5 -0
  187. package/themes/original/src/components/SignupForm/index.tsx +66 -59
  188. package/themes/original/src/components/SingleOrderCard/index.tsx +3 -2
  189. package/themes/original/src/components/SingleProductCard/index.tsx +2 -2
  190. package/themes/original/src/components/SingleProductCard/styles.tsx +0 -3
  191. package/themes/original/src/components/StripeCardsList/index.tsx +4 -35
  192. package/themes/original/src/components/StripeElementsForm/index.tsx +74 -59
  193. package/themes/original/src/components/StripeElementsForm/naked.tsx +47 -0
  194. package/themes/original/src/components/UpsellingProducts/UpsellingContent.tsx +170 -0
  195. package/themes/original/src/components/UpsellingProducts/UpsellingLayout.tsx +86 -0
  196. package/themes/original/src/components/UpsellingProducts/index.tsx +15 -199
  197. package/themes/original/src/components/UpsellingProducts/styles.tsx +19 -0
  198. package/themes/original/src/components/UserFormDetails/index.tsx +123 -75
  199. package/themes/original/src/components/UserFormDetails/styles.tsx +7 -0
  200. package/themes/original/src/components/UserProfile/index.tsx +3 -2
  201. package/themes/original/src/components/UserProfileForm/index.tsx +5 -0
  202. package/themes/original/src/components/WalletTransactions/styles.tsx +1 -0
  203. package/themes/original/src/components/Wallets/index.tsx +8 -4
  204. package/themes/original/src/components/Wallets/styles.tsx +1 -1
  205. package/themes/original/src/components/WebsocketStatus/index.tsx +172 -0
  206. package/themes/original/src/components/WebsocketStatus/styles.tsx +28 -0
  207. package/themes/original/src/components/shared/HeaderTitle.tsx +1 -1
  208. package/themes/original/src/components/shared/OButton.tsx +5 -5
  209. package/themes/original/src/components/shared/OInput.tsx +1 -4
  210. package/themes/original/src/components/shared/OModal.tsx +12 -14
  211. package/themes/original/src/layouts/Container.tsx +5 -3
  212. package/themes/original/src/utils/index.tsx +12 -1
  213. package/themes/uber-eats/src/components/BusinessesListing/index.tsx +1 -1
@@ -1,5 +1,5 @@
1
- import React, { useState } from 'react'
2
- import { View, Animated, StyleSheet, Platform, TouchableOpacity } from 'react-native'
1
+ import React, { useEffect, useState } from 'react'
2
+ import { View, Animated, StyleSheet, TouchableOpacity } from 'react-native'
3
3
  import { useUtils, useLanguage, useOrder } from 'ordering-components/native'
4
4
  import { useTheme } from 'styled-components/native';
5
5
  import MaterialCommunityIcon from 'react-native-vector-icons/MaterialCommunityIcons'
@@ -39,29 +39,42 @@ export const ProductItemAccordion = (props: ProductItemAccordionParams) => {
39
39
  } = props
40
40
 
41
41
  const theme = useTheme();
42
+ const hideProductImage = isFromCheckout
43
+ ? theme?.checkout?.components?.cart?.components?.product?.components?.image?.hidden
44
+ : theme?.confirmation?.components?.cart?.components?.products?.components?.photo?.hidden
42
45
 
46
+ const hideProductCommentHide = isFromCheckout && theme?.checkout?.components?.cart?.components?.product?.components?.comments?.hidden
43
47
 
44
48
  const pickerStyle = StyleSheet.create({
45
49
  inputAndroid: {
46
- width: 34,
50
+ width: 45,
47
51
  textAlign: 'center',
48
52
  overflow: 'visible',
49
53
  fontSize: 12,
50
- height: 20,
51
- padding: 0,
52
- color: theme.colors.textNormal
54
+ height: 30,
55
+ color: theme.colors.textNormal,
56
+ backgroundColor: theme.colors.backgroundGray100,
57
+ paddingVertical: 8,
58
+ paddingRight: 10,
59
+ paddingLeft: 0,
60
+ borderRadius: 7.6,
53
61
  },
54
62
  inputIOS: {
55
- width: 34,
63
+ width: 45,
56
64
  textAlign: 'center',
57
65
  overflow: 'visible',
58
66
  fontSize: 12,
67
+ backgroundColor: theme.colors.backgroundGray100,
68
+ paddingVertical: 8,
69
+ paddingRight: 15,
70
+ paddingLeft: 0,
71
+ borderRadius: 7.6,
59
72
  },
60
73
  icon: {
61
74
  position: 'absolute',
62
75
  zIndex: 1,
63
- top: -4,
64
- end: -4,
76
+ top: 0,
77
+ end: 8,
65
78
  },
66
79
  placeholder: {
67
80
  color: theme.colors.secundaryContrast
@@ -75,9 +88,7 @@ export const ProductItemAccordion = (props: ProductItemAccordionParams) => {
75
88
 
76
89
  const [isActive, setActiveState] = useState(false)
77
90
  const [isServiceOpen, setIsServiceOpen] = useState(false)
78
- // const [setHeight, setHeightState] = useState({ height: new Animated.Value(0) })
79
- // const [setRotate, setRotateState] = useState({ angle: new Animated.Value(0) })
80
- const [productQuantity, setProductQuantity] = useState(product.quantity.toString())
91
+ const [productQuantityState, setProductQuantityState] = useState<any>(product.quantity.toString())
81
92
 
82
93
  const productInfo = () => {
83
94
  if (isCartProduct) {
@@ -105,23 +116,9 @@ export const ProductItemAccordion = (props: ProductItemAccordionParams) => {
105
116
  setIsServiceOpen(true)
106
117
  }
107
118
 
108
- /* const toggleAccordion = () => {
109
- if ((!product?.valid_menu && isCartProduct)) return
110
- if (isActive) {
111
- Animated.timing(setHeight.height, {
112
- toValue: 100,
113
- duration: 500,
114
- easing: Easing.linear,
115
- useNativeDriver: false,
116
- }).start()
117
- } else {
118
- setHeightState({height: new Animated.Value(0)})
119
- }
120
- }*/
121
-
122
119
  const handleChangeQuantity = (value: string) => {
123
120
  if (!orderState.loading) {
124
- setProductQuantity(value)
121
+ setProductQuantityState(value)
125
122
  if (parseInt(value) === 0) {
126
123
  onDeleteProduct && onDeleteProduct(product)
127
124
  } else {
@@ -135,10 +132,6 @@ export const ProductItemAccordion = (props: ProductItemAccordionParams) => {
135
132
  return `${quantity} x ${name} ${pos} +${price}`
136
133
  }
137
134
 
138
- /*useEffect(() => {
139
- toggleAccordion()
140
- }, [isActive])*/
141
-
142
135
  const productOptions = getProductMax && [...Array(getProductMax(product) + 1),].map((_: any, opt: number) => {
143
136
  return {
144
137
  label: opt === 0 ? t('REMOVE', 'Remove') : opt.toString(),
@@ -146,19 +139,27 @@ export const ProductItemAccordion = (props: ProductItemAccordionParams) => {
146
139
  }
147
140
  })
148
141
 
142
+ useEffect(() => {
143
+ if (product.quantity.toString() === productQuantityState || productQuantityState) {
144
+ setProductQuantityState(null)
145
+ }
146
+ }, [product.quantity])
147
+
149
148
  return (
150
149
  <>
151
150
  <AccordionSection>
152
151
  <Accordion
153
- isValid={product?.valid ?? true}
154
- onPress={() => (!product?.valid_menu && isCartProduct)
155
- ? {}
156
- : setActiveState(!isActive)}
157
152
  activeOpacity={1}
153
+ isValid={product?.valid ?? true}
154
+ onPress={
155
+ (!product?.valid_menu && isCartProduct) ||
156
+ !(productInfo().ingredients.length > 0 || productInfo().options.length > 0 || !!product.comment)
157
+ ? null : () => setActiveState(!isActive)
158
+ }
158
159
  >
159
160
  <View style={{ flexDirection: 'row', alignItems: 'flex-start' }}>
160
161
  <ContentInfo>
161
- {(product?.images || theme?.images?.dummies?.product) && (
162
+ {(product?.images || theme?.images?.dummies?.product) && !hideProductImage && (
162
163
  <ProductImage>
163
164
  {isFromCheckout ? (
164
165
  product?.images ? (
@@ -211,11 +212,20 @@ export const ProductItemAccordion = (props: ProductItemAccordionParams) => {
211
212
  <RNPickerSelect
212
213
  items={productOptions}
213
214
  onValueChange={handleChangeQuantity}
214
- value={productQuantity}
215
+ value={productQuantityState ?? product.quantity.toString()}
215
216
  style={pickerStyle}
216
217
  useNativeAndroidPickerStyle={false}
217
218
  placeholder={{}}
218
- Icon={() => <View style={pickerStyle.icon}><OIcon src={theme.images.general.arrow_down} color={theme.colors.textNormal} width={8} /></View>}
219
+ touchableWrapperProps={{ style: { width: 45 } }}
220
+ Icon={() => (
221
+ <View style={pickerStyle.icon}>
222
+ <OIcon
223
+ src={theme.images.general.arrow_down}
224
+ color={theme.colors.textNormal}
225
+ width={8}
226
+ />
227
+ </View>
228
+ )}
219
229
  disabled={orderState.loading}
220
230
  />
221
231
  </ProductInfo>
@@ -276,21 +286,21 @@ export const ProductItemAccordion = (props: ProductItemAccordionParams) => {
276
286
  )}
277
287
  </Accordion>
278
288
 
279
- <View style={{ display: isActive ? 'flex' : 'none', paddingStart: 40 }}>
289
+ <View style={{ display: isActive ? 'flex' : 'none', paddingStart: isFromCheckout ? 100 : 40, marginTop: isFromCheckout ? -80 : -30 }}>
280
290
  <Animated.View>
281
291
  <AccordionContent>
282
292
  {productInfo().ingredients.length > 0 && productInfo().ingredients.some((ingredient: any) => !ingredient.selected) && (
283
293
  <ProductOptionsList>
284
294
  <OText size={10} color={theme.colors.textSecondary}>{t('INGREDIENTS', 'Ingredients')}</OText>
285
- {productInfo().ingredients.map((ingredient: any) => !ingredient.selected && (
286
- <OText size={10} color={theme.colors.textThird} key={ingredient.id} style={{ marginLeft: 10 }}>{t('NO', 'No')} {ingredient.name}</OText>
295
+ {productInfo().ingredients.map((ingredient: any, i) => !ingredient.selected && (
296
+ <OText size={10} color={theme.colors.textThird} key={ingredient.id + i} style={{ marginLeft: 10 }}>{t('NO', 'No')} {ingredient.name}</OText>
287
297
  ))}
288
298
  </ProductOptionsList>
289
299
  )}
290
300
  {productInfo().options.length > 0 && (
291
301
  <ProductOptionsList>
292
- {productInfo().options.sort((a: any, b: any) => a.rank - b.rank).map((option: any, i: number) => (
293
- <ProductOption key={option.id + i}>
302
+ {productInfo().options.sort((a: any, b: any) => a.rank - b.rank).map((option: any) => (
303
+ <ProductOption key={option.id}>
294
304
  <OText size={10} color={theme.colors.textSecondary}>{option.name}</OText>
295
305
  {option.suboptions.map((suboption: any) => (
296
306
  <ProductSubOption key={suboption.id}>
@@ -308,7 +318,7 @@ export const ProductItemAccordion = (props: ProductItemAccordionParams) => {
308
318
  ))}
309
319
  </ProductOptionsList>
310
320
  )}
311
- {!!product.comment && (
321
+ {!!product.comment && !hideProductCommentHide && (
312
322
  <ProductComment>
313
323
  <OText size={10} color={theme.colors.textSecondary}>{t('SPECIAL_COMMENT', 'Special Comment')}</OText>
314
324
  <OText size={10} color={theme.colors.textThird}>{product.comment}</OText>
@@ -17,9 +17,6 @@ export const Accordion = styled.TouchableOpacity`
17
17
 
18
18
  export const ProductInfo = styled.View`
19
19
  margin-horizontal: 7px;
20
- background-color: ${(props: any) => props.theme.colors.backgroundGray100};
21
- padding: 4px 12px 4px 0px;
22
- border-radius: 7.6px;
23
20
  `
24
21
 
25
22
  export const ProductQuantity = styled.View`
@@ -54,4 +51,6 @@ export const ProductSubOption = styled.View`
54
51
  margin-left: 0px;
55
52
  `
56
53
 
57
- export const ProductComment = styled.View``
54
+ export const ProductComment = styled.View`
55
+ margin-left: 20px;
56
+ `
@@ -19,6 +19,8 @@ import {
19
19
  Logo
20
20
  } from './styles'
21
21
  import { OIcon, OText } from '../shared'
22
+ import { InView } from 'react-native-intersection-observer'
23
+ import { Placeholder, PlaceholderLine } from 'rn-placeholder';
22
24
 
23
25
  export const ProductOptionSubOptionUI = (props: any) => {
24
26
  const {
@@ -32,7 +34,8 @@ export const ProductOptionSubOptionUI = (props: any) => {
32
34
  changePosition,
33
35
  disabled,
34
36
  setIsScrollAvailable,
35
- image
37
+ image,
38
+ enableIntersection
36
39
  } = props
37
40
 
38
41
  const disableIncrement = option?.limit_suboptions_by_max ? balance === option?.max || state.quantity === suboption?.max : state.quantity === suboption?.max || (!state.selected && balance === option?.max)
@@ -43,6 +46,7 @@ export const ProductOptionSubOptionUI = (props: any) => {
43
46
  const [{ parsePrice, optimizeImage }] = useUtils()
44
47
  const [showMessage, setShowMessage] = useState(false)
45
48
  const [isDirty, setIsDirty] = useState(false)
49
+ const [isIntersectionObserver, setIsIntersectionObserver] = useState(!enableIntersection)
46
50
 
47
51
  const iconsSize = 20
48
52
 
@@ -67,6 +71,10 @@ export const ProductOptionSubOptionUI = (props: any) => {
67
71
  }
68
72
  }
69
73
 
74
+ const handleChangeInterSection = (inView: boolean) => {
75
+ setIsIntersectionObserver(inView)
76
+ }
77
+
70
78
  useEffect(() => {
71
79
  if (balance === option?.max && state?.selected && isDirty) {
72
80
  setIsDirty(false)
@@ -81,104 +89,110 @@ export const ProductOptionSubOptionUI = (props: any) => {
81
89
  }, [balance])
82
90
 
83
91
  return (
84
- <View>
85
- <Container onPress={!(option?.with_half_option || option?.allow_suboption_quantity) ? () => handleSuboptionClick() : null}>
86
- <IconControl disabled={disabled} onPress={() => handleSuboptionClick()}>
87
- {((option?.min === 0 && option?.max === 1) || option?.max > 1) ? (
88
- state?.selected ? (
89
- <OIcon src={theme.images.general.check_act} color={theme.colors.primary} width={16} />
90
- ) : (
91
- <OIcon src={theme.images.general.check_nor} color={theme.colors.disabled} width={16} />
92
- )
93
- ) : (
94
- state?.selected ? (
95
- <OIcon src={theme.images.general.radio_act} color={theme.colors.primary} width={16} />
92
+ <InView onChange={(inView: boolean) => handleChangeInterSection(inView)} triggerOnce={true}>
93
+ {isIntersectionObserver ? (
94
+ <Container onPress={!((option?.with_half_option || option?.allow_suboption_quantity) && state?.selected) ? () => handleSuboptionClick() : null}>
95
+ <IconControl disabled={disabled} onPress={() => handleSuboptionClick()}>
96
+ {((option?.min === 0 && option?.max === 1) || option?.max > 1) ? (
97
+ state?.selected ? (
98
+ <OIcon src={theme.images.general.check_act} color={theme.colors.primary} width={16} />
99
+ ) : (
100
+ <OIcon src={theme.images.general.check_nor} color={theme.colors.disabled} width={16} />
101
+ )
96
102
  ) : (
97
- <OIcon src={theme.images.general.radio_nor} color={theme.colors.disabled} width={16} />
98
- )
103
+ state?.selected ? (
104
+ <OIcon src={theme.images.general.radio_act} color={theme.colors.primary} width={16} />
105
+ ) : (
106
+ <OIcon src={theme.images.general.radio_nor} color={theme.colors.disabled} width={16} />
107
+ )
108
+ )}
109
+ {image && (
110
+ <Logo style={styles.logo}>
111
+ <FastImage
112
+ style={styles.icon}
113
+ source={{
114
+ uri: optimizeImage(image, 'h_100,c_limit'),
115
+ priority: FastImage.priority.normal,
116
+ }}
117
+ resizeMode={FastImage.resizeMode.cover}
118
+ />
119
+ </Logo>
120
+ )}
121
+ <OText size={12} lineHeight={18} color={theme.colors.textSecondary} mLeft={5} style={{ flex: 1 }}>
122
+ {suboption?.name}
123
+ </OText>
124
+ </IconControl>
125
+ {option?.allow_suboption_quantity && state?.selected && (
126
+ <QuantityControl>
127
+ <>
128
+ <Checkbox disabled={disabled || state.quantity === 0} onPress={decrement}>
129
+ <IconAntDesign
130
+ name='minuscircleo'
131
+ size={iconsSize}
132
+ color={state.quantity === 0 || disabled ? theme.colors.disabled : theme.colors.primary}
133
+ />
134
+ </Checkbox>
135
+ <OText size={12}>
136
+ {state.quantity}
137
+ </OText>
138
+ <Checkbox disabled={disabled || disableIncrement} onPress={increment}>
139
+ <IconAntDesign
140
+ name='pluscircleo'
141
+ size={iconsSize}
142
+ color={disableIncrement || disabled ? theme.colors.disabled : theme.colors.primary}
143
+ />
144
+ </Checkbox>
145
+ </>
146
+ </QuantityControl>
99
147
  )}
100
- {image && (
101
- <Logo style={styles.logo}>
102
- <FastImage
103
- style={styles.icon}
104
- source={{
105
- uri: optimizeImage(image, 'h_100,c_limit'),
106
- priority: FastImage.priority.normal,
107
- }}
108
- resizeMode={FastImage.resizeMode.cover}
109
- />
110
- </Logo>
148
+ {option?.with_half_option && state?.selected && (
149
+ <PositionControl>
150
+ <>
151
+ <Circle disabled={disabled} onPress={() => changePosition('left')}>
152
+ <OIcon
153
+ src={theme.images.general.half_l}
154
+ color={state.selected && state.position === 'left' ? theme.colors.primary : '#cbcbcb'}
155
+ width={20}
156
+ height={20}
157
+ style={styles.inverse}
158
+ />
159
+ </Circle>
160
+ <Circle disabled={disabled} onPress={() => changePosition('whole')}>
161
+ <OIcon
162
+ src={theme.images.general.half_f}
163
+ color={state.selected && state.position === 'whole' ? theme.colors.primary : '#cbcbcb'}
164
+ width={20}
165
+ height={20}
166
+ />
167
+ </Circle>
168
+ <Circle disabled={disabled} onPress={() => changePosition('right')}>
169
+ <OIcon
170
+ src={theme.images.general.half_r}
171
+ color={state.selected && state.position === 'right' ? theme.colors.primary : '#cbcbcb'}
172
+ width={20}
173
+ height={20}
174
+ />
175
+ </Circle>
176
+ </>
177
+ </PositionControl>
111
178
  )}
112
- <OText size={12} lineHeight={18} color={theme.colors.textSecondary} mLeft={5} style={{ flex: 1 }}>
113
- {suboption?.name}
114
- </OText>
115
- </IconControl>
116
- {option?.allow_suboption_quantity && state?.selected && (
117
- <QuantityControl>
118
- <>
119
- <Checkbox disabled={disabled || state.quantity === 0} onPress={decrement}>
120
- <IconAntDesign
121
- name='minuscircleo'
122
- size={iconsSize}
123
- color={state.quantity === 0 || disabled ? theme.colors.disabled : theme.colors.primary}
124
- />
125
- </Checkbox>
126
- <OText size={12}>
127
- {state.quantity}
128
- </OText>
129
- <Checkbox disabled={disabled || disableIncrement} onPress={increment}>
130
- <IconAntDesign
131
- name='pluscircleo'
132
- size={iconsSize}
133
- color={disableIncrement || disabled ? theme.colors.disabled : theme.colors.primary}
134
- />
135
- </Checkbox>
136
- </>
137
- </QuantityControl>
138
- )}
139
- {option?.with_half_option && state?.selected && (
140
- <PositionControl>
141
- <>
142
- <Circle disabled={disabled} onPress={() => changePosition('left')}>
143
- <OIcon
144
- src={theme.images.general.half_l}
145
- color={state.selected && state.position === 'left' ? theme.colors.primary : '#cbcbcb'}
146
- width={20}
147
- height={20}
148
- style={styles.inverse}
149
- />
150
- </Circle>
151
- <Circle disabled={disabled} onPress={() => changePosition('whole')}>
152
- <OIcon
153
- src={theme.images.general.half_f}
154
- color={state.selected && state.position === 'whole' ? theme.colors.primary : '#cbcbcb'}
155
- width={20}
156
- height={20}
157
- />
158
- </Circle>
159
- <Circle disabled={disabled} onPress={() => changePosition('right')}>
160
- <OIcon
161
- src={theme.images.general.half_r}
162
- color={state.selected && state.position === 'right' ? theme.colors.primary : '#cbcbcb'}
163
- width={20}
164
- height={20}
165
- />
166
- </Circle>
167
- </>
168
- </PositionControl>
169
- )}
170
- {price > 0 && (
171
- <OText size={12} lineHeight={18} color={theme.colors.textSecondary} style={{ width: 70, maxWidth: 70 }}>
172
- + {parsePrice(price)}
173
- </OText>
174
- )}
175
- </Container>
179
+ {price > 0 && (
180
+ <OText size={12} lineHeight={18} color={theme.colors.textSecondary} style={{ width: 70, maxWidth: 70 }}>
181
+ + {parsePrice(price)}
182
+ </OText>
183
+ )}
184
+ </Container>
185
+ ) : (
186
+ <Placeholder>
187
+ <PlaceholderLine height={25} />
188
+ </Placeholder>
189
+ )}
176
190
  {showMessage && (
177
191
  <OText size={10} mLeft={4} mRight={4} style={{ flex: 1, textAlign: 'center' }} color={theme.colors.primary}>
178
192
  {`${t('OPTIONS_MAX_LIMIT', 'Maximum options to choose')}: ${option?.max}`}
179
193
  </OText>
180
194
  )}
181
- </View>
195
+ </InView>
182
196
  )
183
197
  }
184
198
 
@@ -12,7 +12,7 @@ export const ProfessionalPhoto = styled.ImageBackground`
12
12
 
13
13
  export const InfoWrapper = styled.View`
14
14
  margin-vertical: 30px;
15
- padding-horizontal: 40px;
15
+ padding-horizontal: 20px;
16
16
  `
17
17
 
18
18
  export const Divider = styled.View`
@@ -22,7 +22,7 @@ export const Divider = styled.View`
22
22
  `
23
23
 
24
24
  export const ScheduleWrapper = styled.View`
25
- padding-horizontal: 40px;
25
+ padding-horizontal: 20px;
26
26
  margin-top: 30px;
27
27
  `
28
28
 
@@ -43,4 +43,4 @@ export const CalendarWrapper = styled.View`
43
43
  border-color: ${(props: any) => props.theme.colors.backgroundGray200};
44
44
  border-radius: 7.6px;
45
45
  padding: 15px;
46
- `
46
+ `
@@ -19,7 +19,7 @@ import { useTheme } from 'styled-components/native';
19
19
  import { OButton, OIcon, OModal, OText } from '../shared'
20
20
  import { Placeholder, PlaceholderLine } from 'rn-placeholder'
21
21
  import { NotFoundSource } from '../NotFoundSource'
22
- import { View, StyleSheet, ScrollView, RefreshControl } from 'react-native'
22
+ import { View, StyleSheet, ScrollView, RefreshControl, Platform } from 'react-native'
23
23
  import { PromotionParams } from '../../types'
24
24
  import { Container } from '../../layouts/Container'
25
25
 
@@ -98,8 +98,6 @@ const PromotionsUI = (props: PromotionParams) => {
98
98
 
99
99
  return (
100
100
  <Container
101
- noPadding
102
- pt={20}
103
101
  refreshControl={
104
102
  <RefreshControl
105
103
  refreshing={refreshing}
@@ -112,7 +110,14 @@ const PromotionsUI = (props: PromotionParams) => {
112
110
  titleAlign={'center'}
113
111
  onActionLeft={() => navigation.goBack()}
114
112
  showCall={false}
115
- style={{ paddingVertical: 0, marginLeft: 20 }}
113
+ paddingTop={Platform.OS === 'ios' ? 20 : 10}
114
+ style={{ paddingVertical: 0 }}
115
+ btnStyle={{ paddingLeft: 0 }}
116
+ buttonProps={{
117
+ bgColor: theme.colors.white,
118
+ borderColor: theme.colors.white,
119
+ textStyle: { color: theme.colors.btnFont }
120
+ }}
116
121
  />
117
122
  <PromotionsContainer>
118
123
  <SearchBarContainer>
@@ -182,7 +187,7 @@ const PromotionsUI = (props: PromotionParams) => {
182
187
  title={``}
183
188
  onClose={() => setOpenModal(false)}
184
189
  >
185
- <View style={{ padding: 20 }}>
190
+ <ScrollView style={{ padding: 20 }}>
186
191
  <OText style={{ alignSelf: 'center', fontWeight: '700' }} mBottom={20}>
187
192
  {offerSelected?.name} / {t('VALUE_OF_OFFER', 'Value of offer')}: {offerSelected?.rate_type === 1 ? `${offerSelected?.rate}%` : `${parsePrice(offerSelected?.rate)}`}
188
193
  </OText>
@@ -210,10 +215,7 @@ const PromotionsUI = (props: PromotionParams) => {
210
215
  <OText style={{ marginTop: 10, marginBottom: 10 }}>
211
216
  {t('AVAILABLE_BUSINESSES_FOR_OFFER', 'Available businesses for this offer')}:
212
217
  </OText>
213
- <ScrollView
214
- showsVerticalScrollIndicator={false}
215
- style={{ height: '68%' }}
216
- >
218
+ <View style={{ marginBottom: 70 }}>
217
219
  {offerSelected?.businesses?.map((business: any) => {
218
220
  return (
219
221
  <SingleBusinessOffer key={business.id}>
@@ -244,8 +246,8 @@ const PromotionsUI = (props: PromotionParams) => {
244
246
  </SingleBusinessOffer>
245
247
  )
246
248
  })}
247
- </ScrollView>
248
- </View>
249
+ </View>
250
+ </ScrollView>
249
251
  </OModal>
250
252
  </PromotionsContainer>
251
253
  </Container>
@@ -2,8 +2,6 @@ import styled, { css } from 'styled-components/native'
2
2
 
3
3
  export const PromotionsContainer = styled.View`
4
4
  width: 100%;
5
- padding-left: 40px;
6
- padding-right: 40px;
7
5
  `
8
6
 
9
7
  export const WrapperSingleOffer = styled.View`
@@ -192,6 +192,11 @@ const ReviewDriverUI = (props: ReviewDriverParams) => {
192
192
  style={{ flexDirection: 'column', alignItems: 'flex-start' }}
193
193
  titleWrapStyle={{ paddingHorizontal: 0 }}
194
194
  titleStyle={{ marginRight: 0, marginLeft: 0 }}
195
+ buttonProps={{
196
+ bgColor: theme.colors.white,
197
+ borderColor: theme.colors.white,
198
+ textStyle: { color: theme.colors.btnFont }
199
+ }}
195
200
  />
196
201
  <DriverPhotoContainer>
197
202
  <View
@@ -1,7 +1,7 @@
1
1
  import styled from 'styled-components/native'
2
2
 
3
3
  export const ReviewDriverContainer = styled.ScrollView`
4
- padding: 20px 40px;
4
+ padding: 20px;
5
5
  margin-bottom: 100px;
6
6
  `
7
7
 
@@ -215,6 +215,11 @@ export const ReviewOrderUI = (props: ReviewOrderParams) => {
215
215
  style={{ flexDirection: 'column', alignItems: 'flex-start' }}
216
216
  titleWrapStyle={{ paddingHorizontal: 0 }}
217
217
  titleStyle={{ marginRight: 0, marginLeft: 0 }}
218
+ buttonProps={{
219
+ bgColor: theme.colors.white,
220
+ borderColor: theme.colors.white,
221
+ textStyle: { color: theme.colors.btnFont }
222
+ }}
218
223
  />
219
224
  <BusinessLogo isMulti={order?.business?.length > 1}>
220
225
  {typeof order?.logo === 'string' || !order?.logo ? (
@@ -1,7 +1,7 @@
1
1
  import styled from 'styled-components/native'
2
2
 
3
3
  export const ReviewOrderContainer = styled.ScrollView`
4
- padding: 20px 40px;
4
+ padding: 20px;
5
5
  margin-bottom: 100px;
6
6
  `
7
7
 
@@ -73,6 +73,11 @@ const ReviewProductsUI = (props: ReviewProductParams) => {
73
73
  style={{ flexDirection: 'column', alignItems: 'flex-start' }}
74
74
  titleWrapStyle={{ paddingHorizontal: 0 }}
75
75
  titleStyle={{ marginRight: 0, marginLeft: 0 }}
76
+ buttonProps={{
77
+ bgColor: theme.colors.white,
78
+ borderColor: theme.colors.white,
79
+ textStyle: { color: theme.colors.btnFont }
80
+ }}
76
81
  />
77
82
  {order?.products && order.products.length > 0 && order?.products.map(productsOrder => (
78
83
  productsOrder?.length ? productsOrder?.map((product: any, i: any) => !product?.deleted ?
@@ -1,7 +1,7 @@
1
1
  import styled from 'styled-components/native'
2
2
 
3
3
  export const ReviewProductsContainer = styled.ScrollView`
4
- padding: 20px 40px;
4
+ padding: 20px;
5
5
  margin-bottom: 100px;
6
6
  `
7
7
 
@@ -116,7 +116,7 @@ const ServiceFormUI = (props: ServiceFormParams) => {
116
116
  marginHorizontal: 0
117
117
  },
118
118
  professionalList: {
119
- paddingHorizontal: 40,
119
+ paddingHorizontal: 20,
120
120
  paddingVertical: 30,
121
121
  }
122
122
  })
@@ -11,7 +11,7 @@ export const ProfessionalPhoto = styled.ImageBackground`
11
11
  `;
12
12
 
13
13
  export const InfoWrapper = styled.View`
14
- padding-horizontal: 40px;
14
+ padding-horizontal: 20px;
15
15
  margin-vertical: 30px;
16
16
  `
17
17
 
@@ -22,7 +22,7 @@ export const Divider = styled.View`
22
22
  `
23
23
 
24
24
  export const ProfessionalWrapper = styled.View`
25
- padding-horizontal: 40px;
25
+ padding-horizontal: 20px;
26
26
  margin-top: 30px;
27
27
  `
28
28
 
@@ -41,10 +41,10 @@ export const ButtonWrapper = styled.View`
41
41
  align-items: center;
42
42
  flex-direction: row;
43
43
  padding-vertical: 13px;
44
- padding-horizontal: 40px;
44
+ padding-horizontal: 20px;
45
45
  margin-top: 30px;
46
46
  margin-bottom: 40px;
47
47
  width: 100%;
48
48
  border-top-width: 1px;
49
49
  border-top-color: ${(props: any) => props.theme.colors.backgroundGray200};
50
- `
50
+ `
@@ -72,6 +72,11 @@ export const SessionsUI = (props: SessionsParams) => {
72
72
  showCall={false}
73
73
  paddingTop={10}
74
74
  btnStyle={{ paddingLeft: 0 }}
75
+ buttonProps={{
76
+ bgColor: theme.colors.white,
77
+ borderColor: theme.colors.white,
78
+ textStyle: { color: theme.colors.btnFont }
79
+ }}
75
80
  />
76
81
  {user?.session_strategy === 'jwt_session' ? (
77
82
  <>