ordering-ui-react-native 0.15.65 → 0.15.66-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.
- package/package.json +7 -3
- package/src/DeliveryApp.tsx +43 -1
- package/src/components/AddressForm/index.tsx +18 -2
- package/src/components/BusinessBasicInformation/index.tsx +11 -19
- package/src/components/BusinessController/index.tsx +16 -8
- package/src/components/BusinessInformation/index.tsx +14 -0
- package/src/components/BusinessTypeFilter/index.tsx +1 -2
- package/src/components/BusinessesListing/index.tsx +1 -1
- package/src/components/Checkout/index.tsx +23 -2
- package/src/components/DriverTips/index.tsx +11 -6
- package/src/components/LanguageSelector/index.tsx +6 -2
- package/src/components/LoginForm/index.tsx +120 -30
- package/src/components/LoginForm/styles.tsx +6 -0
- package/src/components/OrderDetails/index.tsx +7 -21
- package/src/components/PaymentOptions/index.tsx +67 -50
- package/src/components/PaymentOptionsWebView/index.tsx +120 -121
- package/src/components/ReviewDriver/index.tsx +1 -1
- package/src/components/ReviewOrder/index.tsx +2 -1
- package/src/components/ReviewProducts/index.tsx +11 -0
- package/src/components/SignupForm/index.tsx +145 -61
- package/src/components/SingleProductCard/index.tsx +16 -4
- package/src/components/SingleProductReview/index.tsx +1 -1
- package/src/components/StripeMethodForm/index.tsx +22 -24
- package/src/components/UpsellingProducts/index.tsx +1 -1
- package/src/components/UserProfileForm/index.tsx +63 -6
- package/src/components/UserProfileForm/styles.tsx +8 -0
- package/src/components/VerifyPhone/styles.tsx +1 -2
- package/src/components/shared/OModal.tsx +1 -1
- package/src/hooks/useCountdownTimer.tsx +26 -0
- package/src/navigators/CheckoutNavigator.tsx +6 -0
- package/src/navigators/HomeNavigator.tsx +12 -0
- package/src/pages/BusinessesListing.tsx +7 -6
- package/src/pages/MultiCheckout.tsx +31 -0
- package/src/pages/MultiOrdersDetails.tsx +27 -0
- package/src/pages/OrderDetails.tsx +1 -1
- package/src/pages/ReviewDriver.tsx +2 -2
- package/src/pages/ReviewOrder.tsx +2 -2
- package/src/pages/Sessions.tsx +22 -0
- package/src/theme.json +0 -1
- package/src/types/index.tsx +18 -11
- package/src/utils/index.tsx +68 -1
- package/themes/business/index.tsx +4 -0
- package/themes/business/src/components/AcceptOrRejectOrder/index.tsx +103 -15
- package/themes/business/src/components/AcceptOrRejectOrder/styles.tsx +6 -0
- package/themes/business/src/components/Chat/index.tsx +42 -90
- package/themes/business/src/components/DriverMap/index.tsx +6 -5
- package/themes/business/src/components/DriverSchedule/index.tsx +71 -0
- package/themes/business/src/components/DriverSchedule/styles.tsx +6 -0
- package/themes/business/src/components/LoginForm/index.tsx +89 -2
- package/themes/business/src/components/LoginForm/styles.tsx +6 -0
- package/themes/business/src/components/LogoutButton/index.tsx +1 -1
- package/themes/business/src/components/NewOrderNotification/index.tsx +26 -13
- package/themes/business/src/components/OrderDetails/Business.tsx +2 -2
- package/themes/business/src/components/OrderDetails/Delivery.tsx +28 -11
- package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +14 -7
- package/themes/business/src/components/OrderDetails/OrderHeaderComponent.tsx +6 -0
- package/themes/business/src/components/OrdersListManager/index.tsx +1 -1
- package/themes/business/src/components/OrdersOption/index.tsx +8 -4
- package/themes/business/src/components/PreviousOrders/index.tsx +7 -7
- package/themes/business/src/components/ProductItemAccordion/index.tsx +2 -2
- package/themes/business/src/components/ScheduleBlocked/index.tsx +53 -0
- package/themes/business/src/components/UserFormDetails/index.tsx +5 -2
- package/themes/business/src/components/UserProfileForm/index.tsx +28 -4
- package/themes/business/src/components/shared/OModal.tsx +41 -38
- package/themes/business/src/types/index.tsx +8 -2
- package/themes/doordash/src/components/BusinessesListing/index.tsx +1 -1
- package/themes/doordash/src/components/LoginForm/index.tsx +1 -2
- package/themes/instacart/src/components/BusinessesListing/index.tsx +1 -1
- package/themes/kiosk/src/components/BusinessMenu/index.tsx +39 -28
- package/themes/kiosk/src/components/BusinessesListing/index.tsx +2 -3
- package/themes/kiosk/src/components/Cart/index.tsx +11 -12
- package/themes/kiosk/src/components/CartBottomSheet/index.tsx +9 -2
- package/themes/kiosk/src/components/CartContent/index.tsx +0 -11
- package/themes/kiosk/src/components/CartItem/index.tsx +4 -3
- package/themes/kiosk/src/components/CategoriesMenu/index.tsx +107 -62
- package/themes/kiosk/src/components/Checkout/index.tsx +40 -22
- package/themes/kiosk/src/components/CustomerName/index.tsx +0 -6
- package/themes/kiosk/src/components/DrawerView/index.tsx +1 -0
- package/themes/kiosk/src/components/DrawerView/styles.tsx +2 -2
- package/themes/kiosk/src/components/NavBar/index.tsx +29 -20
- package/themes/kiosk/src/components/OptionCard/index.tsx +1 -1
- package/themes/kiosk/src/components/OrderDetails/index.tsx +32 -27
- package/themes/kiosk/src/components/OrderTypeCardSelector/index.tsx +9 -11
- package/themes/kiosk/src/components/PaymentOptions/index.tsx +56 -54
- package/themes/kiosk/src/components/ProductForm/index.tsx +7 -8
- package/themes/kiosk/src/components/ProductItemAccordion/index.tsx +2 -2
- package/themes/kiosk/src/components/ProductOption/index.tsx +1 -1
- package/themes/kiosk/src/components/ProductOptionSubOption/index.tsx +3 -1
- package/themes/kiosk/src/components/UpsellingProducts/index.tsx +16 -5
- package/themes/kiosk/src/components/shared/OButton.tsx +5 -18
- package/themes/kiosk/src/types/index.d.ts +1 -0
- package/themes/original/index.tsx +30 -8
- package/themes/original/src/components/ActiveOrders/index.tsx +15 -132
- package/themes/original/src/components/ActiveOrders/styles.tsx +0 -54
- package/themes/original/src/components/AddressForm/index.tsx +7 -6
- package/themes/original/src/components/AddressList/index.tsx +30 -18
- package/themes/original/src/components/AppleLogin/index.tsx +6 -8
- package/themes/original/src/components/BusinessBasicInformation/index.tsx +304 -158
- package/themes/original/src/components/BusinessBasicInformation/styles.tsx +6 -2
- package/themes/original/src/components/BusinessController/index.tsx +168 -96
- package/themes/original/src/components/BusinessController/styles.tsx +5 -0
- package/themes/original/src/components/BusinessItemAccordion/index.tsx +8 -5
- package/themes/original/src/components/BusinessItemAccordion/styles.tsx +3 -1
- package/themes/original/src/components/BusinessListingSearch/index.tsx +231 -63
- package/themes/original/src/components/BusinessListingSearch/styles.tsx +22 -2
- package/themes/original/src/components/BusinessPreorder/index.tsx +1 -1
- package/themes/original/src/components/BusinessProductsCategories/index.tsx +2 -2
- package/themes/original/src/components/BusinessProductsList/CategoryDescription/index.tsx +44 -0
- package/themes/original/src/components/BusinessProductsList/index.tsx +51 -52
- package/themes/original/src/components/BusinessProductsList/styles.tsx +0 -3
- package/themes/original/src/components/BusinessProductsListing/index.tsx +318 -155
- package/themes/original/src/components/BusinessProductsListing/styles.tsx +32 -0
- package/themes/original/src/components/BusinessReviews/index.tsx +6 -1
- package/themes/original/src/components/BusinessTypeFilter/index.tsx +106 -39
- package/themes/original/src/components/BusinessTypeFilter/styles.tsx +2 -0
- package/themes/original/src/components/BusinessesListing/Layout/Appointment/index.tsx +560 -0
- package/themes/original/src/components/BusinessesListing/{styles.tsx → Layout/Appointment/styles.tsx} +24 -2
- package/themes/original/src/components/BusinessesListing/Layout/Original/index.tsx +679 -0
- package/themes/original/src/components/BusinessesListing/Layout/Original/styles.tsx +137 -0
- package/themes/original/src/components/BusinessesListing/index.tsx +99 -458
- package/themes/original/src/components/Cart/index.tsx +61 -42
- package/themes/original/src/components/Checkout/index.tsx +90 -39
- package/themes/original/src/components/DriverTips/index.tsx +17 -12
- package/themes/original/src/components/Favorite/index.tsx +92 -0
- package/themes/original/src/components/Favorite/styles.tsx +22 -0
- package/themes/original/src/components/FavoriteList/index.tsx +298 -0
- package/themes/original/src/components/FavoriteList/styles.tsx +5 -0
- package/themes/original/src/components/ForgotPasswordForm/index.tsx +84 -4
- package/themes/original/src/components/GPSButton/index.tsx +15 -8
- package/themes/original/src/components/GoogleMap/index.tsx +11 -11
- package/themes/original/src/components/Help/index.tsx +21 -4
- package/themes/original/src/components/HighestRatedBusinesses/index.tsx +18 -1
- package/themes/original/src/components/LastOrders/index.tsx +12 -1
- package/themes/original/src/components/LoginForm/Otp/index.tsx +91 -0
- package/themes/original/src/components/LoginForm/Otp/styles.tsx +7 -0
- package/themes/original/src/components/LoginForm/index.tsx +332 -164
- package/themes/original/src/components/LoginForm/styles.tsx +1 -3
- package/themes/original/src/components/MessageListing/index.tsx +10 -1
- package/themes/original/src/components/Messages/index.tsx +1 -1
- package/themes/original/src/components/MomentSelector/index.tsx +197 -0
- package/themes/original/src/components/MomentSelector/styles.tsx +6 -0
- package/themes/original/src/components/MultiCartsPaymethodsAndWallets/index.tsx +243 -0
- package/themes/original/src/components/MultiCartsPaymethodsAndWallets/styles.tsx +46 -0
- package/themes/original/src/components/MultiCheckout/index.tsx +298 -0
- package/themes/original/src/components/MultiCheckout/styles.tsx +59 -0
- package/themes/original/src/components/MultiOrdersDetails/SingleOrderCard.tsx +372 -0
- package/themes/original/src/components/MultiOrdersDetails/index.tsx +258 -0
- package/themes/original/src/components/MultiOrdersDetails/styles.tsx +50 -0
- package/themes/original/src/components/MyOrders/index.tsx +120 -32
- package/themes/original/src/components/MyOrders/styles.tsx +8 -1
- package/themes/original/src/components/NavBar/index.tsx +4 -4
- package/themes/original/src/components/OrderDetails/OrderHistory.tsx +167 -0
- package/themes/original/src/components/OrderDetails/index.tsx +150 -64
- package/themes/original/src/components/OrderDetails/styles.tsx +1 -2
- package/themes/original/src/components/OrderSummary/index.tsx +6 -6
- package/themes/original/src/components/OrderTypeSelector/index.tsx +79 -35
- package/themes/original/src/components/OrderTypeSelector/styles.tsx +19 -1
- package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/index.tsx +153 -0
- package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/styles.tsx +6 -0
- package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/index.tsx +53 -0
- package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/styles.tsx +6 -0
- package/themes/original/src/components/OrdersOption/index.tsx +137 -38
- package/themes/original/src/components/OrdersOption/styles.tsx +4 -1
- package/themes/original/src/components/PaymentOptionCash/index.tsx +2 -2
- package/themes/original/src/components/PaymentOptionWallet/index.tsx +17 -23
- package/themes/original/src/components/PaymentOptionWallet/styles.tsx +1 -1
- package/themes/original/src/components/PaymentOptions/index.tsx +58 -37
- package/themes/original/src/components/PhoneInputNumber/index.tsx +5 -11
- package/themes/original/src/components/PreviousOrders/index.tsx +18 -147
- package/themes/original/src/components/ProductForm/index.tsx +718 -679
- package/themes/original/src/components/ProductForm/styles.tsx +6 -2
- package/themes/original/src/components/ProductItemAccordion/index.tsx +2 -2
- package/themes/original/src/components/ProductOption/index.tsx +1 -1
- package/themes/original/src/components/ProductOptionSubOption/index.tsx +18 -12
- package/themes/original/src/components/ProfessionalFilter/index.tsx +128 -0
- package/themes/original/src/components/ProfessionalFilter/styles.tsx +0 -0
- package/themes/original/src/components/ProfessionalProfile/index.tsx +298 -0
- package/themes/original/src/components/ProfessionalProfile/styles.tsx +46 -0
- package/themes/original/src/components/Promotions/index.tsx +151 -133
- package/themes/original/src/components/Promotions/styles.tsx +3 -23
- package/themes/original/src/components/ReviewDriver/index.tsx +6 -6
- package/themes/original/src/components/ReviewOrder/index.tsx +1 -1
- package/themes/original/src/components/ReviewTrigger/index.tsx +118 -0
- package/themes/original/src/components/ReviewTrigger/styles.tsx +34 -0
- package/themes/original/src/components/SearchBar/index.tsx +13 -5
- package/themes/original/src/components/ServiceForm/index.tsx +579 -0
- package/themes/original/src/components/ServiceForm/styles.tsx +50 -0
- package/themes/original/src/components/Sessions/index.tsx +160 -0
- package/themes/original/src/components/Sessions/styles.tsx +15 -0
- package/themes/original/src/components/SignupForm/index.tsx +237 -126
- package/themes/original/src/components/SingleOrderCard/index.tsx +275 -0
- package/themes/original/src/components/SingleOrderCard/styles.tsx +54 -0
- package/themes/original/src/components/SingleProductCard/index.tsx +161 -88
- package/themes/original/src/components/SingleProductCard/styles.tsx +2 -2
- package/themes/original/src/components/StripeElementsForm/index.tsx +16 -8
- package/themes/original/src/components/StripeElementsForm/naked.tsx +2 -2
- package/themes/original/src/components/UpsellingProducts/index.tsx +86 -74
- package/themes/original/src/components/UserDetails/index.tsx +15 -81
- package/themes/original/src/components/UserFormDetails/index.tsx +98 -66
- package/themes/original/src/components/UserProfile/index.tsx +11 -2
- package/themes/original/src/components/UserProfileForm/index.tsx +33 -22
- package/themes/original/src/components/UserVerification/index.tsx +178 -192
- package/themes/original/src/components/VerifyPhone/index.tsx +10 -7
- package/themes/original/src/components/VerifyPhone/styles.tsx +2 -1
- package/themes/original/src/components/Wallets/index.tsx +25 -12
- package/themes/original/src/components/shared/OBottomPopup.tsx +44 -13
- package/themes/original/src/components/shared/OButton.tsx +2 -0
- package/themes/original/src/components/shared/OInput.tsx +3 -2
- package/themes/original/src/components/shared/OModal.tsx +4 -2
- package/themes/original/src/layouts/FloatingBottomContainer.tsx +5 -1
- package/themes/original/src/types/index.tsx +187 -35
- package/themes/original/src/utils/index.tsx +96 -2
- package/themes/single-business/src/components/OrderTypeSelector/index.tsx +1 -1
- package/themes/uber-eats/src/components/BusinessesListing/index.tsx +1 -1
|
@@ -39,7 +39,8 @@ const CartUI = (props: any) => {
|
|
|
39
39
|
handleChangeComment,
|
|
40
40
|
commentState,
|
|
41
41
|
onNavigationRedirect,
|
|
42
|
-
handleRemoveOfferClick
|
|
42
|
+
handleRemoveOfferClick,
|
|
43
|
+
isMultiCheckout
|
|
43
44
|
} = props
|
|
44
45
|
|
|
45
46
|
const theme = useTheme();
|
|
@@ -59,10 +60,11 @@ const CartUI = (props: any) => {
|
|
|
59
60
|
|
|
60
61
|
const isCartPending = cart?.status === 2
|
|
61
62
|
const isCouponEnabled = validationFields?.fields?.checkout?.coupon?.enabled
|
|
63
|
+
const isCheckoutMultiBusinessEnabled: Boolean = configs?.checkout_multi_business_enabled?.value === '1'
|
|
62
64
|
|
|
63
65
|
const business: any = (orderState?.carts && Object.values(orderState.carts).find((_cart: any) => _cart?.uuid === props.cartuuid)) ?? {}
|
|
64
66
|
const businessId = business?.business_id ?? null
|
|
65
|
-
const placeSpotTypes = [
|
|
67
|
+
const placeSpotTypes = [4]
|
|
66
68
|
|
|
67
69
|
const momentFormatted = !orderState?.option?.moment
|
|
68
70
|
? t('RIGHT_NOW', 'Right Now')
|
|
@@ -96,17 +98,23 @@ const CartUI = (props: any) => {
|
|
|
96
98
|
const handleUpsellingPage = () => {
|
|
97
99
|
setOpenUpselling(false)
|
|
98
100
|
setCanOpenUpselling(false)
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
101
|
+
if (isCheckoutMultiBusinessEnabled) {
|
|
102
|
+
props.onNavigationRedirect('CheckoutNavigator', {
|
|
103
|
+
screen: 'MultiCheckout'
|
|
104
|
+
})
|
|
105
|
+
} else {
|
|
106
|
+
props.onNavigationRedirect('CheckoutNavigator', {
|
|
107
|
+
screen: 'CheckoutPage',
|
|
108
|
+
cartUuid: cart?.uuid,
|
|
109
|
+
businessLogo: cart?.business?.logo,
|
|
110
|
+
businessName: cart?.business?.name,
|
|
111
|
+
cartTotal: cart?.total
|
|
112
|
+
})
|
|
113
|
+
}
|
|
106
114
|
}
|
|
107
115
|
|
|
108
116
|
const getIncludedTaxes = () => {
|
|
109
|
-
if (cart?.taxes === null) {
|
|
117
|
+
if (cart?.taxes === null || !cart?.taxes) {
|
|
110
118
|
return cart.business.tax_type === 1 ? cart?.tax : 0
|
|
111
119
|
} else {
|
|
112
120
|
return cart?.taxes.reduce((taxIncluded: number, tax: any) => {
|
|
@@ -162,13 +170,14 @@ const CartUI = (props: any) => {
|
|
|
162
170
|
handleClearProducts={handleClearProducts}
|
|
163
171
|
handleCartOpen={handleCartOpen}
|
|
164
172
|
onNavigationRedirect={props.onNavigationRedirect}
|
|
165
|
-
handleChangeStore={
|
|
173
|
+
handleChangeStore={() => setOpenChangeStore(true)}
|
|
166
174
|
handleClickCheckout={() => setOpenUpselling(true)}
|
|
167
175
|
checkoutButtonDisabled={(openUpselling && !canOpenUpselling) || cart?.subtotal < cart?.minimum || !cart?.valid_address}
|
|
176
|
+
isMultiCheckout={isMultiCheckout}
|
|
168
177
|
>
|
|
169
|
-
{cart?.products?.length > 0 && cart?.products.map((product: any) => (
|
|
178
|
+
{cart?.products?.length > 0 && cart?.products.map((product: any, i: number) => (
|
|
170
179
|
<ProductItemAccordion
|
|
171
|
-
key={product.code}
|
|
180
|
+
key={`${product.code}_${i}`}
|
|
172
181
|
isCartPending={isCartPending}
|
|
173
182
|
isCartProduct
|
|
174
183
|
product={product}
|
|
@@ -202,8 +211,8 @@ const CartUI = (props: any) => {
|
|
|
202
211
|
</OSTable>
|
|
203
212
|
)}
|
|
204
213
|
{
|
|
205
|
-
cart?.offers?.length > 0 && cart?.offers?.filter((offer: any) => offer?.target === 1)?.map((offer: any) => (
|
|
206
|
-
<OSTable key={offer.id}>
|
|
214
|
+
cart?.offers?.length > 0 && cart?.offers?.filter((offer: any) => offer?.target === 1)?.map((offer: any, i: number) => (
|
|
215
|
+
<OSTable key={`${offer.id}_${i}`}>
|
|
207
216
|
<OSRow>
|
|
208
217
|
<OText size={12} lineHeight={18}>{offer.name}</OText>
|
|
209
218
|
{offer.rate_type === 1 && (
|
|
@@ -234,8 +243,8 @@ const CartUI = (props: any) => {
|
|
|
234
243
|
</OSTable>
|
|
235
244
|
)}
|
|
236
245
|
{
|
|
237
|
-
cart.taxes?.length > 0 && cart.taxes.filter((tax: any) => tax.type === 2 && tax?.rate !== 0).map((tax: any) => (
|
|
238
|
-
<OSTable key={tax.id}>
|
|
246
|
+
cart.taxes?.length > 0 && cart.taxes.filter((tax: any) => tax.type === 2 && tax?.rate !== 0).map((tax: any, i: number) => (
|
|
247
|
+
<OSTable key={`${tax.id}_${i}`}>
|
|
239
248
|
<OSRow>
|
|
240
249
|
<OText size={12} lineHeight={18} numberOfLines={1} >
|
|
241
250
|
{tax.name || t('INHERIT_FROM_BUSINESS', 'Inherit from business')}{' '}
|
|
@@ -250,8 +259,8 @@ const CartUI = (props: any) => {
|
|
|
250
259
|
))
|
|
251
260
|
}
|
|
252
261
|
{
|
|
253
|
-
cart?.fees?.length > 0 && cart?.fees?.filter((fee: any) => !(fee.fixed === 0 && fee.percentage === 0)).map((fee: any) => (
|
|
254
|
-
<OSTable key={fee
|
|
262
|
+
cart?.fees?.length > 0 && cart?.fees?.filter((fee: any) => !(fee.fixed === 0 && fee.percentage === 0)).map((fee: any, i: number) => (
|
|
263
|
+
<OSTable key={`${fee.id}_${i}`}>
|
|
255
264
|
<OSRow>
|
|
256
265
|
<OText size={12} lineHeight={18} numberOfLines={1}>
|
|
257
266
|
{fee.name || t('INHERIT_FROM_BUSINESS', 'Inherit from business')}{' '}
|
|
@@ -293,8 +302,8 @@ const CartUI = (props: any) => {
|
|
|
293
302
|
</OSTable>
|
|
294
303
|
)}
|
|
295
304
|
{
|
|
296
|
-
cart?.offers?.length > 0 && cart?.offers?.filter((offer: any) => offer?.target === 2)?.map((offer: any) => (
|
|
297
|
-
<OSTable key={offer.id}>
|
|
305
|
+
cart?.offers?.length > 0 && cart?.offers?.filter((offer: any) => offer?.target === 2)?.map((offer: any, i: number) => (
|
|
306
|
+
<OSTable key={`${offer.id}_${i}`}>
|
|
298
307
|
<OSRow>
|
|
299
308
|
<OText size={12} lineHeight={18}>{offer.name}</OText>
|
|
300
309
|
{offer.rate_type === 1 && (
|
|
@@ -352,7 +361,7 @@ const CartUI = (props: any) => {
|
|
|
352
361
|
{t('TOTAL', 'Total')}
|
|
353
362
|
</OText>
|
|
354
363
|
<OText size={14} lineHeight={21} weight={'600'}>
|
|
355
|
-
{parsePrice(cart?.
|
|
364
|
+
{parsePrice(cart?.balance >= 0 ? cart?.balance : 0)}
|
|
356
365
|
</OText>
|
|
357
366
|
</OSTable>
|
|
358
367
|
</OSTotal>
|
|
@@ -409,30 +418,40 @@ const CartUI = (props: any) => {
|
|
|
409
418
|
)}
|
|
410
419
|
</OSBill>
|
|
411
420
|
)}
|
|
412
|
-
{
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
421
|
+
{!isMultiCheckout && (
|
|
422
|
+
<>
|
|
423
|
+
{cart?.valid_products ? (
|
|
424
|
+
<CheckoutAction>
|
|
425
|
+
<OButton
|
|
426
|
+
text={(cart?.subtotal >= cart?.minimum || !cart?.minimum) && cart?.valid_address ? (
|
|
427
|
+
!openUpselling !== canOpenUpselling ? t('CHECKOUT', 'Checkout') : t('LOADING', 'Loading')
|
|
428
|
+
) : !cart?.valid_address ? (
|
|
429
|
+
`${t('OUT_OF_COVERAGE', 'Out of Coverage')}`
|
|
430
|
+
) : (
|
|
431
|
+
`${t('MINIMUN_SUBTOTAL_ORDER', 'Minimum subtotal order:')} ${parsePrice(cart?.minimum)}`
|
|
432
|
+
)}
|
|
433
|
+
bgColor={(cart?.subtotal < cart?.minimum || !cart?.valid_address) ? theme.colors.secundary : theme.colors.primary}
|
|
434
|
+
isDisabled={(openUpselling && !canOpenUpselling) || cart?.subtotal < cart?.minimum || !cart?.valid_address}
|
|
435
|
+
borderColor={theme.colors.primary}
|
|
436
|
+
imgRightSrc={null}
|
|
437
|
+
textStyle={{ color: 'white', textAlign: 'center', flex: 1 }}
|
|
438
|
+
onClick={() => setOpenUpselling(true)}
|
|
439
|
+
style={{ width: '100%', flexDirection: 'row', justifyContent: 'center', borderRadius: 7.6, shadowOpacity: 0 }}
|
|
440
|
+
/>
|
|
441
|
+
</CheckoutAction>
|
|
442
|
+
) : (
|
|
443
|
+
<View style={{ alignItems: 'center', width: '100%' }}>
|
|
444
|
+
<OText size={12} color={theme.colors.red} style={{ textAlign: 'center', marginTop: 5 }}>
|
|
445
|
+
{t('WARNING_INVALID_PRODUCTS_CHECKOUT', 'To continue with your checkout, please remove from your cart the products that are not available.')}
|
|
446
|
+
</OText>
|
|
447
|
+
</View>
|
|
448
|
+
)}
|
|
449
|
+
</>
|
|
431
450
|
)}
|
|
432
451
|
</BusinessItemAccordion>
|
|
433
452
|
|
|
434
453
|
<OModal
|
|
435
|
-
open={openChangeStore
|
|
454
|
+
open={openChangeStore}
|
|
436
455
|
entireModal
|
|
437
456
|
customClose
|
|
438
457
|
onClose={() => setOpenChangeStore(false)}
|
|
@@ -113,7 +113,14 @@ const CheckoutUI = (props: any) => {
|
|
|
113
113
|
right: Platform.OS === 'ios' ? 5 : (I18nManager.isRTL ? 30 : 0),
|
|
114
114
|
position: 'absolute',
|
|
115
115
|
fontSize: 20
|
|
116
|
-
}
|
|
116
|
+
},
|
|
117
|
+
detailWrapper: {
|
|
118
|
+
paddingHorizontal: 40,
|
|
119
|
+
width: '100%'
|
|
120
|
+
},
|
|
121
|
+
wrapperNavbar: Platform.OS === 'ios'
|
|
122
|
+
? { paddingVertical: 0, paddingHorizontal: 40 }
|
|
123
|
+
: { paddingVertical: 20, paddingHorizontal: 40 }
|
|
117
124
|
})
|
|
118
125
|
|
|
119
126
|
const [, { showToast }] = useToast();
|
|
@@ -133,11 +140,23 @@ const CheckoutUI = (props: any) => {
|
|
|
133
140
|
const [isDeliveryOptionModalVisible, setIsDeliveryOptionModalVisible] = useState(false)
|
|
134
141
|
const [showGateway, setShowGateway] = useState<any>({ closedByUsed: false, open: false });
|
|
135
142
|
const [webviewPaymethod, setWebviewPaymethod] = useState<any>(null)
|
|
136
|
-
|
|
137
|
-
const
|
|
138
|
-
|
|
143
|
+
const [isOpen, setIsOpen] = useState(false)
|
|
144
|
+
const [requiredFields, setRequiredFields] = useState<any>([])
|
|
145
|
+
|
|
146
|
+
const placeSpotTypes = [4]
|
|
147
|
+
const businessConfigs = businessDetails?.business?.configs ?? []
|
|
148
|
+
const isWalletCashEnabled = businessConfigs.find((config: any) => config.key === 'wallet_cash_enabled')?.value === '1'
|
|
149
|
+
const isWalletCreditPointsEnabled = businessConfigs.find((config: any) => config.key === 'wallet_credit_point_enabled')?.value === '1'
|
|
150
|
+
const isWalletEnabled = configs?.cash_wallet?.value && configs?.wallet_enabled?.value === '1' && (isWalletCashEnabled || isWalletCreditPointsEnabled)
|
|
151
|
+
const isBusinessChangeEnabled = configs?.cart_change_business_validation?.value === '1'
|
|
152
|
+
|
|
139
153
|
const isPreOrder = configs?.preorder_status_enabled?.value === '1'
|
|
140
|
-
const isDisabledButtonPlace = loading || !cart?.valid || (!paymethodSelected && cart?.balance > 0) || placing || errorCash ||
|
|
154
|
+
const isDisabledButtonPlace = loading || !cart?.valid || (!paymethodSelected && cart?.balance > 0) || placing || errorCash ||
|
|
155
|
+
cart?.subtotal < cart?.minimum || (placeSpotTypes.includes(options?.type) && !cart?.place) ||
|
|
156
|
+
(options.type === 1 &&
|
|
157
|
+
validationFields?.fields?.checkout?.driver_tip?.enabled &&
|
|
158
|
+
validationFields?.fields?.checkout?.driver_tip?.required &&
|
|
159
|
+
(Number(cart?.driver_tip) <= 0))
|
|
141
160
|
|
|
142
161
|
const driverTipsOptions = typeof configs?.driver_tip_options?.value === 'string'
|
|
143
162
|
? JSON.parse(configs?.driver_tip_options?.value) || []
|
|
@@ -159,9 +178,13 @@ const CheckoutUI = (props: any) => {
|
|
|
159
178
|
}
|
|
160
179
|
}
|
|
161
180
|
|
|
162
|
-
const handlePlaceOrder = () => {
|
|
163
|
-
if (!userErrors.length) {
|
|
164
|
-
handlerClickPlaceOrder && handlerClickPlaceOrder()
|
|
181
|
+
const handlePlaceOrder = (confirmPayment: any) => {
|
|
182
|
+
if (!userErrors.length && !requiredFields?.length) {
|
|
183
|
+
handlerClickPlaceOrder && handlerClickPlaceOrder(null, null, confirmPayment)
|
|
184
|
+
return
|
|
185
|
+
}
|
|
186
|
+
if (requiredFields?.length) {
|
|
187
|
+
setIsOpen(true)
|
|
165
188
|
return
|
|
166
189
|
}
|
|
167
190
|
let stringError = ''
|
|
@@ -191,11 +214,12 @@ const CheckoutUI = (props: any) => {
|
|
|
191
214
|
setUserErrors([])
|
|
192
215
|
const errors = []
|
|
193
216
|
const notFields = ['coupon', 'driver_tip', 'mobile_phone', 'address', 'zipcode', 'address_notes']
|
|
217
|
+
const _requiredFields: any = []
|
|
194
218
|
|
|
195
219
|
Object.values(validationFields?.fields?.checkout).map((field: any) => {
|
|
196
|
-
if (field?.required && !notFields.includes(field.code)) {
|
|
220
|
+
if (field?.required && !notFields.includes(field.code) && field?.enabled) {
|
|
197
221
|
if (!user[field?.code]) {
|
|
198
|
-
|
|
222
|
+
_requiredFields.push(field?.code)
|
|
199
223
|
}
|
|
200
224
|
}
|
|
201
225
|
})
|
|
@@ -206,8 +230,9 @@ const CheckoutUI = (props: any) => {
|
|
|
206
230
|
validationFields?.fields?.checkout?.cellphone?.required) ||
|
|
207
231
|
configs?.verification_phone_required?.value === '1')
|
|
208
232
|
) {
|
|
209
|
-
|
|
233
|
+
_requiredFields.push('cellphone')
|
|
210
234
|
}
|
|
235
|
+
setRequiredFields(_requiredFields)
|
|
211
236
|
|
|
212
237
|
if (phoneUpdate) {
|
|
213
238
|
errors.push(t('NECESSARY_UPDATE_COUNTRY_PHONE_CODE', 'It is necessary to update your phone number'))
|
|
@@ -239,7 +264,7 @@ const CheckoutUI = (props: any) => {
|
|
|
239
264
|
|
|
240
265
|
useEffect(() => {
|
|
241
266
|
if (cart?.products?.length === 0) {
|
|
242
|
-
|
|
267
|
+
onNavigationRedirect('Business', { store: cart?.business?.slug, header: null, logo: null })
|
|
243
268
|
}
|
|
244
269
|
}, [cart?.products])
|
|
245
270
|
|
|
@@ -250,13 +275,18 @@ const CheckoutUI = (props: any) => {
|
|
|
250
275
|
return (
|
|
251
276
|
<>
|
|
252
277
|
<Container noPadding>
|
|
253
|
-
<
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
278
|
+
<View style={styles.wrapperNavbar}>
|
|
279
|
+
<NavBar
|
|
280
|
+
title={t('CHECKOUT', 'Checkout')}
|
|
281
|
+
titleAlign={'center'}
|
|
282
|
+
onActionLeft={() => navigation?.canGoBack() && navigation.goBack()}
|
|
283
|
+
showCall={false}
|
|
284
|
+
btnStyle={{ paddingLeft: 0 }}
|
|
285
|
+
style={{ marginTop: Platform.OS === 'ios' ? 0 : 30 }}
|
|
286
|
+
titleWrapStyle={{ paddingHorizontal: 0 }}
|
|
287
|
+
titleStyle={{ marginRight: 0, marginLeft: 0 }}
|
|
288
|
+
/>
|
|
289
|
+
</View>
|
|
260
290
|
<ChContainer style={styles.pagePadding}>
|
|
261
291
|
<ChSection style={{ paddingTop: 0 }}>
|
|
262
292
|
<ChHeader>
|
|
@@ -597,7 +627,7 @@ const CheckoutUI = (props: any) => {
|
|
|
597
627
|
</OText>
|
|
598
628
|
</TouchableOpacity>
|
|
599
629
|
</CartHeader>
|
|
600
|
-
{
|
|
630
|
+
{isBusinessChangeEnabled && (
|
|
601
631
|
<TouchableOpacity
|
|
602
632
|
onPress={() => setOpenChangeStore(true)}
|
|
603
633
|
style={{ alignSelf: 'flex-start' }}
|
|
@@ -616,6 +646,7 @@ const CheckoutUI = (props: any) => {
|
|
|
616
646
|
cart={cart}
|
|
617
647
|
isCartPending={cart?.status === 2}
|
|
618
648
|
onNavigationRedirect={onNavigationRedirect}
|
|
649
|
+
placeSpotTypes={placeSpotTypes}
|
|
619
650
|
/>
|
|
620
651
|
</>
|
|
621
652
|
)}
|
|
@@ -625,7 +656,7 @@ const CheckoutUI = (props: any) => {
|
|
|
625
656
|
|
|
626
657
|
{!cartState.loading && cart && (
|
|
627
658
|
<View>
|
|
628
|
-
<ChErrors style={{ marginBottom:
|
|
659
|
+
<ChErrors style={{ marginBottom: 10 }}>
|
|
629
660
|
{!cart?.valid_address && cart?.status !== 2 && (
|
|
630
661
|
<OText
|
|
631
662
|
color={theme.colors.error}
|
|
@@ -649,7 +680,7 @@ const CheckoutUI = (props: any) => {
|
|
|
649
680
|
color={theme.colors.error}
|
|
650
681
|
size={12}
|
|
651
682
|
>
|
|
652
|
-
{t('
|
|
683
|
+
{t('WARNING_INVALID_PRODUCTS_CHECKOUT', 'To continue with your checkout, please remove from your cart the products that are not available.')}
|
|
653
684
|
</OText>
|
|
654
685
|
)}
|
|
655
686
|
{placeSpotTypes.includes(options?.type) && !cart?.place && (
|
|
@@ -660,11 +691,22 @@ const CheckoutUI = (props: any) => {
|
|
|
660
691
|
{t('WARNING_PLACE_SPOT', 'Please, select your spot to place order.')}
|
|
661
692
|
</OText>
|
|
662
693
|
)}
|
|
694
|
+
{options.type === 1 &&
|
|
695
|
+
validationFields?.fields?.checkout?.driver_tip?.enabled &&
|
|
696
|
+
validationFields?.fields?.checkout?.driver_tip?.required &&
|
|
697
|
+
(Number(cart?.driver_tip) <= 0) && (
|
|
698
|
+
<OText
|
|
699
|
+
color={theme.colors.error}
|
|
700
|
+
size={12}
|
|
701
|
+
>
|
|
702
|
+
{t('WARNING_INVALID_DRIVER_TIP', 'Driver Tip is required.')}
|
|
703
|
+
</OText>
|
|
704
|
+
)}
|
|
663
705
|
</ChErrors>
|
|
664
706
|
</View>
|
|
665
707
|
)}
|
|
666
708
|
<OModal
|
|
667
|
-
open={openChangeStore
|
|
709
|
+
open={openChangeStore}
|
|
668
710
|
entireModal
|
|
669
711
|
customClose
|
|
670
712
|
onClose={() => setOpenChangeStore(false)}
|
|
@@ -674,11 +716,33 @@ const CheckoutUI = (props: any) => {
|
|
|
674
716
|
onClose={() => setOpenChangeStore(false)}
|
|
675
717
|
/>
|
|
676
718
|
</OModal>
|
|
719
|
+
<OModal
|
|
720
|
+
open={isOpen}
|
|
721
|
+
onClose={() => setIsOpen(false)}
|
|
722
|
+
>
|
|
723
|
+
<View style={styles.detailWrapper}>
|
|
724
|
+
<UserDetails
|
|
725
|
+
isUserDetailsEdit
|
|
726
|
+
cartStatus={cart?.status}
|
|
727
|
+
businessId={cart?.business_id}
|
|
728
|
+
useValidationFields
|
|
729
|
+
useDefualtSessionManager
|
|
730
|
+
useSessionUser
|
|
731
|
+
isCheckout
|
|
732
|
+
isEdit
|
|
733
|
+
phoneUpdate={phoneUpdate}
|
|
734
|
+
togglePhoneUpdate={togglePhoneUpdate}
|
|
735
|
+
requiredFields={requiredFields}
|
|
736
|
+
hideUpdateButton
|
|
737
|
+
onClose={() => setIsOpen(false)}
|
|
738
|
+
/>
|
|
739
|
+
</View>
|
|
740
|
+
</OModal>
|
|
677
741
|
</ChContainer>
|
|
678
742
|
</Container>
|
|
679
743
|
{!cartState.loading && cart && cart?.status !== 2 && (
|
|
680
744
|
<FloatingButton
|
|
681
|
-
handleClick={() => handlePlaceOrder()}
|
|
745
|
+
handleClick={() => handlePlaceOrder(null)}
|
|
682
746
|
isSecondaryBtn={isDisabledButtonPlace}
|
|
683
747
|
disabled={isDisabledButtonPlace}
|
|
684
748
|
btnText={cart?.subtotal >= cart?.minimum
|
|
@@ -692,7 +756,7 @@ const CheckoutUI = (props: any) => {
|
|
|
692
756
|
: (`${t('MINIMUN_SUBTOTAL_ORDER', 'Minimum subtotal order:')} ${parsePrice(cart?.minimum)}`)
|
|
693
757
|
}
|
|
694
758
|
btnRightValueShow
|
|
695
|
-
btnRightValue={parsePrice(cart?.
|
|
759
|
+
btnRightValue={parsePrice(cart?.balance)}
|
|
696
760
|
iosBottom={30}
|
|
697
761
|
/>
|
|
698
762
|
)}
|
|
@@ -708,19 +772,6 @@ const CheckoutUI = (props: any) => {
|
|
|
708
772
|
setShowGateway={setShowGateway}
|
|
709
773
|
/>
|
|
710
774
|
)}
|
|
711
|
-
{webviewPaymethod?.gateway === 'square' && showGateway.open && (
|
|
712
|
-
<PaymentOptionsWebView
|
|
713
|
-
onNavigationRedirect={onNavigationRedirect}
|
|
714
|
-
uri={`https://test-square-f50f7.web.app`}
|
|
715
|
-
user={user}
|
|
716
|
-
token={token}
|
|
717
|
-
cart={cart}
|
|
718
|
-
currency={currency}
|
|
719
|
-
webviewPaymethod={webviewPaymethod}
|
|
720
|
-
setShowGateway={setShowGateway}
|
|
721
|
-
locationId={'L1NGAY5M6KJRX'}
|
|
722
|
-
/>
|
|
723
|
-
)}
|
|
724
775
|
</>
|
|
725
776
|
)
|
|
726
777
|
}
|
|
@@ -873,7 +924,7 @@ export const Checkout = (props: any) => {
|
|
|
873
924
|
...props,
|
|
874
925
|
UIComponent: CheckoutUI,
|
|
875
926
|
cartState,
|
|
876
|
-
|
|
927
|
+
uuid: cartUuid
|
|
877
928
|
}
|
|
878
929
|
|
|
879
930
|
return (
|
|
@@ -48,22 +48,28 @@ const DriverTipsUI = (props: any) => {
|
|
|
48
48
|
}
|
|
49
49
|
})
|
|
50
50
|
|
|
51
|
-
const [value, setvalue] = useState(
|
|
51
|
+
const [value, setvalue] = useState('');
|
|
52
52
|
|
|
53
53
|
const placeholderCurrency = (configs?.currency_position?.value || 'left') === 'left'
|
|
54
54
|
? `${configs?.format_number_currency?.value}0`
|
|
55
55
|
: `0${configs?.format_number_currency?.value}`
|
|
56
56
|
|
|
57
57
|
const handleChangeDriverTip = (val: any) => {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
58
|
+
const tip = Number(val)
|
|
59
|
+
if ((isNaN(tip) || tip < 0)) {
|
|
60
|
+
setvalue(value)
|
|
61
|
+
return
|
|
62
|
+
}
|
|
63
|
+
setvalue(val)
|
|
61
64
|
}
|
|
62
|
-
|
|
65
|
+
|
|
63
66
|
return (
|
|
64
67
|
<DTContainer>
|
|
68
|
+
<DTLabel>
|
|
69
|
+
{t('CUSTOM_DRIVER_TIP_MESSAGE', '100% of these tips go directly to your driver')}
|
|
70
|
+
</DTLabel>
|
|
65
71
|
<DTWrapperTips>
|
|
66
|
-
{driverTipsOptions.map((option: any, i: number) => (
|
|
72
|
+
{!isDriverTipUseCustom && driverTipsOptions.map((option: any, i: number) => (
|
|
67
73
|
<TouchableOpacity
|
|
68
74
|
key={i}
|
|
69
75
|
onPress={() => handlerChangeOption(option)}
|
|
@@ -79,7 +85,7 @@ const DriverTipsUI = (props: any) => {
|
|
|
79
85
|
</TouchableOpacity>
|
|
80
86
|
))}
|
|
81
87
|
</DTWrapperTips>
|
|
82
|
-
{!driverTipsOptions.includes(driverTip) && driverTip > 0 && (
|
|
88
|
+
{(!isDriverTipUseCustom && !driverTipsOptions.includes(driverTip) && driverTip > 0) && (
|
|
83
89
|
<OText
|
|
84
90
|
color={theme.colors.error}
|
|
85
91
|
size={16}
|
|
@@ -90,13 +96,12 @@ const DriverTipsUI = (props: any) => {
|
|
|
90
96
|
)}
|
|
91
97
|
{isDriverTipUseCustom && (
|
|
92
98
|
<DTForm>
|
|
93
|
-
<DTLabel>
|
|
94
|
-
{t('CUSTOM_DRIVER_TIP_MESSAGE', '100% of these tips go directly to your driver')}
|
|
95
|
-
</DTLabel>
|
|
96
99
|
<DTWrapperInput>
|
|
97
100
|
<OInput
|
|
98
101
|
placeholder={placeholderCurrency}
|
|
99
102
|
style={style.inputStyle}
|
|
103
|
+
value={value}
|
|
104
|
+
type={'numeric'}
|
|
100
105
|
onChange={handleChangeDriverTip}
|
|
101
106
|
autoCapitalize='none'
|
|
102
107
|
autoCorrect={false}
|
|
@@ -108,10 +113,10 @@ const DriverTipsUI = (props: any) => {
|
|
|
108
113
|
textStyle={{ color: 'white', fontSize: 14 }}
|
|
109
114
|
imgRightSrc={null}
|
|
110
115
|
style={{ borderRadius: 5, height: 44 }}
|
|
111
|
-
isDisabled={
|
|
116
|
+
isDisabled={parseFloat(value || '0') < 0 || parseFloat(value || '0') === driverTip || value === ''}
|
|
112
117
|
onClick={() => {
|
|
113
118
|
handlerChangeOption(value)
|
|
114
|
-
setvalue(
|
|
119
|
+
setvalue('')
|
|
115
120
|
}}
|
|
116
121
|
/>
|
|
117
122
|
</DTWrapperInput>
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import React, { useState } from 'react'
|
|
2
|
+
import { useLanguage, useOrder } from 'ordering-components/native'
|
|
3
|
+
import { useTheme } from 'styled-components/native'
|
|
4
|
+
import { FavoriteList } from '../FavoriteList'
|
|
5
|
+
import NavBar from '../NavBar'
|
|
6
|
+
import { OText } from '../shared'
|
|
7
|
+
|
|
8
|
+
import {
|
|
9
|
+
TabContainer,
|
|
10
|
+
Tab,
|
|
11
|
+
Container
|
|
12
|
+
} from './styles'
|
|
13
|
+
|
|
14
|
+
export const Favorite = (props: any) => {
|
|
15
|
+
const {
|
|
16
|
+
navigation
|
|
17
|
+
} = props
|
|
18
|
+
const [, t] = useLanguage()
|
|
19
|
+
const theme = useTheme()
|
|
20
|
+
const [orderState] = useOrder()
|
|
21
|
+
const [tabSelected, setTabSelected] = useState('businesses')
|
|
22
|
+
|
|
23
|
+
const tabList = [
|
|
24
|
+
{ key: 'businesses', name: t('BUSINESSES', 'Businesses') },
|
|
25
|
+
{ key: 'products', name: t('PRODUCTS', 'Products') },
|
|
26
|
+
{ key: 'orders', name: t('ORDERS', 'Orders') }
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
const goToBack = () => navigation?.canGoBack() && navigation.goBack()
|
|
30
|
+
|
|
31
|
+
const onRedirect = (route: string, params?: any) => {
|
|
32
|
+
navigation.navigate(route, params)
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return (
|
|
36
|
+
<Container>
|
|
37
|
+
<NavBar
|
|
38
|
+
title={t('FAVORITE', 'Favorite')}
|
|
39
|
+
titleAlign={'center'}
|
|
40
|
+
onActionLeft={goToBack}
|
|
41
|
+
showCall={false}
|
|
42
|
+
paddingTop={10}
|
|
43
|
+
btnStyle={{ paddingLeft: 0 }}
|
|
44
|
+
/>
|
|
45
|
+
<TabContainer>
|
|
46
|
+
{tabList.map((menu, i) => (
|
|
47
|
+
<Tab
|
|
48
|
+
key={i}
|
|
49
|
+
active={menu.key === tabSelected}
|
|
50
|
+
onPress={() => setTabSelected(menu.key)}
|
|
51
|
+
>
|
|
52
|
+
<OText
|
|
53
|
+
color={menu.key === tabSelected ? theme.colors.textNormal : theme.colors.disabled}
|
|
54
|
+
size={14}
|
|
55
|
+
weight={menu.key === tabSelected ? '500' : '400'}
|
|
56
|
+
style={{ marginBottom: 12 }}
|
|
57
|
+
>
|
|
58
|
+
{menu.name}
|
|
59
|
+
</OText>
|
|
60
|
+
</Tab>
|
|
61
|
+
))}
|
|
62
|
+
</TabContainer>
|
|
63
|
+
{tabSelected === 'businesses' && (
|
|
64
|
+
<FavoriteList
|
|
65
|
+
navigation={navigation}
|
|
66
|
+
onNavigationRedirect={onRedirect}
|
|
67
|
+
isBusiness
|
|
68
|
+
favoriteURL='favorite_businesses'
|
|
69
|
+
originalURL='business'
|
|
70
|
+
location={`${orderState.options?.address?.location?.lat},${orderState.options?.address?.location?.lng}`}
|
|
71
|
+
propsToFetch={['id', 'name', 'header', 'logo', 'location', 'address', 'ribbon', 'timezone', 'schedule', 'open', 'delivery_price', 'distance', 'delivery_time', 'pickup_time', 'reviews', 'featured', 'offers', 'food', 'laundry', 'alcohol', 'groceries', 'slug']}
|
|
72
|
+
/>
|
|
73
|
+
)}
|
|
74
|
+
{tabSelected === 'products' && (
|
|
75
|
+
<FavoriteList
|
|
76
|
+
favoriteURL='favorite_products'
|
|
77
|
+
originalURL='products'
|
|
78
|
+
onNavigationRedirect={onRedirect}
|
|
79
|
+
isProduct
|
|
80
|
+
/>
|
|
81
|
+
)}
|
|
82
|
+
{tabSelected === 'orders' && (
|
|
83
|
+
<FavoriteList
|
|
84
|
+
onNavigationRedirect={onRedirect}
|
|
85
|
+
favoriteURL='favorite_orders'
|
|
86
|
+
originalURL='orders'
|
|
87
|
+
isOrder
|
|
88
|
+
/>
|
|
89
|
+
)}
|
|
90
|
+
</Container>
|
|
91
|
+
)
|
|
92
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import styled, { css } from 'styled-components/native'
|
|
2
|
+
|
|
3
|
+
export const TabContainer = styled.View`
|
|
4
|
+
flex-direction: row;
|
|
5
|
+
border-bottom-color: ${(props: any) => props.theme.colors.border};
|
|
6
|
+
border-bottom-width: 1px;
|
|
7
|
+
margin-bottom: 25px;
|
|
8
|
+
`
|
|
9
|
+
|
|
10
|
+
export const Tab = styled.TouchableOpacity`
|
|
11
|
+
margin-right: 32px;
|
|
12
|
+
${(props: any) => props.active && css`
|
|
13
|
+
border-bottom-color: ${(props: any) => props.theme.colors.textNormal};
|
|
14
|
+
border-bottom-width: 1px;
|
|
15
|
+
`}
|
|
16
|
+
`
|
|
17
|
+
|
|
18
|
+
export const Container = styled.View`
|
|
19
|
+
padding-horizontal: 40px;
|
|
20
|
+
padding-bottom: 20px;
|
|
21
|
+
padding-top: 30px;
|
|
22
|
+
`
|