ordering-ui-react-native 0.24.18 → 0.25.1
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/README.md +3 -3
- package/package.json +162 -162
- package/src/AppContainer.tsx +96 -96
- package/src/DeliveryApp.tsx +152 -152
- package/src/assets/json/order.json +204 -204
- package/src/assets/json/orders.json +3591 -3591
- package/src/components/Account/index.tsx +200 -200
- package/src/components/Account/styles.tsx +21 -21
- package/src/components/ActiveOrders/index.tsx +169 -169
- package/src/components/ActiveOrders/styles.tsx +45 -45
- package/src/components/AddressDetails/index.tsx +74 -74
- package/src/components/AddressDetails/styles.tsx +26 -26
- package/src/components/AddressForm/index.tsx +750 -750
- package/src/components/AddressForm/styles.tsx +29 -29
- package/src/components/AddressList/index.tsx +336 -336
- package/src/components/AddressList/styles.tsx +20 -20
- package/src/components/Analytics/index.tsx +83 -83
- package/src/components/AppleLogin/index.tsx +148 -148
- package/src/components/AppleLogin/styles.tsx +22 -22
- package/src/components/BusinessBasicInformation/index.tsx +251 -251
- package/src/components/BusinessBasicInformation/styles.tsx +38 -38
- package/src/components/BusinessController/index.tsx +227 -227
- package/src/components/BusinessController/styles.tsx +52 -52
- package/src/components/BusinessInformation/index.tsx +143 -143
- package/src/components/BusinessInformation/styles.tsx +37 -37
- package/src/components/BusinessItemAccordion/index.tsx +148 -148
- package/src/components/BusinessItemAccordion/styles.tsx +61 -61
- package/src/components/BusinessProductsCategories/index.tsx +73 -73
- package/src/components/BusinessProductsCategories/styles.tsx +7 -7
- package/src/components/BusinessProductsList/index.tsx +149 -149
- package/src/components/BusinessProductsList/styles.tsx +13 -13
- package/src/components/BusinessProductsListing/index.tsx +318 -318
- package/src/components/BusinessProductsListing/styles.tsx +33 -33
- package/src/components/BusinessReviews/index.tsx +121 -121
- package/src/components/BusinessReviews/styles.tsx +33 -33
- package/src/components/BusinessTypeFilter/index.tsx +210 -210
- package/src/components/BusinessTypeFilter/styles.tsx +32 -32
- package/src/components/BusinessesListing/index.tsx +254 -254
- package/src/components/BusinessesListing/styles.tsx +60 -60
- package/src/components/Cart/index.tsx +420 -420
- package/src/components/Cart/styles.tsx +35 -35
- package/src/components/CartContent/index.tsx +50 -50
- package/src/components/CartContent/styles.tsx +19 -19
- package/src/components/Checkout/index.tsx +852 -852
- package/src/components/Checkout/styles.tsx +111 -111
- package/src/components/CouponControl/index.tsx +133 -133
- package/src/components/CouponControl/styles.tsx +22 -22
- package/src/components/DriverTips/index.tsx +158 -158
- package/src/components/DriverTips/styles.tsx +62 -62
- package/src/components/FacebookLogin/index.tsx +123 -123
- package/src/components/FacebookLogin/styles.tsx +23 -23
- package/src/components/FacebookPixel/index.tsx +81 -81
- package/src/components/FloatingButton/index.tsx +74 -74
- package/src/components/FloatingButton/styles.tsx +32 -32
- package/src/components/ForgotPasswordForm/index.tsx +150 -150
- package/src/components/ForgotPasswordForm/styles.tsx +11 -11
- package/src/components/GoogleLogin/index.tsx +133 -133
- package/src/components/GoogleLogin/styles.tsx +23 -23
- package/src/components/GoogleMap/index.tsx +247 -247
- package/src/components/Help/index.tsx +54 -54
- package/src/components/Help/styles.tsx +11 -11
- package/src/components/HelpAccountAndPayment/index.tsx +67 -67
- package/src/components/HelpAccountAndPayment/styles.tsx +6 -6
- package/src/components/HelpGuide/index.tsx +66 -66
- package/src/components/HelpGuide/styles.tsx +6 -6
- package/src/components/HelpOrder/index.tsx +78 -78
- package/src/components/HelpOrder/styles.tsx +5 -5
- package/src/components/Home/index.tsx +114 -114
- package/src/components/Home/styles.tsx +18 -18
- package/src/components/LanguageSelector/index.tsx +127 -127
- package/src/components/LanguageSelector/styles.tsx +10 -10
- package/src/components/LastOrders/index.tsx +104 -104
- package/src/components/LastOrders/styles.tsx +17 -17
- package/src/components/LoginForm/index.tsx +535 -535
- package/src/components/LoginForm/styles.tsx +74 -74
- package/src/components/LogoutButton/index.tsx +74 -74
- package/src/components/Messages/index.tsx +443 -443
- package/src/components/Messages/styles.tsx +24 -24
- package/src/components/MomentOption/index.tsx +238 -238
- package/src/components/MomentOption/styles.tsx +61 -61
- package/src/components/NavBar/index.tsx +122 -122
- package/src/components/NotFoundSource/index.tsx +56 -56
- package/src/components/NotFoundSource/styles.tsx +16 -16
- package/src/components/NotificationSetting/index.tsx +85 -85
- package/src/components/OrderCreating/index.tsx +158 -158
- package/src/components/OrderCreating/styles.tsx +22 -22
- package/src/components/OrderDetails/index.tsx +714 -714
- package/src/components/OrderDetails/styles.tsx +128 -128
- package/src/components/OrderSuccess/index.tsx +89 -89
- package/src/components/OrderSuccess/styles.tsx +22 -22
- package/src/components/OrderSummary/index.tsx +351 -351
- package/src/components/OrderSummary/styles.tsx +45 -45
- package/src/components/OrderTypeSelector/index.tsx +159 -159
- package/src/components/OrderTypeSelector/styles.tsx +22 -22
- package/src/components/OrdersOption/index.tsx +228 -228
- package/src/components/OrdersOption/styles.tsx +5 -5
- package/src/components/PaymentOptionCash/index.tsx +102 -102
- package/src/components/PaymentOptionCash/styles.tsx +18 -18
- package/src/components/PaymentOptionStripe/index.tsx +244 -244
- package/src/components/PaymentOptionStripe/styles.tsx +62 -62
- package/src/components/PaymentOptions/index.tsx +415 -415
- package/src/components/PaymentOptions/styles.tsx +52 -52
- package/src/components/PaymentOptionsWebView/index.tsx +173 -173
- package/src/components/PhoneInputNumber/index.tsx +115 -115
- package/src/components/PhoneInputNumber/styles.tsx +3 -3
- package/src/components/PreviousOrders/index.tsx +167 -167
- package/src/components/PreviousOrders/styles.tsx +34 -34
- package/src/components/ProductForm/index.tsx +442 -442
- package/src/components/ProductForm/styles.tsx +85 -85
- package/src/components/ProductIngredient/index.tsx +44 -44
- package/src/components/ProductIngredient/styles.tsx +7 -7
- package/src/components/ProductItemAccordion/index.tsx +315 -315
- package/src/components/ProductItemAccordion/styles.tsx +81 -81
- package/src/components/ProductOption/index.tsx +49 -49
- package/src/components/ProductOption/styles.tsx +14 -14
- package/src/components/ProductOptionSubOption/index.tsx +146 -146
- package/src/components/ProductOptionSubOption/styles.tsx +33 -33
- package/src/components/ReviewDriver/index.tsx +313 -313
- package/src/components/ReviewDriver/styles.tsx +38 -38
- package/src/components/ReviewOrder/index.tsx +339 -339
- package/src/components/ReviewOrder/styles.tsx +44 -44
- package/src/components/ReviewProducts/index.tsx +124 -124
- package/src/components/ReviewProducts/styles.tsx +16 -16
- package/src/components/SearchBar/index.tsx +99 -99
- package/src/components/ShareComponent/index.tsx +32 -32
- package/src/components/SignupForm/index.tsx +676 -676
- package/src/components/SignupForm/styles.tsx +27 -27
- package/src/components/SingleProductCard/index.tsx +114 -114
- package/src/components/SingleProductCard/styles.tsx +27 -27
- package/src/components/SingleProductReview/index.tsx +169 -169
- package/src/components/SingleProductReview/styles.tsx +26 -26
- package/src/components/StripeCardForm/index.tsx +97 -97
- package/src/components/StripeCardForm/naked.tsx +128 -128
- package/src/components/StripeCardForm/styles.tsx +27 -27
- package/src/components/StripeCardsList/index.tsx +158 -158
- package/src/components/StripeElementsForm/index.tsx +233 -233
- package/src/components/StripeElementsForm/naked.tsx +90 -90
- package/src/components/StripeElementsForm/styles.tsx +9 -9
- package/src/components/StripeMethodForm/index.tsx +209 -209
- package/src/components/StripeRedirectForm/index.tsx +159 -159
- package/src/components/StripeRedirectForm/styles.tsx +23 -23
- package/src/components/TaxInformation/index.tsx +83 -83
- package/src/components/TaxInformation/styles.tsx +9 -9
- package/src/components/UpsellingProducts/index.tsx +167 -167
- package/src/components/UpsellingProducts/styles.tsx +31 -31
- package/src/components/UserDetails/index.tsx +139 -139
- package/src/components/UserDetails/styles.tsx +21 -21
- package/src/components/UserFormDetails/index.tsx +302 -302
- package/src/components/UserFormDetails/styles.tsx +38 -38
- package/src/components/UserProfileForm/index.tsx +197 -197
- package/src/components/UserProfileForm/styles.tsx +45 -45
- package/src/components/VerifyPhone/index.tsx +255 -255
- package/src/components/VerifyPhone/styles.tsx +44 -44
- package/src/components/shared/OAlert.tsx +48 -48
- package/src/components/shared/OBottomPopup.tsx +74 -74
- package/src/components/shared/OButton.tsx +134 -134
- package/src/components/shared/ODropDown.tsx +167 -167
- package/src/components/shared/OIcon.tsx +55 -55
- package/src/components/shared/OIconButton.tsx +134 -134
- package/src/components/shared/OInput.tsx +122 -122
- package/src/components/shared/OModal.tsx +168 -168
- package/src/components/shared/OText.tsx +52 -52
- package/src/components/shared/OToast.tsx +95 -95
- package/src/components/shared/index.tsx +23 -23
- package/src/config/constants.tsx +73 -73
- package/src/config.json +16 -16
- package/src/context/OfflineActions/index.tsx +236 -236
- package/src/context/Theme/index.tsx +25 -25
- package/src/hooks/DeviceOrientation.tsx +40 -40
- package/src/hooks/useCountdownTimer.tsx +26 -26
- package/src/index.tsx +200 -200
- package/src/layouts/Container.tsx +27 -27
- package/src/layouts/FloatingBottomContainer.tsx +26 -26
- package/src/layouts/SafeAreaContainer.tsx +6 -6
- package/src/providers/AlertProvider.tsx +48 -48
- package/src/providers/StoreUtil.tsx +54 -54
- package/src/theme.json +135 -135
- package/src/types/@fatnlazycat/react-native-recaptcha-v3/index.d.ts +1 -1
- package/src/types/@stripe/stripe-react-native/index.d.ts +1 -1
- package/src/types/index.tsx +500 -500
- package/src/types/ordering-api-sdk/index.d.ts +1 -1
- package/src/types/ordering-components/index.d.ts +1 -1
- package/src/types/react-hook-form/index.d.ts +1 -1
- package/src/types/react-native-background-timer/index.d.ts +1 -1
- package/src/types/react-native-color-matrix-image-filters/index.d.ts +1 -1
- package/src/types/react-native-country-picker-modal/index.d.ts +1 -1
- package/src/types/react-native-credit-card-input/index.d.ts +1 -1
- package/src/types/react-native-fbsdk-next/index.d.ts +1 -1
- package/src/types/react-native-gesture-handler/index.d.ts +1 -1
- package/src/types/react-native-gifted-chat/index.d.ts +1 -1
- package/src/types/react-native-image-picker/index.d.ts +1 -1
- package/src/types/react-native-restart/index.d.ts +1 -1
- package/src/types/styled-components/index.d.ts +1 -1
- package/src/utils/index.tsx +462 -462
- package/themes/business/.prettierrc.js +9 -9
- package/themes/business/index.tsx +139 -139
- package/themes/business/src/components/AcceptOrRejectOrder/index.tsx +563 -563
- package/themes/business/src/components/AcceptOrRejectOrder/styles.tsx +46 -46
- package/themes/business/src/components/BusinessController/index.tsx +163 -163
- package/themes/business/src/components/BusinessController/styles.tsx +19 -19
- package/themes/business/src/components/BusinessProductList/AccordionDropdown.tsx +62 -62
- package/themes/business/src/components/BusinessProductList/IterateCategories.tsx +107 -107
- package/themes/business/src/components/BusinessProductList/ProductList.tsx +196 -196
- package/themes/business/src/components/BusinessProductList/index.tsx +197 -197
- package/themes/business/src/components/BusinessProductList/styles.tsx +10 -10
- package/themes/business/src/components/Chat/index.tsx +1228 -1228
- package/themes/business/src/components/Chat/styles.tsx +15 -15
- package/themes/business/src/components/Contacts/index.tsx +299 -299
- package/themes/business/src/components/Contacts/styles.tsx +42 -42
- package/themes/business/src/components/DriverMap/index.tsx +581 -581
- package/themes/business/src/components/DriverSchedule/index.tsx +108 -108
- package/themes/business/src/components/DriverSchedule/styles.tsx +6 -6
- package/themes/business/src/components/FloatingButton/index.tsx +145 -145
- package/themes/business/src/components/FloatingButton/styles.tsx +35 -35
- package/themes/business/src/components/ForgotPasswordForm/index.tsx +204 -204
- package/themes/business/src/components/ForgotPasswordForm/styles.tsx +11 -11
- package/themes/business/src/components/GoogleMap/index.tsx +429 -429
- package/themes/business/src/components/Home/index.tsx +188 -188
- package/themes/business/src/components/Home/styles.tsx +34 -34
- package/themes/business/src/components/LanguageSelector/index.tsx +123 -123
- package/themes/business/src/components/LanguageSelector/lang_country.json +597 -597
- package/themes/business/src/components/LanguageSelector/styles.tsx +17 -17
- package/themes/business/src/components/LoginForm/Otp/index.tsx +120 -120
- package/themes/business/src/components/LoginForm/Otp/styles.tsx +7 -7
- package/themes/business/src/components/LoginForm/index.tsx +971 -971
- package/themes/business/src/components/LoginForm/styles.tsx +64 -64
- package/themes/business/src/components/LogoutButton/index.tsx +73 -73
- package/themes/business/src/components/MapView/RenderMarker.tsx +146 -146
- package/themes/business/src/components/MapView/index.tsx +271 -271
- package/themes/business/src/components/MessagesOption/index.tsx +274 -274
- package/themes/business/src/components/MessagesOption/styles.tsx +27 -27
- package/themes/business/src/components/NetworkError/index.tsx +61 -61
- package/themes/business/src/components/NetworkError/styles.tsx +10 -10
- package/themes/business/src/components/NewOrderNotification/index.tsx +230 -230
- package/themes/business/src/components/NewOrderNotification/styles.tsx +8 -8
- package/themes/business/src/components/NotFoundSource/index.tsx +52 -52
- package/themes/business/src/components/NotFoundSource/styles.tsx +17 -17
- package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +787 -787
- package/themes/business/src/components/OrderDetails/OrderHeaderComponent.tsx +358 -358
- package/themes/business/src/components/OrderDetails/usePrinterCommands.tsx +221 -221
- package/themes/business/src/components/OrderDetailsLogistic/index.tsx +201 -201
- package/themes/business/src/components/OrderDetailsLogistic/styles.tsx +5 -5
- package/themes/business/src/components/OrderMessage/index.tsx +345 -345
- package/themes/business/src/components/OrderMessage/styles.tsx +5 -5
- package/themes/business/src/components/OrderSummary/index.tsx +950 -950
- package/themes/business/src/components/OrderSummary/styles.tsx +61 -61
- package/themes/business/src/components/OrdersListManager/index.tsx +898 -898
- package/themes/business/src/components/OrdersListManager/styles.tsx +123 -123
- package/themes/business/src/components/OrdersListManager/utils.tsx +216 -216
- package/themes/business/src/components/OrdersOption/index.tsx +1277 -1277
- package/themes/business/src/components/OrdersOption/styles.tsx +170 -170
- package/themes/business/src/components/OrdersOptionBusiness/index.tsx +65 -65
- package/themes/business/src/components/OrdersOptionBusiness/styles.tsx +8 -8
- package/themes/business/src/components/OrdersOptionCity/index.tsx +66 -66
- package/themes/business/src/components/OrdersOptionCity/styles.tsx +8 -8
- package/themes/business/src/components/OrdersOptionDate/index.tsx +66 -66
- package/themes/business/src/components/OrdersOptionDate/styles.tsx +8 -8
- package/themes/business/src/components/OrdersOptionDelivery/index.tsx +49 -49
- package/themes/business/src/components/OrdersOptionDelivery/styles.tsx +8 -8
- package/themes/business/src/components/OrdersOptionDriver/index.tsx +64 -64
- package/themes/business/src/components/OrdersOptionDriver/styles.tsx +8 -8
- package/themes/business/src/components/OrdersOptionPaymethod/index.tsx +63 -63
- package/themes/business/src/components/OrdersOptionPaymethod/styles.tsx +8 -8
- package/themes/business/src/components/OrdersOptionStatus/index.tsx +55 -55
- package/themes/business/src/components/OrdersOptionStatus/styles.tsx +8 -8
- package/themes/business/src/components/PhoneInputNumber/index.tsx +163 -163
- package/themes/business/src/components/PhoneInputNumber/styles.tsx +3 -3
- package/themes/business/src/components/PreviousMessages/FooterMessageComponent.tsx +103 -103
- package/themes/business/src/components/PreviousMessages/index.tsx +380 -380
- package/themes/business/src/components/PreviousMessages/styles.tsx +32 -32
- package/themes/business/src/components/PreviousOrders/OrderItem.tsx +296 -296
- package/themes/business/src/components/PreviousOrders/OrderList.tsx +93 -93
- package/themes/business/src/components/PreviousOrders/OrdersGroupedItem.tsx +115 -115
- package/themes/business/src/components/PreviousOrders/index.tsx +490 -490
- package/themes/business/src/components/PreviousOrders/styles.tsx +84 -84
- package/themes/business/src/components/PrinterEdition/MessageAlert.tsx +33 -33
- package/themes/business/src/components/PrinterEdition/index.tsx +431 -431
- package/themes/business/src/components/PrinterEdition/printerList.tsx +23 -23
- package/themes/business/src/components/PrinterEdition/styles.tsx +61 -61
- package/themes/business/src/components/PrinterSettings/index.tsx +267 -267
- package/themes/business/src/components/PrinterSettings/styles.tsx +30 -30
- package/themes/business/src/components/ProductItemAccordion/index.tsx +324 -324
- package/themes/business/src/components/ProductItemAccordion/styles.tsx +61 -61
- package/themes/business/src/components/ReviewCustomer/index.tsx +342 -342
- package/themes/business/src/components/ReviewCustomer/styles.tsx +28 -28
- package/themes/business/src/components/ScheduleBlocked/index.tsx +53 -53
- package/themes/business/src/components/SearchBar/index.tsx +113 -113
- package/themes/business/src/components/Sessions/index.tsx +187 -187
- package/themes/business/src/components/Sessions/styles.tsx +20 -20
- package/themes/business/src/components/SignupForm/index.tsx +530 -530
- package/themes/business/src/components/SignupForm/styles.tsx +16 -16
- package/themes/business/src/components/StoresList/index.tsx +225 -225
- package/themes/business/src/components/StoresList/styles.tsx +26 -26
- package/themes/business/src/components/UserFormDetails/index.tsx +520 -520
- package/themes/business/src/components/UserFormDetails/styles.tsx +40 -40
- package/themes/business/src/components/UserProfileForm/index.tsx +607 -607
- package/themes/business/src/components/UserProfileForm/styles.tsx +43 -43
- package/themes/business/src/components/VerifyPhone/index.tsx +201 -201
- package/themes/business/src/components/VerifyPhone/styles.tsx +43 -43
- package/themes/business/src/components/WebsocketStatus/index.tsx +171 -171
- package/themes/business/src/components/WebsocketStatus/styles.tsx +28 -28
- package/themes/business/src/components/shared/OAlert.tsx +52 -52
- package/themes/business/src/components/shared/OButton.tsx +148 -148
- package/themes/business/src/components/shared/OChatBubble.tsx +100 -100
- package/themes/business/src/components/shared/ODropDown.tsx +229 -229
- package/themes/business/src/components/shared/ODropDownCalendar.tsx +359 -359
- package/themes/business/src/components/shared/OFab.tsx +54 -54
- package/themes/business/src/components/shared/OIcon.tsx +67 -67
- package/themes/business/src/components/shared/OIconButton.tsx +127 -127
- package/themes/business/src/components/shared/OInput.tsx +146 -146
- package/themes/business/src/components/shared/OLink.tsx +96 -96
- package/themes/business/src/components/shared/OSegment.tsx +86 -86
- package/themes/business/src/components/shared/OText.tsx +61 -61
- package/themes/business/src/components/shared/OTextarea.tsx +46 -46
- package/themes/business/src/components/shared/OToast.tsx +92 -92
- package/themes/business/src/components/shared/index.tsx +27 -27
- package/themes/business/src/config/constants.tsx +10 -10
- package/themes/business/src/config/currency.tsx +1010 -1010
- package/themes/business/src/hooks/useLocation.tsx +114 -114
- package/themes/business/src/layouts/Container.tsx +56 -56
- package/themes/business/src/layouts/SafeAreaContainer.tsx +65 -65
- package/themes/business/src/providers/AlertProvider.tsx +38 -38
- package/themes/business/src/providers/Responsive.tsx +15 -15
- package/themes/business/src/providers/StoreUtil.tsx +54 -54
- package/themes/business/src/types/@react-navigation/material-bottom-tabs/index.d.ts +1 -1
- package/themes/business/src/types/index.tsx +669 -669
- package/themes/business/src/types/ordering-api-sdk/index.d.ts +1 -1
- package/themes/business/src/types/ordering-components/index.d.ts +1 -1
- package/themes/business/src/types/react-hook-form/index.d.ts +1 -1
- package/themes/business/src/types/react-native-credit-card-input/index.d.ts +1 -1
- package/themes/business/src/types/react-native-fbsdk/index.d.ts +1 -1
- package/themes/business/src/types/react-native-gesture-handler/index.d.ts +1 -1
- package/themes/business/src/types/react-native-html-to-pdf/index.d.ts +1 -1
- package/themes/business/src/types/react-native-loading-spinner-overlay/index.d.ts +1 -1
- package/themes/business/src/types/react-native-vector-icons/index.d.ts +5 -5
- package/themes/business/src/types/styled-components/index.d.ts +1 -1
- package/themes/business/src/types/toggle-switch-react-native/index.d.ts +1 -1
- package/themes/business/src/utils/index.tsx +428 -428
- package/themes/doordash/index.tsx +103 -103
- package/themes/doordash/src/components/ActiveOrders/index.tsx +120 -120
- package/themes/doordash/src/components/ActiveOrders/styles.tsx +43 -43
- package/themes/doordash/src/components/AddressDetails/index.tsx +72 -72
- package/themes/doordash/src/components/AddressDetails/styles.tsx +26 -26
- package/themes/doordash/src/components/AddressForm/index.tsx +669 -669
- package/themes/doordash/src/components/AddressForm/styles.tsx +38 -38
- package/themes/doordash/src/components/AddressList/index.tsx +332 -332
- package/themes/doordash/src/components/AddressList/styles.tsx +22 -22
- package/themes/doordash/src/components/AppleLogin/index.tsx +130 -130
- package/themes/doordash/src/components/AppleLogin/styles.tsx +5 -5
- package/themes/doordash/src/components/BusinessBasicInformation/index.tsx +221 -221
- package/themes/doordash/src/components/BusinessBasicInformation/styles.tsx +35 -35
- package/themes/doordash/src/components/BusinessController/index.tsx +183 -183
- package/themes/doordash/src/components/BusinessController/styles.tsx +49 -49
- package/themes/doordash/src/components/BusinessInformation/index.tsx +113 -113
- package/themes/doordash/src/components/BusinessInformation/styles.tsx +36 -36
- package/themes/doordash/src/components/BusinessItemAccordion/index.tsx +126 -126
- package/themes/doordash/src/components/BusinessItemAccordion/styles.tsx +62 -62
- package/themes/doordash/src/components/BusinessProductsCategories/index.tsx +139 -139
- package/themes/doordash/src/components/BusinessProductsCategories/styles.tsx +7 -7
- package/themes/doordash/src/components/BusinessProductsList/index.tsx +221 -221
- package/themes/doordash/src/components/BusinessProductsList/styles.tsx +13 -13
- package/themes/doordash/src/components/BusinessProductsListing/index.tsx +425 -425
- package/themes/doordash/src/components/BusinessProductsListing/styles.tsx +61 -61
- package/themes/doordash/src/components/BusinessReviews/index.tsx +122 -122
- package/themes/doordash/src/components/BusinessReviews/styles.tsx +34 -34
- package/themes/doordash/src/components/BusinessTypeFilter/index.tsx +130 -130
- package/themes/doordash/src/components/BusinessTypeFilter/styles.tsx +42 -42
- package/themes/doordash/src/components/BusinessesListing/index.tsx +304 -304
- package/themes/doordash/src/components/BusinessesListing/styles.tsx +68 -68
- package/themes/doordash/src/components/BusinessesSortBy/index.tsx +25 -25
- package/themes/doordash/src/components/BusinessesSortBy/styles.ts +19 -19
- package/themes/doordash/src/components/Cart/index.tsx +333 -333
- package/themes/doordash/src/components/Cart/styles.tsx +28 -28
- package/themes/doordash/src/components/CartContent/index.tsx +56 -56
- package/themes/doordash/src/components/CartContent/styles.tsx +19 -19
- package/themes/doordash/src/components/Checkout/index.tsx +643 -643
- package/themes/doordash/src/components/Checkout/styles.tsx +95 -95
- package/themes/doordash/src/components/CouponControl/index.tsx +122 -122
- package/themes/doordash/src/components/CouponControl/styles.tsx +23 -23
- package/themes/doordash/src/components/DriverTips/index.tsx +171 -171
- package/themes/doordash/src/components/DriverTips/styles.tsx +62 -62
- package/themes/doordash/src/components/FacebookLogin/index.tsx +124 -124
- package/themes/doordash/src/components/FacebookLogin/styles.tsx +21 -21
- package/themes/doordash/src/components/FloatingButton/index.tsx +72 -72
- package/themes/doordash/src/components/FloatingButton/styles.tsx +28 -28
- package/themes/doordash/src/components/ForgotPasswordForm/index.tsx +151 -151
- package/themes/doordash/src/components/ForgotPasswordForm/styles.tsx +17 -17
- package/themes/doordash/src/components/GoogleLogin/index.tsx +117 -117
- package/themes/doordash/src/components/GoogleLogin/styles.tsx +21 -21
- package/themes/doordash/src/components/GoogleMap/index.tsx +233 -233
- package/themes/doordash/src/components/Help/index.tsx +54 -54
- package/themes/doordash/src/components/Help/styles.tsx +11 -11
- package/themes/doordash/src/components/HelpAccountAndPayment/index.tsx +67 -67
- package/themes/doordash/src/components/HelpAccountAndPayment/styles.tsx +6 -6
- package/themes/doordash/src/components/HelpGuide/index.tsx +66 -66
- package/themes/doordash/src/components/HelpGuide/styles.tsx +6 -6
- package/themes/doordash/src/components/HelpOrder/index.tsx +78 -78
- package/themes/doordash/src/components/HelpOrder/styles.tsx +5 -5
- package/themes/doordash/src/components/Home/index.tsx +211 -211
- package/themes/doordash/src/components/Home/styles.tsx +21 -21
- package/themes/doordash/src/components/LanguageSelector/index.tsx +109 -109
- package/themes/doordash/src/components/LanguageSelector/styles.tsx +7 -7
- package/themes/doordash/src/components/LastOrders/index.tsx +102 -102
- package/themes/doordash/src/components/LastOrders/styles.tsx +17 -17
- package/themes/doordash/src/components/LoginForm/index.tsx +515 -515
- package/themes/doordash/src/components/LoginForm/styles.tsx +78 -78
- package/themes/doordash/src/components/LogoutButton/index.tsx +57 -57
- package/themes/doordash/src/components/Messages/index.tsx +461 -461
- package/themes/doordash/src/components/Messages/styles.tsx +24 -24
- package/themes/doordash/src/components/MomentOption/index.tsx +237 -237
- package/themes/doordash/src/components/MomentOption/styles.tsx +62 -62
- package/themes/doordash/src/components/NavBar/index.tsx +125 -125
- package/themes/doordash/src/components/NotFoundSource/index.tsx +51 -51
- package/themes/doordash/src/components/NotFoundSource/styles.tsx +16 -16
- package/themes/doordash/src/components/OrderDetails/index.tsx +491 -491
- package/themes/doordash/src/components/OrderDetails/styles.tsx +128 -128
- package/themes/doordash/src/components/OrderSummary/index.tsx +318 -318
- package/themes/doordash/src/components/OrderSummary/styles.tsx +37 -37
- package/themes/doordash/src/components/OrderTypeSelector/index.tsx +122 -122
- package/themes/doordash/src/components/OrderTypeSelector/styles.tsx +6 -6
- package/themes/doordash/src/components/OrdersOption/index.tsx +225 -225
- package/themes/doordash/src/components/OrdersOption/styles.tsx +4 -4
- package/themes/doordash/src/components/PaymentOptionCash/index.tsx +102 -102
- package/themes/doordash/src/components/PaymentOptionCash/styles.tsx +18 -18
- package/themes/doordash/src/components/PaymentOptionStripe/index.tsx +232 -232
- package/themes/doordash/src/components/PaymentOptionStripe/styles.tsx +73 -73
- package/themes/doordash/src/components/PaymentOptions/index.tsx +511 -511
- package/themes/doordash/src/components/PaymentOptions/styles.tsx +51 -51
- package/themes/doordash/src/components/PaypalPaymethod/index.tsx +38 -38
- package/themes/doordash/src/components/PhoneInputNumber/index.tsx +113 -113
- package/themes/doordash/src/components/PhoneInputNumber/styles.tsx +5 -5
- package/themes/doordash/src/components/PreviousOrders/index.tsx +135 -135
- package/themes/doordash/src/components/PreviousOrders/styles.tsx +36 -36
- package/themes/doordash/src/components/ProductForm/index.tsx +439 -439
- package/themes/doordash/src/components/ProductForm/styles.tsx +76 -76
- package/themes/doordash/src/components/ProductIngredient/index.tsx +44 -44
- package/themes/doordash/src/components/ProductIngredient/styles.tsx +7 -7
- package/themes/doordash/src/components/ProductItemAccordion/index.tsx +294 -294
- package/themes/doordash/src/components/ProductItemAccordion/styles.tsx +56 -56
- package/themes/doordash/src/components/ProductOption/index.tsx +55 -55
- package/themes/doordash/src/components/ProductOption/styles.tsx +13 -13
- package/themes/doordash/src/components/ProductOptionSubOption/index.tsx +137 -137
- package/themes/doordash/src/components/ProductOptionSubOption/styles.tsx +34 -34
- package/themes/doordash/src/components/ReviewOrder/index.tsx +202 -202
- package/themes/doordash/src/components/ReviewOrder/styles.tsx +36 -36
- package/themes/doordash/src/components/SearchBar/index.tsx +105 -105
- package/themes/doordash/src/components/SignupForm/index.tsx +580 -580
- package/themes/doordash/src/components/SignupForm/styles.tsx +32 -32
- package/themes/doordash/src/components/SingleProductCard/index.tsx +96 -96
- package/themes/doordash/src/components/SingleProductCard/styles.tsx +22 -22
- package/themes/doordash/src/components/SocialShare/index.tsx +160 -160
- package/themes/doordash/src/components/SocialShare/styles.ts +20 -20
- package/themes/doordash/src/components/StripeCardForm/index.tsx +97 -97
- package/themes/doordash/src/components/StripeCardForm/naked.tsx +128 -128
- package/themes/doordash/src/components/StripeCardForm/styles.tsx +32 -32
- package/themes/doordash/src/components/StripeCardsList/index.tsx +130 -130
- package/themes/doordash/src/components/StripeElementsForm/index.tsx +195 -195
- package/themes/doordash/src/components/StripeElementsForm/naked.tsx +90 -90
- package/themes/doordash/src/components/StripeElementsForm/styles.tsx +13 -13
- package/themes/doordash/src/components/StripeRedirectForm/index.tsx +157 -157
- package/themes/doordash/src/components/StripeRedirectForm/styles.tsx +23 -23
- package/themes/doordash/src/components/TaxInformation/index.tsx +51 -51
- package/themes/doordash/src/components/TaxInformation/styles.tsx +9 -9
- package/themes/doordash/src/components/UpsellingProducts/index.tsx +184 -184
- package/themes/doordash/src/components/UpsellingProducts/styles.tsx +39 -39
- package/themes/doordash/src/components/UserDetails/index.tsx +124 -124
- package/themes/doordash/src/components/UserDetails/styles.tsx +24 -24
- package/themes/doordash/src/components/UserFormDetails/index.tsx +268 -268
- package/themes/doordash/src/components/UserFormDetails/styles.tsx +37 -37
- package/themes/doordash/src/components/UserProfileForm/index.tsx +354 -354
- package/themes/doordash/src/components/UserProfileForm/styles.tsx +40 -40
- package/themes/doordash/src/components/VerifyPhone/index.tsx +185 -185
- package/themes/doordash/src/components/VerifyPhone/styles.tsx +43 -43
- package/themes/doordash/src/components/shared/OAlert.tsx +55 -55
- package/themes/doordash/src/components/shared/OBottomPopup.tsx +75 -75
- package/themes/doordash/src/components/shared/OButton.tsx +139 -139
- package/themes/doordash/src/components/shared/OButtonGroup.tsx +53 -53
- package/themes/doordash/src/components/shared/OChatBubble.tsx +53 -53
- package/themes/doordash/src/components/shared/OCheckbox.tsx +79 -79
- package/themes/doordash/src/components/shared/ODropDown.tsx +167 -167
- package/themes/doordash/src/components/shared/OIcon.tsx +54 -54
- package/themes/doordash/src/components/shared/OIconButton.tsx +135 -135
- package/themes/doordash/src/components/shared/OIconText.tsx +53 -53
- package/themes/doordash/src/components/shared/OInput.tsx +126 -126
- package/themes/doordash/src/components/shared/OKeyButton.tsx +34 -34
- package/themes/doordash/src/components/shared/OModal.tsx +173 -173
- package/themes/doordash/src/components/shared/OText.tsx +52 -52
- package/themes/doordash/src/components/shared/OTextarea.tsx +35 -35
- package/themes/doordash/src/components/shared/OToast.tsx +93 -93
- package/themes/doordash/src/components/shared/OToggle.tsx +157 -157
- package/themes/doordash/src/components/shared/index.tsx +37 -37
- package/themes/doordash/src/config/constants.tsx +14 -14
- package/themes/doordash/src/layouts/Container.tsx +26 -26
- package/themes/doordash/src/layouts/SafeAreaContainer.tsx +6 -6
- package/themes/doordash/src/providers/AlertProvider.tsx +49 -49
- package/themes/doordash/src/providers/StoreUtil.tsx +50 -50
- package/themes/doordash/src/types/index.tsx +435 -435
- package/themes/doordash/src/utils/index.tsx +192 -192
- package/themes/instacart/index.tsx +88 -88
- package/themes/instacart/src/components/ActiveOrders/index.tsx +135 -135
- package/themes/instacart/src/components/ActiveOrders/styles.tsx +51 -51
- package/themes/instacart/src/components/AddressDetails/index.tsx +69 -69
- package/themes/instacart/src/components/AddressDetails/styles.tsx +22 -22
- package/themes/instacart/src/components/AddressForm/index.tsx +664 -664
- package/themes/instacart/src/components/AddressForm/styles.tsx +33 -33
- package/themes/instacart/src/components/AddressList/index.tsx +326 -326
- package/themes/instacart/src/components/AddressList/styles.tsx +20 -20
- package/themes/instacart/src/components/BusinessBasicInformation/index.tsx +261 -261
- package/themes/instacart/src/components/BusinessBasicInformation/styles.tsx +43 -43
- package/themes/instacart/src/components/BusinessController/index.tsx +205 -205
- package/themes/instacart/src/components/BusinessController/styles.tsx +53 -53
- package/themes/instacart/src/components/BusinessInformation/index.tsx +101 -101
- package/themes/instacart/src/components/BusinessInformation/styles.tsx +35 -35
- package/themes/instacart/src/components/BusinessItemAccordion/index.tsx +112 -112
- package/themes/instacart/src/components/BusinessItemAccordion/styles.tsx +59 -59
- package/themes/instacart/src/components/BusinessProductsCategories/index.tsx +71 -71
- package/themes/instacart/src/components/BusinessProductsCategories/styles.tsx +7 -7
- package/themes/instacart/src/components/BusinessProductsList/index.tsx +181 -181
- package/themes/instacart/src/components/BusinessProductsList/styles.tsx +19 -19
- package/themes/instacart/src/components/BusinessProductsListing/index.tsx +372 -372
- package/themes/instacart/src/components/BusinessProductsListing/styles.tsx +35 -35
- package/themes/instacart/src/components/BusinessReviews/index.tsx +121 -121
- package/themes/instacart/src/components/BusinessReviews/styles.tsx +33 -33
- package/themes/instacart/src/components/BusinessTypeFilter/index.tsx +135 -135
- package/themes/instacart/src/components/BusinessTypeFilter/styles.tsx +30 -30
- package/themes/instacart/src/components/BusinessesListing/index.tsx +254 -254
- package/themes/instacart/src/components/BusinessesListing/styles.tsx +62 -62
- package/themes/instacart/src/components/Cart/index.tsx +357 -357
- package/themes/instacart/src/components/Cart/styles.tsx +39 -39
- package/themes/instacart/src/components/CartContent/index.tsx +51 -51
- package/themes/instacart/src/components/CartContent/styles.tsx +19 -19
- package/themes/instacart/src/components/CartSingle/index.tsx +194 -194
- package/themes/instacart/src/components/CartSingle/styles.tsx +55 -55
- package/themes/instacart/src/components/Checkout/index.tsx +632 -632
- package/themes/instacart/src/components/Checkout/styles.tsx +105 -105
- package/themes/instacart/src/components/CouponControl/index.tsx +121 -121
- package/themes/instacart/src/components/CouponControl/styles.tsx +23 -23
- package/themes/instacart/src/components/DriverTips/index.tsx +153 -153
- package/themes/instacart/src/components/DriverTips/styles.tsx +58 -58
- package/themes/instacart/src/components/FacebookLogin/index.tsx +117 -117
- package/themes/instacart/src/components/FacebookLogin/styles.tsx +16 -16
- package/themes/instacart/src/components/FloatingButton/index.tsx +81 -81
- package/themes/instacart/src/components/FloatingButton/styles.tsx +30 -30
- package/themes/instacart/src/components/ForgotPasswordForm/index.tsx +155 -155
- package/themes/instacart/src/components/ForgotPasswordForm/styles.tsx +11 -11
- package/themes/instacart/src/components/GoogleMap/index.tsx +236 -236
- package/themes/instacart/src/components/Home/index.tsx +337 -337
- package/themes/instacart/src/components/Home/styles.tsx +24 -24
- package/themes/instacart/src/components/LanguageSelector/index.tsx +109 -109
- package/themes/instacart/src/components/LanguageSelector/styles.tsx +7 -7
- package/themes/instacart/src/components/LoginForm/index.tsx +445 -445
- package/themes/instacart/src/components/LoginForm/styles.tsx +69 -69
- package/themes/instacart/src/components/LogoutButton/index.tsx +61 -61
- package/themes/instacart/src/components/Messages/index.tsx +430 -430
- package/themes/instacart/src/components/Messages/styles.tsx +23 -23
- package/themes/instacart/src/components/MomentOption/index.tsx +320 -320
- package/themes/instacart/src/components/MomentOption/styles.tsx +71 -71
- package/themes/instacart/src/components/NavBar/index.tsx +131 -131
- package/themes/instacart/src/components/NotFoundSource/index.tsx +55 -55
- package/themes/instacart/src/components/NotFoundSource/styles.tsx +16 -16
- package/themes/instacart/src/components/OrderDetails/index.tsx +531 -531
- package/themes/instacart/src/components/OrderDetails/styles.tsx +146 -146
- package/themes/instacart/src/components/OrderSummary/index.tsx +297 -297
- package/themes/instacart/src/components/OrderSummary/styles.tsx +41 -41
- package/themes/instacart/src/components/OrderTypeSelector/index.tsx +130 -130
- package/themes/instacart/src/components/OrderTypeSelector/styles.tsx +6 -6
- package/themes/instacart/src/components/OrdersOption/index.tsx +222 -222
- package/themes/instacart/src/components/OrdersOption/styles.tsx +3 -3
- package/themes/instacart/src/components/PaymentOptionCash/index.tsx +102 -102
- package/themes/instacart/src/components/PaymentOptionCash/styles.tsx +15 -15
- package/themes/instacart/src/components/PaymentOptionStripe/index.tsx +232 -232
- package/themes/instacart/src/components/PaymentOptionStripe/styles.tsx +62 -62
- package/themes/instacart/src/components/PaymentOptions/index.tsx +496 -496
- package/themes/instacart/src/components/PaymentOptions/styles.tsx +43 -43
- package/themes/instacart/src/components/PaypalPaymethod/index.tsx +38 -38
- package/themes/instacart/src/components/PhoneInputNumber/index.tsx +112 -112
- package/themes/instacart/src/components/PhoneInputNumber/styles.tsx +5 -5
- package/themes/instacart/src/components/PreviousOrders/index.tsx +134 -134
- package/themes/instacart/src/components/PreviousOrders/styles.tsx +38 -38
- package/themes/instacart/src/components/ProductForm/index.tsx +444 -444
- package/themes/instacart/src/components/ProductForm/styles.tsx +73 -73
- package/themes/instacart/src/components/ProductIngredient/index.tsx +44 -44
- package/themes/instacart/src/components/ProductIngredient/styles.tsx +7 -7
- package/themes/instacart/src/components/ProductItemAccordion/index.tsx +285 -285
- package/themes/instacart/src/components/ProductItemAccordion/styles.tsx +52 -52
- package/themes/instacart/src/components/ProductOption/index.tsx +49 -49
- package/themes/instacart/src/components/ProductOption/styles.tsx +12 -12
- package/themes/instacart/src/components/ProductOptionSubOption/index.tsx +146 -146
- package/themes/instacart/src/components/ProductOptionSubOption/styles.tsx +33 -33
- package/themes/instacart/src/components/ReviewDriver/index.tsx +221 -221
- package/themes/instacart/src/components/ReviewDriver/styles.tsx +45 -45
- package/themes/instacart/src/components/ReviewOrder/index.tsx +325 -325
- package/themes/instacart/src/components/ReviewOrder/styles.tsx +45 -45
- package/themes/instacart/src/components/ReviewProduct/index.tsx +275 -275
- package/themes/instacart/src/components/ReviewProduct/styles.tsx +52 -52
- package/themes/instacart/src/components/SearchBar/index.tsx +104 -104
- package/themes/instacart/src/components/SearchList/index.tsx +357 -357
- package/themes/instacart/src/components/SearchList/styles.tsx +61 -61
- package/themes/instacart/src/components/SignupForm/index.tsx +587 -587
- package/themes/instacart/src/components/SignupForm/styles.tsx +39 -39
- package/themes/instacart/src/components/SingleProductCard/index.tsx +104 -104
- package/themes/instacart/src/components/SingleProductCard/styles.tsx +19 -19
- package/themes/instacart/src/components/SocialShare/index.tsx +160 -160
- package/themes/instacart/src/components/SocialShare/styles.ts +20 -20
- package/themes/instacart/src/components/StripeCardForm/index.tsx +97 -97
- package/themes/instacart/src/components/StripeCardForm/naked.tsx +128 -128
- package/themes/instacart/src/components/StripeCardForm/styles.tsx +27 -27
- package/themes/instacart/src/components/StripeCardsList/index.tsx +144 -144
- package/themes/instacart/src/components/StripeElementsForm/index.tsx +192 -192
- package/themes/instacart/src/components/StripeElementsForm/naked.tsx +90 -90
- package/themes/instacart/src/components/StripeElementsForm/styles.tsx +9 -9
- package/themes/instacart/src/components/StripeRedirectForm/index.tsx +159 -159
- package/themes/instacart/src/components/StripeRedirectForm/styles.tsx +23 -23
- package/themes/instacart/src/components/TagSelector/index.tsx +94 -94
- package/themes/instacart/src/components/TaxInformation/index.tsx +51 -51
- package/themes/instacart/src/components/TaxInformation/styles.tsx +9 -9
- package/themes/instacart/src/components/UpsellingProducts/index.tsx +230 -230
- package/themes/instacart/src/components/UpsellingProducts/styles.tsx +31 -31
- package/themes/instacart/src/components/UserDetails/index.tsx +135 -135
- package/themes/instacart/src/components/UserDetails/styles.tsx +21 -21
- package/themes/instacart/src/components/UserFormDetails/index.tsx +307 -307
- package/themes/instacart/src/components/UserFormDetails/styles.tsx +38 -38
- package/themes/instacart/src/components/UserProfileForm/index.tsx +106 -106
- package/themes/instacart/src/components/UserProfileForm/styles.tsx +37 -37
- package/themes/instacart/src/components/VerifyPhone/index.tsx +187 -187
- package/themes/instacart/src/components/VerifyPhone/styles.tsx +43 -43
- package/themes/instacart/src/components/shared/OAlert.tsx +53 -53
- package/themes/instacart/src/components/shared/OBottomPopup.tsx +118 -118
- package/themes/instacart/src/components/shared/OBottomStickBar.tsx +62 -62
- package/themes/instacart/src/components/shared/OButton.tsx +133 -133
- package/themes/instacart/src/components/shared/ODropDown.tsx +170 -170
- package/themes/instacart/src/components/shared/OIcon.tsx +53 -53
- package/themes/instacart/src/components/shared/OIconButton.tsx +134 -134
- package/themes/instacart/src/components/shared/OInput.tsx +122 -122
- package/themes/instacart/src/components/shared/OModal.tsx +156 -156
- package/themes/instacart/src/components/shared/OText.tsx +58 -58
- package/themes/instacart/src/components/shared/OToast.tsx +92 -92
- package/themes/instacart/src/components/shared/index.tsx +23 -23
- package/themes/instacart/src/config/constants.tsx +28 -28
- package/themes/instacart/src/layouts/Container.tsx +29 -29
- package/themes/instacart/src/layouts/SafeAreaContainer.tsx +6 -6
- package/themes/instacart/src/providers/AlertProvider.tsx +43 -43
- package/themes/instacart/src/providers/CartBottomSheetProvider.tsx +37 -37
- package/themes/instacart/src/providers/StoreUtil.tsx +50 -50
- package/themes/instacart/src/types/index.tsx +458 -458
- package/themes/instacart/src/utils/index.tsx +192 -192
- package/themes/kiosk/index.tsx +130 -130
- package/themes/kiosk/src/components/BusinessController/index.tsx +88 -88
- package/themes/kiosk/src/components/BusinessController/styles.tsx +23 -23
- package/themes/kiosk/src/components/BusinessItemAccordion/index.tsx +137 -137
- package/themes/kiosk/src/components/BusinessItemAccordion/styles.tsx +60 -60
- package/themes/kiosk/src/components/BusinessMenu/index.tsx +174 -174
- package/themes/kiosk/src/components/BusinessProductsListing/index.tsx +254 -254
- package/themes/kiosk/src/components/BusinessProductsListing/styles.tsx +35 -35
- package/themes/kiosk/src/components/BusinessesListing/index.tsx +119 -119
- package/themes/kiosk/src/components/BusinessesListing/styles.tsx +24 -24
- package/themes/kiosk/src/components/Cart/index.tsx +489 -489
- package/themes/kiosk/src/components/Cart/styles.tsx +76 -76
- package/themes/kiosk/src/components/CartBottomSheet/index.tsx +281 -281
- package/themes/kiosk/src/components/CartBottomSheet/styles.tsx +53 -53
- package/themes/kiosk/src/components/CartContent/index.tsx +75 -75
- package/themes/kiosk/src/components/CartContent/styles.tsx +15 -15
- package/themes/kiosk/src/components/CartItem/index.tsx +222 -222
- package/themes/kiosk/src/components/CartItem/styles.tsx +33 -33
- package/themes/kiosk/src/components/CategoriesMenu/index.tsx +281 -281
- package/themes/kiosk/src/components/Checkout/index.tsx +171 -171
- package/themes/kiosk/src/components/Checkout/styles.tsx +94 -94
- package/themes/kiosk/src/components/CouponControl/index.tsx +138 -138
- package/themes/kiosk/src/components/CouponControl/styles.tsx +22 -22
- package/themes/kiosk/src/components/CustomerName/index.tsx +175 -175
- package/themes/kiosk/src/components/CustomerName/styles.tsx +10 -10
- package/themes/kiosk/src/components/DrawerView/index.tsx +58 -58
- package/themes/kiosk/src/components/DrawerView/styles.tsx +30 -30
- package/themes/kiosk/src/components/Intro/index.tsx +165 -165
- package/themes/kiosk/src/components/LanguageSelector/index.tsx +131 -131
- package/themes/kiosk/src/components/LanguageSelector/lang_country.json +140 -140
- package/themes/kiosk/src/components/LanguageSelector/styles.tsx +12 -12
- package/themes/kiosk/src/components/LoginForm/Otp/index.tsx +92 -92
- package/themes/kiosk/src/components/LoginForm/Otp/styles.tsx +7 -7
- package/themes/kiosk/src/components/LoginForm/index.tsx +795 -795
- package/themes/kiosk/src/components/LoginForm/styles.tsx +27 -27
- package/themes/kiosk/src/components/LogoutButton/index.tsx +74 -74
- package/themes/kiosk/src/components/LogoutPopup/index.tsx +185 -185
- package/themes/kiosk/src/components/LogoutPopup/styles.tsx +26 -26
- package/themes/kiosk/src/components/NavBar/index.tsx +147 -147
- package/themes/kiosk/src/components/NetworkError/index.tsx +60 -60
- package/themes/kiosk/src/components/NetworkError/styles.tsx +10 -10
- package/themes/kiosk/src/components/NotFoundSource/index.tsx +51 -51
- package/themes/kiosk/src/components/NotFoundSource/styles.tsx +16 -16
- package/themes/kiosk/src/components/OptionCard/index.tsx +107 -107
- package/themes/kiosk/src/components/OptionCard/styles.tsx +22 -22
- package/themes/kiosk/src/components/OrderDetails/index.tsx +693 -693
- package/themes/kiosk/src/components/OrderDetails/styles.tsx +58 -58
- package/themes/kiosk/src/components/OrderSummary/index.tsx +195 -195
- package/themes/kiosk/src/components/OrderSummary/styles.tsx +33 -33
- package/themes/kiosk/src/components/OrderTypeCardSelector/index.tsx +153 -153
- package/themes/kiosk/src/components/OrderTypeCardSelector/styles.tsx +6 -6
- package/themes/kiosk/src/components/OrderTypeSelector/index.tsx +98 -98
- package/themes/kiosk/src/components/OrderTypeSelector/styles.tsx +6 -6
- package/themes/kiosk/src/components/PaymentOptionCash/index.tsx +100 -100
- package/themes/kiosk/src/components/PaymentOptionCash/styles.tsx +18 -18
- package/themes/kiosk/src/components/PaymentOptionStripe/index.tsx +70 -70
- package/themes/kiosk/src/components/PaymentOptionStripe/styles.tsx +7 -7
- package/themes/kiosk/src/components/PaymentOptions/index.tsx +217 -217
- package/themes/kiosk/src/components/PaymentOptions/styles.tsx +55 -55
- package/themes/kiosk/src/components/PhoneInputNumber/index.tsx +113 -113
- package/themes/kiosk/src/components/PhoneInputNumber/styles.tsx +3 -3
- package/themes/kiosk/src/components/ProductForm/index.tsx +588 -588
- package/themes/kiosk/src/components/ProductForm/styles.tsx +83 -83
- package/themes/kiosk/src/components/ProductIngredient/index.tsx +44 -44
- package/themes/kiosk/src/components/ProductIngredient/styles.tsx +7 -7
- package/themes/kiosk/src/components/ProductItemAccordion/index.tsx +244 -244
- package/themes/kiosk/src/components/ProductItemAccordion/styles.tsx +71 -71
- package/themes/kiosk/src/components/ProductOption/index.tsx +55 -55
- package/themes/kiosk/src/components/ProductOption/styles.tsx +16 -16
- package/themes/kiosk/src/components/ProductOptionSubOption/index.tsx +176 -176
- package/themes/kiosk/src/components/ProductOptionSubOption/styles.tsx +42 -42
- package/themes/kiosk/src/components/PromoCard/index.tsx +117 -117
- package/themes/kiosk/src/components/QuantityControl/index.tsx +92 -92
- package/themes/kiosk/src/components/QuantityControl/styles.tsx +9 -9
- package/themes/kiosk/src/components/UpsellingProducts/index.tsx +364 -364
- package/themes/kiosk/src/components/UpsellingProducts/styles.tsx +26 -26
- package/themes/kiosk/src/components/shared/OAlert.tsx +55 -55
- package/themes/kiosk/src/components/shared/OBottomPopup.tsx +77 -77
- package/themes/kiosk/src/components/shared/OButton.tsx +145 -145
- package/themes/kiosk/src/components/shared/OCard.tsx +144 -144
- package/themes/kiosk/src/components/shared/OChatBubble.tsx +52 -52
- package/themes/kiosk/src/components/shared/OCheckbox.tsx +77 -77
- package/themes/kiosk/src/components/shared/ODropDown.tsx +161 -161
- package/themes/kiosk/src/components/shared/OIcon.tsx +51 -51
- package/themes/kiosk/src/components/shared/OIconButton.tsx +134 -134
- package/themes/kiosk/src/components/shared/OIconText.tsx +53 -53
- package/themes/kiosk/src/components/shared/OImage.tsx +31 -31
- package/themes/kiosk/src/components/shared/OInput.tsx +121 -121
- package/themes/kiosk/src/components/shared/OKeyButton.tsx +34 -34
- package/themes/kiosk/src/components/shared/OModal.tsx +162 -162
- package/themes/kiosk/src/components/shared/OOptionToggle.tsx +130 -130
- package/themes/kiosk/src/components/shared/OSegment.tsx +66 -66
- package/themes/kiosk/src/components/shared/OText.tsx +51 -51
- package/themes/kiosk/src/components/shared/OTextarea.tsx +36 -36
- package/themes/kiosk/src/components/shared/OToast.tsx +94 -94
- package/themes/kiosk/src/components/shared/OToggle.tsx +157 -157
- package/themes/kiosk/src/components/shared/index.tsx +37 -37
- package/themes/kiosk/src/layouts/Container.tsx +45 -45
- package/themes/kiosk/src/layouts/GridContainer.tsx +25 -25
- package/themes/kiosk/src/layouts/SafeAreaContainer.tsx +6 -6
- package/themes/kiosk/src/providers/CartBottomSheetProvider.tsx +35 -35
- package/themes/kiosk/src/types/index.d.ts +497 -497
- package/themes/kiosk/src/utils/index.tsx +15 -15
- package/themes/original/index.tsx +356 -356
- package/themes/original/src/components/ActiveOrders/index.tsx +52 -52
- package/themes/original/src/components/ActiveOrders/styles.tsx +5 -5
- package/themes/original/src/components/AddressDetails/index.tsx +105 -105
- package/themes/original/src/components/AddressDetails/styles.tsx +21 -21
- package/themes/original/src/components/AddressForm/index.tsx +958 -959
- package/themes/original/src/components/AddressForm/styles.tsx +28 -28
- package/themes/original/src/components/AddressList/index.tsx +361 -361
- package/themes/original/src/components/AddressList/styles.tsx +21 -21
- package/themes/original/src/components/AnalyticsSegment/index.tsx +310 -310
- package/themes/original/src/components/AppleLogin/index.tsx +188 -188
- package/themes/original/src/components/AppleLogin/styles.tsx +23 -23
- package/themes/original/src/components/BottomWrapper/index.tsx +29 -29
- package/themes/original/src/components/BusinessBasicInformation/index.tsx +536 -536
- package/themes/original/src/components/BusinessBasicInformation/styles.tsx +72 -72
- package/themes/original/src/components/BusinessCart/index.tsx +182 -182
- package/themes/original/src/components/BusinessCart/styles.tsx +46 -46
- package/themes/original/src/components/BusinessController/index.tsx +397 -397
- package/themes/original/src/components/BusinessController/styles.tsx +95 -95
- package/themes/original/src/components/BusinessFeaturedController/index.tsx +175 -175
- package/themes/original/src/components/BusinessFeaturedController/styles.tsx +81 -81
- package/themes/original/src/components/BusinessInformation/index.tsx +241 -241
- package/themes/original/src/components/BusinessInformation/styles.tsx +39 -39
- package/themes/original/src/components/BusinessItemAccordion/index.tsx +180 -180
- package/themes/original/src/components/BusinessItemAccordion/styles.tsx +64 -64
- package/themes/original/src/components/BusinessListingSearch/BusinessControllerSkeletons/index.tsx +57 -57
- package/themes/original/src/components/BusinessListingSearch/BusinessSearchFooter.tsx +328 -328
- package/themes/original/src/components/BusinessListingSearch/BusinessSearchHeader.tsx +98 -98
- package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/index.tsx +59 -59
- package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/styles.tsx +13 -13
- package/themes/original/src/components/BusinessListingSearch/index.tsx +280 -280
- package/themes/original/src/components/BusinessListingSearch/styles.tsx +76 -76
- package/themes/original/src/components/BusinessMenuList/index.tsx +135 -135
- package/themes/original/src/components/BusinessPreorder/index.tsx +601 -601
- package/themes/original/src/components/BusinessPreorder/styles.tsx +58 -58
- package/themes/original/src/components/BusinessProductsCategories/index.tsx +151 -151
- package/themes/original/src/components/BusinessProductsCategories/styles.tsx +7 -7
- package/themes/original/src/components/BusinessProductsList/CategoryDescription/index.tsx +44 -44
- package/themes/original/src/components/BusinessProductsList/SubcategoriesComponent/index.tsx +90 -90
- package/themes/original/src/components/BusinessProductsList/SubcategoriesComponent/styles.tsx +12 -12
- package/themes/original/src/components/BusinessProductsList/index.tsx +367 -367
- package/themes/original/src/components/BusinessProductsList/styles.tsx +52 -52
- package/themes/original/src/components/BusinessProductsListing/UpsellingRedirect.tsx +35 -35
- package/themes/original/src/components/BusinessProductsListing/index.tsx +754 -754
- package/themes/original/src/components/BusinessProductsListing/styles.tsx +68 -68
- package/themes/original/src/components/BusinessReviews/index.tsx +241 -241
- package/themes/original/src/components/BusinessReviews/styles.tsx +59 -59
- package/themes/original/src/components/BusinessTypeFilter/index.tsx +281 -281
- package/themes/original/src/components/BusinessTypeFilter/styles.tsx +43 -43
- package/themes/original/src/components/BusinessesListing/Layout/Appointment/index.tsx +562 -562
- package/themes/original/src/components/BusinessesListing/Layout/Appointment/styles.tsx +108 -108
- package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListFooter.tsx +69 -69
- package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListHeader.tsx +406 -406
- package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListing.tsx +76 -76
- package/themes/original/src/components/BusinessesListing/Layout/Original/index.tsx +329 -329
- package/themes/original/src/components/BusinessesListing/Layout/Original/styles.tsx +130 -130
- package/themes/original/src/components/BusinessesListing/index.tsx +106 -106
- package/themes/original/src/components/Cart/index.tsx +661 -661
- package/themes/original/src/components/Cart/styles.tsx +39 -39
- package/themes/original/src/components/CartContent/index.tsx +203 -203
- package/themes/original/src/components/CartContent/styles.tsx +29 -29
- package/themes/original/src/components/CartStoresListing/index.tsx +98 -98
- package/themes/original/src/components/CartStoresListing/styles.tsx +30 -30
- package/themes/original/src/components/Checkout/index.tsx +1381 -1381
- package/themes/original/src/components/Checkout/styles.tsx +132 -132
- package/themes/original/src/components/CitiesControl/index.tsx +86 -86
- package/themes/original/src/components/CitiesControl/styles.tsx +17 -17
- package/themes/original/src/components/CouponControl/index.tsx +125 -125
- package/themes/original/src/components/CouponControl/styles.tsx +22 -22
- package/themes/original/src/components/DatePicker/index.tsx +33 -33
- package/themes/original/src/components/DatePicker/styles.tsx +20 -20
- package/themes/original/src/components/DriverTips/index.tsx +162 -162
- package/themes/original/src/components/DriverTips/styles.tsx +67 -67
- package/themes/original/src/components/FacebookLogin/index.tsx +122 -122
- package/themes/original/src/components/FacebookLogin/styles.tsx +23 -23
- package/themes/original/src/components/Favorite/index.tsx +98 -98
- package/themes/original/src/components/Favorite/styles.tsx +20 -20
- package/themes/original/src/components/FavoriteList/index.tsx +287 -287
- package/themes/original/src/components/FavoriteList/styles.tsx +5 -5
- package/themes/original/src/components/FloatingButton/index.tsx +100 -100
- package/themes/original/src/components/FloatingButton/styles.tsx +26 -26
- package/themes/original/src/components/ForgotPasswordForm/index.tsx +230 -230
- package/themes/original/src/components/ForgotPasswordForm/styles.tsx +11 -11
- package/themes/original/src/components/GPSButton/index.tsx +95 -95
- package/themes/original/src/components/GPSButton/styles.ts +6 -6
- package/themes/original/src/components/GiftCard/GiftCardOrdersList/index.tsx +63 -63
- package/themes/original/src/components/GiftCard/GiftCardOrdersList/styles.tsx +7 -7
- package/themes/original/src/components/GiftCard/GiftCardUI/index.tsx +99 -99
- package/themes/original/src/components/GiftCard/GiftCardUI/styles.tsx +5 -5
- package/themes/original/src/components/GiftCard/PurchaseGiftCard/index.tsx +129 -129
- package/themes/original/src/components/GiftCard/PurchaseGiftCard/styles.tsx +8 -8
- package/themes/original/src/components/GiftCard/RedeemGiftCard/index.tsx +246 -246
- package/themes/original/src/components/GiftCard/RedeemGiftCard/styles.tsx +8 -8
- package/themes/original/src/components/GiftCard/SendGiftCard/index.tsx +163 -163
- package/themes/original/src/components/GiftCard/SendGiftCard/styles.tsx +9 -9
- package/themes/original/src/components/GiftCard/SingleGiftCard/index.tsx +101 -101
- package/themes/original/src/components/GiftCard/SingleGiftCard/styles.tsx +4 -4
- package/themes/original/src/components/GiftCard/VerticalGiftCardOrdersLayout/index.tsx +82 -82
- package/themes/original/src/components/GiftCard/VerticalGiftCardOrdersLayout/styles.tsx +9 -9
- package/themes/original/src/components/GoogleLogin/index.tsx +119 -119
- package/themes/original/src/components/GoogleLogin/styles.tsx +23 -23
- package/themes/original/src/components/GoogleMap/index.tsx +316 -316
- package/themes/original/src/components/Help/functions.tsx +76 -76
- package/themes/original/src/components/Help/index.tsx +119 -119
- package/themes/original/src/components/Help/styles.tsx +14 -14
- package/themes/original/src/components/HelpOptions/index.tsx +53 -53
- package/themes/original/src/components/HighestRatedBusinesses/index.tsx +165 -165
- package/themes/original/src/components/HighestRatedBusinesses/styles.tsx +7 -7
- package/themes/original/src/components/Home/index.tsx +130 -130
- package/themes/original/src/components/Home/styles.tsx +18 -18
- package/themes/original/src/components/LanguageSelector/index.tsx +97 -97
- package/themes/original/src/components/LanguageSelector/styles.tsx +10 -10
- package/themes/original/src/components/LastOrder/index.tsx +138 -138
- package/themes/original/src/components/LastOrder/styles.tsx +16 -16
- package/themes/original/src/components/LastOrders/index.tsx +124 -124
- package/themes/original/src/components/LastOrders/styles.tsx +17 -17
- package/themes/original/src/components/LoginForm/Otp/index.tsx +158 -158
- package/themes/original/src/components/LoginForm/Otp/styles.tsx +6 -6
- package/themes/original/src/components/LoginForm/index.tsx +893 -893
- package/themes/original/src/components/LoginForm/styles.tsx +85 -85
- package/themes/original/src/components/LogoutButton/index.tsx +42 -42
- package/themes/original/src/components/LottieAnimation/index.tsx +103 -103
- package/themes/original/src/components/MessageListing/index.tsx +295 -295
- package/themes/original/src/components/MessageListing/styles.tsx +16 -16
- package/themes/original/src/components/Messages/index.tsx +593 -593
- package/themes/original/src/components/Messages/styles.tsx +40 -40
- package/themes/original/src/components/MomentOption/TimeListItem.tsx +56 -56
- package/themes/original/src/components/MomentOption/index.tsx +575 -575
- package/themes/original/src/components/MomentOption/styles.tsx +57 -57
- package/themes/original/src/components/MomentSelector/index.tsx +200 -200
- package/themes/original/src/components/MomentSelector/styles.tsx +6 -6
- package/themes/original/src/components/MultiCart/index.tsx +50 -50
- package/themes/original/src/components/MultiCartsPaymethodsAndWallets/index.tsx +358 -358
- package/themes/original/src/components/MultiCartsPaymethodsAndWallets/styles.tsx +46 -46
- package/themes/original/src/components/MultiCheckout/index.tsx +763 -763
- package/themes/original/src/components/MultiCheckout/styles.tsx +78 -78
- package/themes/original/src/components/MultiOrdersDetails/SingleOrderCard.tsx +185 -185
- package/themes/original/src/components/MultiOrdersDetails/index.tsx +315 -315
- package/themes/original/src/components/MultiOrdersDetails/styles.tsx +50 -50
- package/themes/original/src/components/MyOrders/index.tsx +216 -216
- package/themes/original/src/components/MyOrders/styles.tsx +13 -13
- package/themes/original/src/components/NavBar/index.tsx +139 -139
- package/themes/original/src/components/NetworkError/index.tsx +57 -57
- package/themes/original/src/components/NetworkError/styles.tsx +11 -11
- package/themes/original/src/components/NotFoundSource/index.tsx +53 -53
- package/themes/original/src/components/NotFoundSource/styles.tsx +25 -25
- package/themes/original/src/components/Notifications/index.tsx +140 -140
- package/themes/original/src/components/Notifications/styles.tsx +19 -19
- package/themes/original/src/components/OrderDetails/OrderEta.tsx +77 -77
- package/themes/original/src/components/OrderDetails/OrderHistory.tsx +188 -188
- package/themes/original/src/components/OrderDetails/index.tsx +1162 -1162
- package/themes/original/src/components/OrderDetails/styles.tsx +161 -161
- package/themes/original/src/components/OrderItAgain/index.tsx +77 -77
- package/themes/original/src/components/OrderItAgain/styles.tsx +10 -10
- package/themes/original/src/components/OrderProgress/index.tsx +237 -237
- package/themes/original/src/components/OrderProgress/styles.tsx +36 -36
- package/themes/original/src/components/OrderSummary/index.tsx +427 -427
- package/themes/original/src/components/OrderSummary/styles.tsx +48 -48
- package/themes/original/src/components/OrderTypeSelector/index.tsx +145 -145
- package/themes/original/src/components/OrderTypeSelector/styles.tsx +45 -45
- package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/index.tsx +149 -149
- package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/styles.tsx +6 -6
- package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/index.tsx +56 -56
- package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/styles.tsx +6 -6
- package/themes/original/src/components/OrdersOption/index.tsx +372 -372
- package/themes/original/src/components/OrdersOption/styles.tsx +14 -14
- package/themes/original/src/components/PageBanner/index.tsx +182 -182
- package/themes/original/src/components/PageBanner/styles.tsx +8 -8
- package/themes/original/src/components/PaymentOptionCard/index.tsx +182 -182
- package/themes/original/src/components/PaymentOptionCash/index.tsx +102 -102
- package/themes/original/src/components/PaymentOptionCash/styles.tsx +18 -18
- package/themes/original/src/components/PaymentOptionStripe/index.tsx +229 -229
- package/themes/original/src/components/PaymentOptionStripe/styles.tsx +72 -72
- package/themes/original/src/components/PaymentOptionWallet/index.tsx +174 -174
- package/themes/original/src/components/PaymentOptionWallet/styles.tsx +39 -39
- package/themes/original/src/components/PaymentOptions/index.tsx +587 -587
- package/themes/original/src/components/PaymentOptions/styles.tsx +55 -55
- package/themes/original/src/components/PhoneInputNumber/index.tsx +241 -241
- package/themes/original/src/components/PhoneInputNumber/styles.tsx +3 -3
- package/themes/original/src/components/PlaceSpot/index.tsx +314 -314
- package/themes/original/src/components/PlaceSpot/styles.tsx +9 -9
- package/themes/original/src/components/PreviousOrders/index.tsx +58 -58
- package/themes/original/src/components/PreviousOrders/styles.tsx +34 -34
- package/themes/original/src/components/ProductForm/ActionButton.tsx +117 -117
- package/themes/original/src/components/ProductForm/ExtraOptions.tsx +56 -56
- package/themes/original/src/components/ProductForm/index.tsx +1034 -1034
- package/themes/original/src/components/ProductForm/styles.tsx +101 -101
- package/themes/original/src/components/ProductIngredient/index.tsx +44 -44
- package/themes/original/src/components/ProductIngredient/styles.tsx +7 -7
- package/themes/original/src/components/ProductItemAccordion/index.tsx +353 -353
- package/themes/original/src/components/ProductItemAccordion/styles.tsx +56 -56
- package/themes/original/src/components/ProductOption/index.tsx +50 -50
- package/themes/original/src/components/ProductOption/styles.tsx +11 -11
- package/themes/original/src/components/ProductOptionSubOption/index.tsx +223 -223
- package/themes/original/src/components/ProductOptionSubOption/styles.tsx +39 -39
- package/themes/original/src/components/ProfessionalFilter/SingleProfessionalCard/index.tsx +108 -108
- package/themes/original/src/components/ProfessionalFilter/index.tsx +99 -99
- package/themes/original/src/components/ProfessionalProfile/index.tsx +337 -337
- package/themes/original/src/components/ProfessionalProfile/styles.tsx +46 -46
- package/themes/original/src/components/Promotions/index.tsx +261 -261
- package/themes/original/src/components/Promotions/styles.tsx +65 -65
- package/themes/original/src/components/ReviewDriver/index.tsx +315 -315
- package/themes/original/src/components/ReviewDriver/styles.tsx +38 -38
- package/themes/original/src/components/ReviewOrder/index.tsx +356 -356
- package/themes/original/src/components/ReviewOrder/styles.tsx +51 -51
- package/themes/original/src/components/ReviewProducts/index.tsx +128 -128
- package/themes/original/src/components/ReviewProducts/styles.tsx +16 -16
- package/themes/original/src/components/ReviewTrigger/index.tsx +136 -136
- package/themes/original/src/components/ReviewTrigger/styles.tsx +41 -41
- package/themes/original/src/components/ScheduleAccordion/index.tsx +68 -68
- package/themes/original/src/components/ScheduleAccordion/styles.tsx +14 -14
- package/themes/original/src/components/SearchBar/index.tsx +124 -124
- package/themes/original/src/components/ServiceForm/index.tsx +684 -684
- package/themes/original/src/components/ServiceForm/styles.tsx +50 -50
- package/themes/original/src/components/Sessions/index.tsx +163 -163
- package/themes/original/src/components/Sessions/styles.tsx +20 -20
- package/themes/original/src/components/SignupForm/index.tsx +1024 -1024
- package/themes/original/src/components/SignupForm/styles.tsx +27 -27
- package/themes/original/src/components/SingleOrderCard/index.tsx +411 -411
- package/themes/original/src/components/SingleOrderCard/styles.tsx +56 -56
- package/themes/original/src/components/SingleProductCard/index.tsx +353 -353
- package/themes/original/src/components/SingleProductCard/styles.tsx +72 -72
- package/themes/original/src/components/SingleProductReview/index.tsx +199 -199
- package/themes/original/src/components/SingleProductReview/styles.tsx +39 -39
- package/themes/original/src/components/StripeCardForm/index.tsx +94 -94
- package/themes/original/src/components/StripeCardForm/naked.tsx +128 -128
- package/themes/original/src/components/StripeCardForm/styles.tsx +32 -32
- package/themes/original/src/components/StripeCardsList/index.tsx +181 -181
- package/themes/original/src/components/StripeElementsForm/index.tsx +312 -312
- package/themes/original/src/components/StripeElementsForm/naked.tsx +148 -148
- package/themes/original/src/components/StripeElementsForm/styles.tsx +13 -13
- package/themes/original/src/components/StripeRedirectForm/index.tsx +156 -156
- package/themes/original/src/components/StripeRedirectForm/styles.tsx +23 -23
- package/themes/original/src/components/TaxInformation/index.tsx +94 -94
- package/themes/original/src/components/TaxInformation/styles.tsx +9 -9
- package/themes/original/src/components/UpsellingProducts/UpsellingContent.tsx +173 -173
- package/themes/original/src/components/UpsellingProducts/UpsellingLayout.tsx +91 -91
- package/themes/original/src/components/UpsellingProducts/index.tsx +82 -82
- package/themes/original/src/components/UpsellingProducts/styles.tsx +80 -80
- package/themes/original/src/components/UserDetails/index.tsx +245 -245
- package/themes/original/src/components/UserDetails/styles.tsx +25 -25
- package/themes/original/src/components/UserFormDetails/index.tsx +600 -600
- package/themes/original/src/components/UserFormDetails/styles.tsx +41 -41
- package/themes/original/src/components/UserProfile/index.tsx +300 -300
- package/themes/original/src/components/UserProfile/styles.ts +58 -58
- package/themes/original/src/components/UserProfileForm/index.tsx +348 -348
- package/themes/original/src/components/UserProfileForm/styles.tsx +36 -36
- package/themes/original/src/components/UserVerification/index.tsx +518 -518
- package/themes/original/src/components/UserVerification/styles.tsx +83 -83
- package/themes/original/src/components/VerifyPhone/index.tsx +195 -195
- package/themes/original/src/components/VerifyPhone/styles.tsx +42 -42
- package/themes/original/src/components/WalletTransactionItem/index.tsx +69 -69
- package/themes/original/src/components/WalletTransactionItem/styles.tsx +37 -37
- package/themes/original/src/components/WalletTransactions/index.tsx +76 -76
- package/themes/original/src/components/WalletTransactions/styles.tsx +14 -14
- package/themes/original/src/components/Wallets/index.tsx +350 -350
- package/themes/original/src/components/Wallets/styles.tsx +67 -67
- package/themes/original/src/components/WebsocketStatus/index.tsx +169 -169
- package/themes/original/src/components/WebsocketStatus/styles.tsx +28 -28
- package/themes/original/src/components/shared/CardAnimation.tsx +47 -47
- package/themes/original/src/components/shared/HeaderTitle.tsx +26 -26
- package/themes/original/src/components/shared/OAlert.tsx +56 -56
- package/themes/original/src/components/shared/OBottomPopup.tsx +109 -109
- package/themes/original/src/components/shared/OButton.tsx +150 -150
- package/themes/original/src/components/shared/ODropDown.tsx +168 -168
- package/themes/original/src/components/shared/OIcon.tsx +66 -66
- package/themes/original/src/components/shared/OIconButton.tsx +127 -127
- package/themes/original/src/components/shared/OIconText.tsx +53 -53
- package/themes/original/src/components/shared/OInput.tsx +137 -137
- package/themes/original/src/components/shared/OKeyButton.tsx +34 -34
- package/themes/original/src/components/shared/OModal.tsx +194 -194
- package/themes/original/src/components/shared/OText.tsx +52 -52
- package/themes/original/src/components/shared/OTextarea.tsx +36 -36
- package/themes/original/src/components/shared/OToast.tsx +93 -93
- package/themes/original/src/components/shared/OToggle.tsx +157 -157
- package/themes/original/src/components/shared/index.tsx +31 -31
- package/themes/original/src/config/constants.tsx +43 -43
- package/themes/original/src/layouts/Container.tsx +32 -32
- package/themes/original/src/layouts/FloatingBottomContainer.tsx +30 -30
- package/themes/original/src/layouts/SafeAreaContainer.tsx +6 -6
- package/themes/original/src/providers/AlertProvider.tsx +43 -43
- package/themes/original/src/providers/StoreUtil.tsx +50 -50
- package/themes/original/src/types/index.tsx +840 -840
- package/themes/original/src/utils/index.tsx +744 -744
- package/themes/single-business/index.tsx +207 -207
- package/themes/single-business/src/components/ActiveOrders/index.tsx +135 -135
- package/themes/single-business/src/components/ActiveOrders/styles.tsx +44 -44
- package/themes/single-business/src/components/AddressDetails/index.tsx +77 -77
- package/themes/single-business/src/components/AddressDetails/styles.tsx +21 -21
- package/themes/single-business/src/components/AddressForm/index.tsx +856 -856
- package/themes/single-business/src/components/AddressForm/styles.tsx +27 -27
- package/themes/single-business/src/components/AddressList/index.tsx +338 -338
- package/themes/single-business/src/components/AddressList/styles.tsx +20 -20
- package/themes/single-business/src/components/AppleLogin/index.tsx +108 -108
- package/themes/single-business/src/components/AppleLogin/styles.tsx +21 -21
- package/themes/single-business/src/components/BottomWrapper/index.tsx +29 -29
- package/themes/single-business/src/components/BusinessBasicInformation/index.tsx +315 -315
- package/themes/single-business/src/components/BusinessBasicInformation/styles.tsx +65 -65
- package/themes/single-business/src/components/BusinessController/index.tsx +186 -186
- package/themes/single-business/src/components/BusinessController/styles.tsx +56 -56
- package/themes/single-business/src/components/BusinessFeaturedController/index.tsx +189 -189
- package/themes/single-business/src/components/BusinessFeaturedController/styles.tsx +50 -50
- package/themes/single-business/src/components/BusinessInformation/index.tsx +244 -244
- package/themes/single-business/src/components/BusinessInformation/styles.tsx +39 -39
- package/themes/single-business/src/components/BusinessItemAccordion/index.tsx +125 -125
- package/themes/single-business/src/components/BusinessItemAccordion/styles.tsx +54 -54
- package/themes/single-business/src/components/BusinessProductsCategories/index.tsx +160 -160
- package/themes/single-business/src/components/BusinessProductsCategories/styles.tsx +7 -7
- package/themes/single-business/src/components/BusinessProductsList/index.tsx +213 -213
- package/themes/single-business/src/components/BusinessProductsList/styles.tsx +14 -14
- package/themes/single-business/src/components/BusinessProductsListing/index.tsx +338 -338
- package/themes/single-business/src/components/BusinessProductsListing/styles.tsx +30 -30
- package/themes/single-business/src/components/BusinessReviews/index.tsx +255 -255
- package/themes/single-business/src/components/BusinessReviews/styles.tsx +59 -59
- package/themes/single-business/src/components/BusinessTypeFilter/index.tsx +127 -127
- package/themes/single-business/src/components/BusinessTypeFilter/styles.tsx +40 -40
- package/themes/single-business/src/components/BusinessesListing/index.tsx +384 -384
- package/themes/single-business/src/components/BusinessesListing/styles.tsx +108 -108
- package/themes/single-business/src/components/Cart/index.tsx +490 -490
- package/themes/single-business/src/components/Cart/styles.tsx +111 -111
- package/themes/single-business/src/components/CartContent/index.tsx +64 -64
- package/themes/single-business/src/components/CartContent/styles.tsx +5 -5
- package/themes/single-business/src/components/Checkout/index.tsx +662 -662
- package/themes/single-business/src/components/Checkout/styles.tsx +89 -89
- package/themes/single-business/src/components/CouponControl/index.tsx +119 -119
- package/themes/single-business/src/components/CouponControl/styles.tsx +22 -22
- package/themes/single-business/src/components/DriverTips/index.tsx +163 -163
- package/themes/single-business/src/components/DriverTips/styles.tsx +63 -63
- package/themes/single-business/src/components/FacebookLogin/index.tsx +107 -107
- package/themes/single-business/src/components/FacebookLogin/styles.tsx +21 -21
- package/themes/single-business/src/components/FloatingButton/index.tsx +100 -100
- package/themes/single-business/src/components/FloatingButton/styles.tsx +26 -26
- package/themes/single-business/src/components/ForgotPasswordForm/index.tsx +156 -156
- package/themes/single-business/src/components/ForgotPasswordForm/styles.tsx +11 -11
- package/themes/single-business/src/components/GPSButton/index.tsx +84 -84
- package/themes/single-business/src/components/GPSButton/styles.ts +5 -5
- package/themes/single-business/src/components/GoogleLogin/index.tsx +114 -114
- package/themes/single-business/src/components/GoogleLogin/styles.tsx +23 -23
- package/themes/single-business/src/components/GoogleMap/index.tsx +229 -229
- package/themes/single-business/src/components/Help/index.tsx +55 -55
- package/themes/single-business/src/components/Help/styles.tsx +11 -11
- package/themes/single-business/src/components/HelpAccountAndPayment/index.tsx +69 -69
- package/themes/single-business/src/components/HelpAccountAndPayment/styles.tsx +6 -6
- package/themes/single-business/src/components/HelpGuide/index.tsx +68 -68
- package/themes/single-business/src/components/HelpGuide/styles.tsx +6 -6
- package/themes/single-business/src/components/HelpOrder/index.tsx +80 -80
- package/themes/single-business/src/components/HelpOrder/styles.tsx +5 -5
- package/themes/single-business/src/components/Home/index.tsx +102 -102
- package/themes/single-business/src/components/Home/styles.tsx +18 -18
- package/themes/single-business/src/components/LanguageSelector/index.tsx +109 -109
- package/themes/single-business/src/components/LanguageSelector/styles.tsx +7 -7
- package/themes/single-business/src/components/LastOrder/index.tsx +170 -170
- package/themes/single-business/src/components/LastOrder/styles.tsx +16 -16
- package/themes/single-business/src/components/LastOrders/index.tsx +104 -104
- package/themes/single-business/src/components/LastOrders/styles.tsx +17 -17
- package/themes/single-business/src/components/LoginForm/index.tsx +587 -587
- package/themes/single-business/src/components/LoginForm/styles.tsx +82 -82
- package/themes/single-business/src/components/LogoutButton/index.tsx +36 -36
- package/themes/single-business/src/components/Messages/index.tsx +350 -350
- package/themes/single-business/src/components/Messages/styles.tsx +20 -20
- package/themes/single-business/src/components/MomentOption/index.tsx +290 -290
- package/themes/single-business/src/components/MomentOption/styles.tsx +65 -65
- package/themes/single-business/src/components/NavBar/index.tsx +129 -129
- package/themes/single-business/src/components/NotFoundSource/index.tsx +50 -50
- package/themes/single-business/src/components/NotFoundSource/styles.tsx +16 -16
- package/themes/single-business/src/components/Notifications/index.tsx +120 -120
- package/themes/single-business/src/components/Notifications/styles.ts +20 -20
- package/themes/single-business/src/components/OrderDetails/index.tsx +871 -871
- package/themes/single-business/src/components/OrderDetails/styles.tsx +120 -120
- package/themes/single-business/src/components/OrderListOption/index.tsx +231 -231
- package/themes/single-business/src/components/OrderListOption/styles.tsx +62 -62
- package/themes/single-business/src/components/OrderSummary/index.tsx +267 -267
- package/themes/single-business/src/components/OrderSummary/styles.tsx +40 -40
- package/themes/single-business/src/components/OrderTypeSelector/index.tsx +126 -126
- package/themes/single-business/src/components/OrderTypeSelector/styles.tsx +26 -26
- package/themes/single-business/src/components/OrdersListing/index.tsx +112 -112
- package/themes/single-business/src/components/OrdersOption/index.tsx +245 -245
- package/themes/single-business/src/components/OrdersOption/styles.tsx +5 -5
- package/themes/single-business/src/components/PaymentOptionCash/index.tsx +102 -102
- package/themes/single-business/src/components/PaymentOptionCash/styles.tsx +18 -18
- package/themes/single-business/src/components/PaymentOptionStripe/index.tsx +234 -234
- package/themes/single-business/src/components/PaymentOptionStripe/styles.tsx +69 -69
- package/themes/single-business/src/components/PaymentOptions/index.tsx +431 -431
- package/themes/single-business/src/components/PaymentOptions/styles.tsx +74 -74
- package/themes/single-business/src/components/PhoneInputNumber/index.tsx +118 -118
- package/themes/single-business/src/components/PhoneInputNumber/styles.tsx +3 -3
- package/themes/single-business/src/components/PreviousOrders/index.tsx +195 -195
- package/themes/single-business/src/components/PreviousOrders/styles.tsx +33 -33
- package/themes/single-business/src/components/ProductForm/index.tsx +694 -694
- package/themes/single-business/src/components/ProductForm/styles.tsx +82 -82
- package/themes/single-business/src/components/ProductIngredient/index.tsx +43 -43
- package/themes/single-business/src/components/ProductIngredient/styles.tsx +7 -7
- package/themes/single-business/src/components/ProductItemAccordion/index.tsx +276 -276
- package/themes/single-business/src/components/ProductItemAccordion/styles.tsx +57 -57
- package/themes/single-business/src/components/ProductOption/index.tsx +50 -50
- package/themes/single-business/src/components/ProductOption/styles.tsx +11 -11
- package/themes/single-business/src/components/ProductOptionSubOption/index.tsx +146 -146
- package/themes/single-business/src/components/ProductOptionSubOption/styles.tsx +32 -32
- package/themes/single-business/src/components/PromotionCard/index.tsx +103 -103
- package/themes/single-business/src/components/PromotionCard/styles.tsx +28 -28
- package/themes/single-business/src/components/Promotions/index.tsx +78 -78
- package/themes/single-business/src/components/Promotions/styles.tsx +3 -3
- package/themes/single-business/src/components/ReviewOrder/index.tsx +346 -346
- package/themes/single-business/src/components/ReviewOrder/styles.tsx +44 -44
- package/themes/single-business/src/components/SearchBar/index.tsx +108 -108
- package/themes/single-business/src/components/SignupForm/index.tsx +642 -642
- package/themes/single-business/src/components/SignupForm/styles.tsx +27 -27
- package/themes/single-business/src/components/SingleProductCard/index.tsx +124 -124
- package/themes/single-business/src/components/SingleProductCard/styles.tsx +23 -23
- package/themes/single-business/src/components/StripeCardForm/index.tsx +97 -97
- package/themes/single-business/src/components/StripeCardForm/naked.tsx +128 -128
- package/themes/single-business/src/components/StripeCardForm/styles.tsx +32 -32
- package/themes/single-business/src/components/StripeCardsList/index.tsx +143 -143
- package/themes/single-business/src/components/StripeElementsForm/index.tsx +204 -204
- package/themes/single-business/src/components/StripeElementsForm/naked.tsx +90 -90
- package/themes/single-business/src/components/StripeElementsForm/styles.tsx +13 -13
- package/themes/single-business/src/components/StripeRedirectForm/index.tsx +159 -159
- package/themes/single-business/src/components/StripeRedirectForm/styles.tsx +23 -23
- package/themes/single-business/src/components/TagSelector/index.tsx +94 -94
- package/themes/single-business/src/components/TaxInformation/index.tsx +56 -56
- package/themes/single-business/src/components/TaxInformation/styles.tsx +10 -10
- package/themes/single-business/src/components/UpsellingProducts/index.tsx +259 -259
- package/themes/single-business/src/components/UpsellingProducts/styles.tsx +57 -57
- package/themes/single-business/src/components/UserDetails/index.tsx +130 -130
- package/themes/single-business/src/components/UserDetails/styles.tsx +21 -21
- package/themes/single-business/src/components/UserFormDetails/index.tsx +304 -304
- package/themes/single-business/src/components/UserFormDetails/styles.tsx +37 -37
- package/themes/single-business/src/components/UserProfile/index.tsx +185 -185
- package/themes/single-business/src/components/UserProfile/styles.ts +42 -42
- package/themes/single-business/src/components/UserProfileForm/index.tsx +254 -254
- package/themes/single-business/src/components/UserProfileForm/styles.tsx +29 -29
- package/themes/single-business/src/components/VerifyPhone/index.tsx +188 -188
- package/themes/single-business/src/components/VerifyPhone/styles.tsx +43 -43
- package/themes/single-business/src/components/shared/OAlert.tsx +55 -55
- package/themes/single-business/src/components/shared/OBottomPopup.tsx +73 -73
- package/themes/single-business/src/components/shared/OButton.tsx +132 -132
- package/themes/single-business/src/components/shared/ODropDown.tsx +169 -169
- package/themes/single-business/src/components/shared/OIcon.tsx +53 -53
- package/themes/single-business/src/components/shared/OIconButton.tsx +127 -127
- package/themes/single-business/src/components/shared/OIconText.tsx +53 -53
- package/themes/single-business/src/components/shared/OInput.tsx +114 -114
- package/themes/single-business/src/components/shared/OKeyButton.tsx +34 -34
- package/themes/single-business/src/components/shared/OLink.tsx +80 -80
- package/themes/single-business/src/components/shared/OModal.tsx +172 -172
- package/themes/single-business/src/components/shared/OText.tsx +52 -52
- package/themes/single-business/src/components/shared/OTextarea.tsx +36 -36
- package/themes/single-business/src/components/shared/OToast.tsx +93 -93
- package/themes/single-business/src/components/shared/OToggle.tsx +157 -157
- package/themes/single-business/src/components/shared/index.tsx +33 -33
- package/themes/single-business/src/config/constants.tsx +41 -41
- package/themes/single-business/src/layouts/Container.tsx +23 -23
- package/themes/single-business/src/layouts/SafeAreaContainer.tsx +6 -6
- package/themes/single-business/src/providers/AlertProvider.tsx +43 -43
- package/themes/single-business/src/providers/StoreUtil.tsx +50 -50
- package/themes/single-business/src/types/index.tsx +445 -445
- package/themes/single-business/src/utils/index.tsx +286 -286
- package/themes/uber-eats/index.tsx +127 -127
- package/themes/uber-eats/src/components/Account/index.tsx +201 -201
- package/themes/uber-eats/src/components/Account/styles.tsx +21 -21
- package/themes/uber-eats/src/components/ActiveOrders/index.tsx +135 -135
- package/themes/uber-eats/src/components/ActiveOrders/styles.tsx +50 -50
- package/themes/uber-eats/src/components/AddressDetails/index.tsx +71 -71
- package/themes/uber-eats/src/components/AddressDetails/styles.tsx +13 -13
- package/themes/uber-eats/src/components/AddressForm/index.tsx +715 -715
- package/themes/uber-eats/src/components/AddressForm/styles.tsx +31 -31
- package/themes/uber-eats/src/components/AddressList/index.tsx +315 -315
- package/themes/uber-eats/src/components/AddressList/styles.tsx +23 -23
- package/themes/uber-eats/src/components/BusinessBasicInformation/index.tsx +226 -226
- package/themes/uber-eats/src/components/BusinessBasicInformation/styles.tsx +41 -41
- package/themes/uber-eats/src/components/BusinessController/index.tsx +201 -201
- package/themes/uber-eats/src/components/BusinessController/styles.tsx +58 -58
- package/themes/uber-eats/src/components/BusinessInformation/index.tsx +101 -101
- package/themes/uber-eats/src/components/BusinessInformation/styles.tsx +36 -36
- package/themes/uber-eats/src/components/BusinessItemAccordion/index.tsx +145 -145
- package/themes/uber-eats/src/components/BusinessItemAccordion/styles.tsx +61 -61
- package/themes/uber-eats/src/components/BusinessProductsCategories/index.tsx +141 -141
- package/themes/uber-eats/src/components/BusinessProductsCategories/styles.tsx +7 -7
- package/themes/uber-eats/src/components/BusinessProductsList/index.tsx +195 -195
- package/themes/uber-eats/src/components/BusinessProductsList/styles.tsx +13 -13
- package/themes/uber-eats/src/components/BusinessProductsListing/index.tsx +411 -411
- package/themes/uber-eats/src/components/BusinessProductsListing/styles.tsx +52 -52
- package/themes/uber-eats/src/components/BusinessReviews/index.tsx +121 -121
- package/themes/uber-eats/src/components/BusinessReviews/styles.tsx +33 -33
- package/themes/uber-eats/src/components/BusinessTypeFilter/index.tsx +194 -194
- package/themes/uber-eats/src/components/BusinessTypeFilter/styles.tsx +28 -28
- package/themes/uber-eats/src/components/BusinessesListing/index.tsx +247 -247
- package/themes/uber-eats/src/components/BusinessesListing/styles.tsx +62 -62
- package/themes/uber-eats/src/components/Cart/index.tsx +346 -346
- package/themes/uber-eats/src/components/Cart/styles.tsx +26 -26
- package/themes/uber-eats/src/components/CartContent/index.tsx +50 -50
- package/themes/uber-eats/src/components/CartContent/styles.tsx +19 -19
- package/themes/uber-eats/src/components/Checkout/index.tsx +709 -709
- package/themes/uber-eats/src/components/Checkout/styles.tsx +72 -72
- package/themes/uber-eats/src/components/CouponControl/index.tsx +120 -120
- package/themes/uber-eats/src/components/CouponControl/styles.tsx +22 -22
- package/themes/uber-eats/src/components/DriverTips/index.tsx +167 -167
- package/themes/uber-eats/src/components/DriverTips/styles.tsx +47 -47
- package/themes/uber-eats/src/components/FacebookLogin/index.tsx +124 -124
- package/themes/uber-eats/src/components/FacebookLogin/styles.tsx +21 -21
- package/themes/uber-eats/src/components/FloatingButton/index.tsx +74 -74
- package/themes/uber-eats/src/components/FloatingButton/styles.tsx +31 -31
- package/themes/uber-eats/src/components/GoogleMap/index.tsx +236 -236
- package/themes/uber-eats/src/components/Help/index.tsx +54 -54
- package/themes/uber-eats/src/components/Help/styles.tsx +11 -11
- package/themes/uber-eats/src/components/HelpAccountAndPayment/index.tsx +67 -67
- package/themes/uber-eats/src/components/HelpAccountAndPayment/styles.tsx +6 -6
- package/themes/uber-eats/src/components/HelpGuide/index.tsx +66 -66
- package/themes/uber-eats/src/components/HelpGuide/styles.tsx +6 -6
- package/themes/uber-eats/src/components/HelpOrder/index.tsx +78 -78
- package/themes/uber-eats/src/components/HelpOrder/styles.tsx +5 -5
- package/themes/uber-eats/src/components/HighestRatedBusinesses/index.tsx +132 -132
- package/themes/uber-eats/src/components/HighestRatedBusinesses/styles.tsx +6 -6
- package/themes/uber-eats/src/components/Home/index.tsx +117 -117
- package/themes/uber-eats/src/components/Home/styles.tsx +13 -13
- package/themes/uber-eats/src/components/LanguageSelector/index.tsx +154 -154
- package/themes/uber-eats/src/components/LanguageSelector/styles.tsx +18 -18
- package/themes/uber-eats/src/components/LastOrders/index.tsx +104 -104
- package/themes/uber-eats/src/components/LastOrders/styles.tsx +17 -17
- package/themes/uber-eats/src/components/LoginForm/index.tsx +440 -440
- package/themes/uber-eats/src/components/LoginForm/styles.tsx +65 -65
- package/themes/uber-eats/src/components/LogoutButton/index.tsx +67 -67
- package/themes/uber-eats/src/components/Messages/index.tsx +422 -422
- package/themes/uber-eats/src/components/Messages/styles.tsx +23 -23
- package/themes/uber-eats/src/components/MomentOption/index.tsx +211 -211
- package/themes/uber-eats/src/components/MomentOption/styles.tsx +66 -66
- package/themes/uber-eats/src/components/NavBar/index.tsx +122 -122
- package/themes/uber-eats/src/components/NotFoundSource/index.tsx +55 -55
- package/themes/uber-eats/src/components/NotFoundSource/styles.tsx +16 -16
- package/themes/uber-eats/src/components/OrderDetails/index.tsx +513 -513
- package/themes/uber-eats/src/components/OrderDetails/styles.tsx +140 -140
- package/themes/uber-eats/src/components/OrderSummary/index.tsx +266 -266
- package/themes/uber-eats/src/components/OrderSummary/styles.tsx +36 -36
- package/themes/uber-eats/src/components/OrderTypeSelector/index.tsx +130 -130
- package/themes/uber-eats/src/components/OrderTypeSelector/styles.tsx +6 -6
- package/themes/uber-eats/src/components/OrdersOption/index.tsx +225 -225
- package/themes/uber-eats/src/components/OrdersOption/styles.tsx +3 -3
- package/themes/uber-eats/src/components/PaymentOptionCash/index.tsx +102 -102
- package/themes/uber-eats/src/components/PaymentOptionCash/styles.tsx +18 -18
- package/themes/uber-eats/src/components/PaymentOptionStripe/index.tsx +232 -232
- package/themes/uber-eats/src/components/PaymentOptionStripe/styles.tsx +62 -62
- package/themes/uber-eats/src/components/PaymentOptions/index.tsx +547 -547
- package/themes/uber-eats/src/components/PaymentOptions/styles.tsx +41 -41
- package/themes/uber-eats/src/components/PhoneInputNumber/index.tsx +108 -108
- package/themes/uber-eats/src/components/PhoneInputNumber/styles.tsx +4 -4
- package/themes/uber-eats/src/components/PreviousOrders/index.tsx +149 -149
- package/themes/uber-eats/src/components/PreviousOrders/styles.tsx +34 -34
- package/themes/uber-eats/src/components/ProductForm/index.tsx +480 -480
- package/themes/uber-eats/src/components/ProductForm/styles.tsx +91 -91
- package/themes/uber-eats/src/components/ProductIngredient/index.tsx +44 -44
- package/themes/uber-eats/src/components/ProductIngredient/styles.tsx +7 -7
- package/themes/uber-eats/src/components/ProductItemAccordion/index.tsx +252 -252
- package/themes/uber-eats/src/components/ProductItemAccordion/styles.tsx +61 -61
- package/themes/uber-eats/src/components/ProductOption/index.tsx +109 -109
- package/themes/uber-eats/src/components/ProductOption/styles.tsx +27 -27
- package/themes/uber-eats/src/components/ProductOptionSubOption/index.tsx +159 -159
- package/themes/uber-eats/src/components/ProductOptionSubOption/styles.tsx +32 -32
- package/themes/uber-eats/src/components/SearchBar/index.tsx +106 -106
- package/themes/uber-eats/src/components/SignupForm/index.tsx +574 -574
- package/themes/uber-eats/src/components/SignupForm/styles.tsx +29 -29
- package/themes/uber-eats/src/components/SingleProductCard/index.tsx +88 -88
- package/themes/uber-eats/src/components/SingleProductCard/styles.tsx +26 -26
- package/themes/uber-eats/src/components/StripeCardsList/index.tsx +144 -144
- package/themes/uber-eats/src/components/StripeElementsForm/index.tsx +188 -188
- package/themes/uber-eats/src/components/StripeElementsForm/naked.tsx +90 -90
- package/themes/uber-eats/src/components/StripeElementsForm/styles.tsx +9 -9
- package/themes/uber-eats/src/components/TaxInformation/index.tsx +51 -51
- package/themes/uber-eats/src/components/TaxInformation/styles.tsx +9 -9
- package/themes/uber-eats/src/components/UpsellingProducts/index.tsx +189 -189
- package/themes/uber-eats/src/components/UpsellingProducts/styles.tsx +37 -37
- package/themes/uber-eats/src/components/UserDetails/index.tsx +125 -125
- package/themes/uber-eats/src/components/UserDetails/styles.tsx +21 -21
- package/themes/uber-eats/src/components/UserFormDetails/index.tsx +304 -304
- package/themes/uber-eats/src/components/UserFormDetails/styles.tsx +38 -38
- package/themes/uber-eats/src/components/UserProfileForm/index.tsx +106 -106
- package/themes/uber-eats/src/components/UserProfileForm/styles.tsx +37 -37
- package/themes/uber-eats/src/components/VerifyPhone/index.tsx +187 -187
- package/themes/uber-eats/src/components/VerifyPhone/styles.tsx +43 -43
- package/themes/uber-eats/src/components/shared/OAlert.tsx +53 -53
- package/themes/uber-eats/src/components/shared/OBottomPopup.tsx +118 -118
- package/themes/uber-eats/src/components/shared/OButton.tsx +133 -133
- package/themes/uber-eats/src/components/shared/ODropDown.tsx +168 -168
- package/themes/uber-eats/src/components/shared/OIcon.tsx +53 -53
- package/themes/uber-eats/src/components/shared/OIconButton.tsx +134 -134
- package/themes/uber-eats/src/components/shared/OInput.tsx +122 -122
- package/themes/uber-eats/src/components/shared/OModal.tsx +151 -151
- package/themes/uber-eats/src/components/shared/OText.tsx +52 -52
- package/themes/uber-eats/src/components/shared/OToast.tsx +94 -94
- package/themes/uber-eats/src/components/shared/index.tsx +22 -22
- package/themes/uber-eats/src/config/constants.tsx +10 -10
- package/themes/uber-eats/src/layouts/Container.tsx +26 -26
- package/themes/uber-eats/src/layouts/SafeAreaContainer.tsx +6 -6
- package/themes/uber-eats/src/providers/AlertProvider.tsx +43 -43
- package/themes/uber-eats/src/providers/StoreUtil.tsx +58 -58
- package/themes/uber-eats/src/types/@stripe/stripe-react-native/index.d.ts +1 -1
- package/themes/uber-eats/src/types/index.tsx +451 -451
- package/themes/uber-eats/src/types/ordering-api-sdk/index.d.ts +1 -1
- package/themes/uber-eats/src/types/ordering-components/index.d.ts +1 -1
- package/themes/uber-eats/src/types/react-hook-form/index.d.ts +1 -1
- package/themes/uber-eats/src/types/react-native-credit-card-input/index.d.ts +1 -1
- package/themes/uber-eats/src/types/react-native-fbsdk/index.d.ts +1 -1
- package/themes/uber-eats/src/types/react-native-gesture-handler/index.d.ts +1 -1
- package/themes/uber-eats/src/types/react-native-gifted-chat/index.d.ts +1 -1
- package/themes/uber-eats/src/types/react-native-image-picker/index.d.ts +1 -1
- package/themes/uber-eats/src/types/react-native-restart/index.d.ts +1 -1
- package/themes/uber-eats/src/types/styled-components/index.d.ts +1 -1
- package/themes/uber-eats/src/utils/index.tsx +191 -191
|
@@ -1,1381 +1,1381 @@
|
|
|
1
|
-
import React, { useState, useEffect, useCallback, useRef, useMemo } from 'react';
|
|
2
|
-
import { View, StyleSheet, TouchableOpacity, Platform, I18nManager, ScrollView, Keyboard, BackHandler, SafeAreaView } from 'react-native';
|
|
3
|
-
import { initStripe, useConfirmPayment } from '@stripe/stripe-react-native';
|
|
4
|
-
import NativeStripeSdk from '@stripe/stripe-react-native/src/NativeStripeSdk'
|
|
5
|
-
import Picker from 'react-native-country-picker-modal';
|
|
6
|
-
import MaterialIcons from 'react-native-vector-icons/MaterialIcons'
|
|
7
|
-
import IconAntDesign from 'react-native-vector-icons/AntDesign';
|
|
8
|
-
import { useIsFocused } from '@react-navigation/native';
|
|
9
|
-
|
|
10
|
-
import ReactNativeHapticFeedback, { HapticFeedbackTypes } from "react-native-haptic-feedback";
|
|
11
|
-
import {
|
|
12
|
-
Checkout as CheckoutController,
|
|
13
|
-
useOrder,
|
|
14
|
-
useSession,
|
|
15
|
-
useApi,
|
|
16
|
-
useLanguage,
|
|
17
|
-
useUtils,
|
|
18
|
-
useConfig,
|
|
19
|
-
useToast,
|
|
20
|
-
ToastType,
|
|
21
|
-
useEvent
|
|
22
|
-
} from 'ordering-components/native';
|
|
23
|
-
import { useTheme } from 'styled-components/native';
|
|
24
|
-
import { OText, OIcon, OModal, OButton } from '../shared';
|
|
25
|
-
|
|
26
|
-
import { AddressDetails } from '../AddressDetails';
|
|
27
|
-
import { PaymentOptions } from '../PaymentOptions';
|
|
28
|
-
import { DriverTips } from '../DriverTips';
|
|
29
|
-
import { NotFoundSource } from '../NotFoundSource';
|
|
30
|
-
import { UserDetails } from '../UserDetails';
|
|
31
|
-
import { PaymentOptionWallet } from '../PaymentOptionWallet';
|
|
32
|
-
import { PlaceSpot } from '../PlaceSpot'
|
|
33
|
-
import { SignupForm } from '../SignupForm'
|
|
34
|
-
import { LoginForm } from '../LoginForm'
|
|
35
|
-
|
|
36
|
-
import {
|
|
37
|
-
ChContainer,
|
|
38
|
-
ChSection,
|
|
39
|
-
ChHeader,
|
|
40
|
-
ChAddress,
|
|
41
|
-
CHMomentWrapper,
|
|
42
|
-
ChPaymethods,
|
|
43
|
-
ChDriverTips,
|
|
44
|
-
ChErrors,
|
|
45
|
-
ChBusinessDetails,
|
|
46
|
-
ChUserDetails,
|
|
47
|
-
ChCart,
|
|
48
|
-
DeliveryOptionsContainer,
|
|
49
|
-
DeliveryOptionItem,
|
|
50
|
-
WalletPaymentOptionContainer,
|
|
51
|
-
CartHeader,
|
|
52
|
-
TopHeader,
|
|
53
|
-
TopActions
|
|
54
|
-
} from './styles';
|
|
55
|
-
import { Fade, Placeholder, PlaceholderLine } from 'rn-placeholder';
|
|
56
|
-
import { FloatingButton } from '../FloatingButton';
|
|
57
|
-
import { Container } from '../../layouts/Container';
|
|
58
|
-
import NavBar from '../NavBar';
|
|
59
|
-
import { OrderSummary } from '../OrderSummary';
|
|
60
|
-
import { getTypesText } from '../../utils';
|
|
61
|
-
import { CartStoresListing } from '../CartStoresListing';
|
|
62
|
-
import { PaymentOptionsWebView } from '../../../../../src/components/PaymentOptionsWebView';
|
|
63
|
-
import { DeviceOrientationMethods } from '../../../../../src/hooks/DeviceOrientation'
|
|
64
|
-
const { useDeviceOrientation } = DeviceOrientationMethods
|
|
65
|
-
|
|
66
|
-
const mapConfigs = {
|
|
67
|
-
mapZoom: 16,
|
|
68
|
-
mapSize: {
|
|
69
|
-
width: 640,
|
|
70
|
-
height: 190
|
|
71
|
-
}
|
|
72
|
-
};
|
|
73
|
-
|
|
74
|
-
const driverTipsTypes = [1, 2]
|
|
75
|
-
|
|
76
|
-
const manageErrorsToShow = (array = []) => {
|
|
77
|
-
let stringError = ''
|
|
78
|
-
const list = Array.isArray(array) ? array : Object.values(array)
|
|
79
|
-
list.map((item: any, i: number) => {
|
|
80
|
-
stringError += (i + 1) === array.length ? `- ${item?.message || item}` : `- ${item?.message || item}\n`
|
|
81
|
-
})
|
|
82
|
-
return stringError;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
const CheckoutUI = (props: any) => {
|
|
86
|
-
const {
|
|
87
|
-
navigation,
|
|
88
|
-
cart,
|
|
89
|
-
errors,
|
|
90
|
-
placing,
|
|
91
|
-
cartState,
|
|
92
|
-
cartUuid,
|
|
93
|
-
loyaltyPlansState,
|
|
94
|
-
businessDetails,
|
|
95
|
-
paymethodSelected,
|
|
96
|
-
handlePaymethodChange,
|
|
97
|
-
handlerClickPlaceOrder,
|
|
98
|
-
onNavigationRedirect,
|
|
99
|
-
deliveryOptionSelected,
|
|
100
|
-
instructionsOptions,
|
|
101
|
-
handleChangeDeliveryOption,
|
|
102
|
-
currency,
|
|
103
|
-
merchantId,
|
|
104
|
-
setPlaceSpotNumber,
|
|
105
|
-
maxDate,
|
|
106
|
-
androidAppId,
|
|
107
|
-
urlscheme,
|
|
108
|
-
checkoutFieldsState
|
|
109
|
-
} = props
|
|
110
|
-
|
|
111
|
-
const theme = useTheme();
|
|
112
|
-
const isFocused = useIsFocused();
|
|
113
|
-
|
|
114
|
-
const styles = StyleSheet.create({
|
|
115
|
-
btnBackArrow: {
|
|
116
|
-
borderWidth: 0,
|
|
117
|
-
backgroundColor: theme.colors.white,
|
|
118
|
-
borderColor: theme.colors.white,
|
|
119
|
-
shadowColor: theme.colors.white,
|
|
120
|
-
display: 'flex',
|
|
121
|
-
justifyContent: 'flex-start',
|
|
122
|
-
paddingLeft: 0,
|
|
123
|
-
},
|
|
124
|
-
paddSection: {
|
|
125
|
-
padding: 20
|
|
126
|
-
},
|
|
127
|
-
pagePadding: {
|
|
128
|
-
paddingHorizontal: 20
|
|
129
|
-
},
|
|
130
|
-
icon: {
|
|
131
|
-
top: 15,
|
|
132
|
-
right: Platform.OS === 'ios' ? 5 : (I18nManager.isRTL ? 30 : 0),
|
|
133
|
-
position: 'absolute',
|
|
134
|
-
fontSize: 20
|
|
135
|
-
},
|
|
136
|
-
detailWrapper: {
|
|
137
|
-
paddingHorizontal: 20,
|
|
138
|
-
width: '100%'
|
|
139
|
-
},
|
|
140
|
-
wrapperNavbar: {
|
|
141
|
-
paddingVertical: 2,
|
|
142
|
-
paddingHorizontal: 20,
|
|
143
|
-
backgroundColor: theme?.colors?.white,
|
|
144
|
-
borderWidth: 0
|
|
145
|
-
}
|
|
146
|
-
})
|
|
147
|
-
|
|
148
|
-
const [, { showToast }] = useToast();
|
|
149
|
-
const [, t] = useLanguage();
|
|
150
|
-
const [{ user, token, loading: userLoading }, { login }] = useSession();
|
|
151
|
-
const [ordering] = useApi()
|
|
152
|
-
const [{ configs }] = useConfig();
|
|
153
|
-
const [{ parsePrice, parseDate }] = useUtils();
|
|
154
|
-
const [{ options, carts, loading }, { confirmCart }] = useOrder();
|
|
155
|
-
const [events] = useEvent()
|
|
156
|
-
const [orientationState] = useDeviceOrientation();
|
|
157
|
-
const [isReadMore, setIsReadMore] = useState(false)
|
|
158
|
-
const [lengthMore, setLengthMore] = useState(false)
|
|
159
|
-
const WIDTH_SCREEN = orientationState?.dimensions?.width
|
|
160
|
-
|
|
161
|
-
const [errorCash, setErrorCash] = useState(false);
|
|
162
|
-
const [userErrors, setUserErrors] = useState<any>([]);
|
|
163
|
-
const [isUserDetailsEdit, setIsUserDetailsEdit] = useState(false);
|
|
164
|
-
const [phoneUpdate, setPhoneUpdate] = useState(false);
|
|
165
|
-
const [openChangeStore, setOpenChangeStore] = useState(false)
|
|
166
|
-
const [isDeliveryOptionModalVisible, setIsDeliveryOptionModalVisible] = useState(false)
|
|
167
|
-
const [showGateway, setShowGateway] = useState<any>({ closedByUser: false, open: false });
|
|
168
|
-
const [webviewPaymethod, setWebviewPaymethod] = useState<any>(null)
|
|
169
|
-
const [isOpen, setIsOpen] = useState(false)
|
|
170
|
-
const [requiredFields, setRequiredFields] = useState<any>([])
|
|
171
|
-
const [orderTypeValidationFields, setOrderTypeValidationFields] = useState<any>([])
|
|
172
|
-
const [openModal, setOpenModal] = useState({ login: false, signup: false, isGuest: false })
|
|
173
|
-
const [allowedGuest, setAllowedGuest] = useState(false)
|
|
174
|
-
const [placeByMethodPay, setPlaceByMethodPay] = useState(false)
|
|
175
|
-
const [methodPaySupported, setMethodPaySupported] = useState({ enabled: false, message: null, loading: true })
|
|
176
|
-
const [paymethodClicked, setPaymethodClicked] = useState<any>(null)
|
|
177
|
-
const [showTitle, setShowTitle] = useState(false)
|
|
178
|
-
const [cardList, setCardList] = useState<any>({ cards: [], loading: false, error: null })
|
|
179
|
-
const [isGiftCardCart, setIsGiftCardCart] = useState(!cart?.business_id)
|
|
180
|
-
const [userHasCards, setUserHasCards] = useState(false)
|
|
181
|
-
const containerRef = useRef<any>()
|
|
182
|
-
const cardsMethods = ['credomatic']
|
|
183
|
-
const stripePaymethods: any = ['stripe', 'stripe_connect', 'stripe_redirect']
|
|
184
|
-
const cardsPaymethods: any = ['stripe', 'stripe_connect']
|
|
185
|
-
|
|
186
|
-
const notFields = ['coupon', 'driver_tip', 'mobile_phone', 'address', 'zipcode', 'address_notes', 'comments']
|
|
187
|
-
|
|
188
|
-
const checkoutFields = useMemo(() => checkoutFieldsState?.fields?.filter((field: any) => field.order_type_id === options?.type), [checkoutFieldsState, options])
|
|
189
|
-
const guestCheckoutDriveTip = useMemo(() => checkoutFields?.find((field: any) => driverTipsTypes.includes(field.order_type_id) && field?.validation_field?.code === 'driver_tip'), [JSON.stringify(checkoutFields), options])
|
|
190
|
-
const guestCheckoutComment = useMemo(() => checkoutFields?.find((field: any) => field.order_type_id === options?.type && field?.validation_field?.code === 'comments'), [JSON.stringify(checkoutFields), options])
|
|
191
|
-
const guestCheckoutCoupon = useMemo(() => checkoutFields?.find((field: any) => field.order_type_id === options?.type && field?.validation_field?.code === 'coupon'), [JSON.stringify(checkoutFields), options])
|
|
192
|
-
const guestCheckoutZipcode = useMemo(() => checkoutFields?.find((field: any) => field.order_type_id === options?.type && field?.validation_field?.code === 'zipcode'), [JSON.stringify(checkoutFields), options])
|
|
193
|
-
|
|
194
|
-
const placeSpotTypes = [3, 4, 5]
|
|
195
|
-
const placeSpotsEnabled = placeSpotTypes.includes(options?.type)
|
|
196
|
-
const businessConfigs = businessDetails?.business?.configs ?? []
|
|
197
|
-
const isWalletCashEnabled = businessConfigs.find((config: any) => config.key === 'wallet_cash_enabled')?.value === '1'
|
|
198
|
-
const isWalletCreditPointsEnabled = businessConfigs.find((config: any) => config.key === 'wallet_credit_point_enabled')?.value === '1'
|
|
199
|
-
const isWalletEnabled = configs?.cash_wallet?.value && configs?.wallet_enabled?.value === '1' && (isWalletCashEnabled || isWalletCreditPointsEnabled)
|
|
200
|
-
const isBusinessChangeEnabled = configs?.cart_change_business_validation?.value === '1'
|
|
201
|
-
const isChewLayout = theme?.header?.components?.layout?.type?.toLowerCase() === 'chew'
|
|
202
|
-
const hideBusinessAddress = theme?.checkout?.components?.business?.components?.address?.hidden
|
|
203
|
-
const hideBusinessDetails = theme?.checkout?.components?.business?.hidden
|
|
204
|
-
const hideBusinessMap = theme?.checkout?.components?.business?.components?.map?.hidden
|
|
205
|
-
const hideCustomerDetails = theme?.checkout?.components?.customer?.hidden
|
|
206
|
-
const isGuestCheckoutEnabled = configs?.guest_checkout_enabled?.value === '1'
|
|
207
|
-
const creditPointPlan = loyaltyPlansState?.result?.find((loyal: any) => loyal.type === 'credit_point')
|
|
208
|
-
const creditPointPlanOnBusiness = creditPointPlan?.businesses?.find((b: any) => b.business_id === cart?.business_id && b.accumulates)
|
|
209
|
-
const methodsPay = ['google_pay', 'apple_pay']
|
|
210
|
-
|
|
211
|
-
const commentDelayTime = 1500
|
|
212
|
-
const isPreOrder = configs?.preorder_status_enabled?.value === '1'
|
|
213
|
-
const subtotalWithTaxes = cart?.taxes?.reduce((acc: any, item: any) => {
|
|
214
|
-
if (item?.type === 1)
|
|
215
|
-
return acc = acc + item?.summary?.tax
|
|
216
|
-
return acc = acc
|
|
217
|
-
}, cart?.subtotal)
|
|
218
|
-
const allowDriverTipPickup = configs?.driver_tip_allowed_at_pickup?.value === '1' && options?.type === 2
|
|
219
|
-
const validateCommentsCartField = (guestCheckoutComment?.enabled && (user?.guest_id ? guestCheckoutComment?.required_with_guest : guestCheckoutComment?.required)) && (cart?.comment === null || cart?.comment?.trim().length === 0)
|
|
220
|
-
const validateDriverTipField = (options.type === 1 || allowDriverTipPickup) && (guestCheckoutDriveTip?.enabled && (user?.guest_id ? guestCheckoutDriveTip?.required_with_guest : guestCheckoutDriveTip?.required)) && (Number(cart?.driver_tip) <= 0)
|
|
221
|
-
const validateCouponField = (guestCheckoutCoupon?.enabled && (user?.guest_id ? guestCheckoutCoupon?.required_with_guest : guestCheckoutCoupon?.required)) && !cart?.offers?.some((offer: any) => offer?.type === 2)
|
|
222
|
-
const validateZipcodeCard = (guestCheckoutZipcode?.enabled && (user?.guest_id ? guestCheckoutZipcode?.required_with_guest : guestCheckoutZipcode?.required)) && paymethodSelected?.gateway === 'stripe' && paymethodSelected?.data?.card && !paymethodSelected?.data?.card?.zipcode
|
|
223
|
-
|
|
224
|
-
const isDisabledButtonPlace = loading || !cart?.valid || (!paymethodSelected && cart?.balance > 0) ||
|
|
225
|
-
placing || errorCash || subtotalWithTaxes < cart?.minimum ||
|
|
226
|
-
(cardsMethods.includes(paymethodSelected?.gateway) && cardList?.cards?.length === 0) ||
|
|
227
|
-
(validateCommentsCartField) ||
|
|
228
|
-
(validateDriverTipField && !isGiftCardCart) ||
|
|
229
|
-
(validateZipcodeCard) ||
|
|
230
|
-
(methodsPay.includes(paymethodSelected?.gateway) && (!methodPaySupported.enabled || methodPaySupported.loading)) ||
|
|
231
|
-
validateCommentsCartField ||
|
|
232
|
-
validateDriverTipField ||
|
|
233
|
-
validateCouponField ||
|
|
234
|
-
validateZipcodeCard ||
|
|
235
|
-
(!userHasCards && cardsPaymethods.includes(paymethodSelected?.gateway)) ||
|
|
236
|
-
(!isGuestCheckoutEnabled && !!user?.guest_id)
|
|
237
|
-
|
|
238
|
-
const driverTipsOptions = typeof configs?.driver_tip_options?.value === 'string'
|
|
239
|
-
? JSON.parse(configs?.driver_tip_options?.value) || []
|
|
240
|
-
: configs?.driver_tip_options?.value || []
|
|
241
|
-
const driverTipsField = !cartState.loading && cart && cart?.business_id && (options.type === 1 || allowDriverTipPickup) && cart?.status !== 2 && (guestCheckoutDriveTip?.enabled) && driverTipsOptions.length > 0
|
|
242
|
-
|
|
243
|
-
const configTypes = configs?.order_types_allowed?.value.split('|').map((value: any) => Number(value)) || []
|
|
244
|
-
|
|
245
|
-
const cartsWithProducts = carts && Object.values(carts).filter((cart: any) => cart.products.length) || null
|
|
246
|
-
|
|
247
|
-
const isSandboxCredomatic = configs?.credomatic_integration_sandbox?.value === '1'
|
|
248
|
-
const credomaticKeyId = isSandboxCredomatic ? configs?.credomatic_integration_public_sandbox_key?.value : configs?.credomatic_integration_public_production_key?.value
|
|
249
|
-
const credomaticUrl = `https://integrations.ordering.co/credomatic/front/auth_mobile.html?title=${t('CREDOMATIC_PAYMENT', 'Credomatic payment')}&body=${t('CREDOMATIC_PROCESSING', 'Processing transaction')}`
|
|
250
|
-
const deliveryOptions = instructionsOptions?.result && instructionsOptions?.result?.filter((option: any) => option?.enabled)?.map((option: any) => {
|
|
251
|
-
return {
|
|
252
|
-
value: option?.id, key: option?.id, label: t(option?.name.toUpperCase().replace(/\s/g, '_'), option?.name)
|
|
253
|
-
}
|
|
254
|
-
})
|
|
255
|
-
|
|
256
|
-
const handleMomentClick = () => {
|
|
257
|
-
if (isPreOrder) {
|
|
258
|
-
navigation.navigate('MomentOption', { business: businessDetails?.business })
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
const vibrateApp = (impact?: HapticFeedbackTypes) => {
|
|
263
|
-
const options = {
|
|
264
|
-
enableVibrateFallback: true,
|
|
265
|
-
ignoreAndroidSystemSettings: false
|
|
266
|
-
};
|
|
267
|
-
ReactNativeHapticFeedback.trigger(impact || "impactLight", options);
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
const handleSuccessSignup = async (user: any) => {
|
|
271
|
-
await login({
|
|
272
|
-
user,
|
|
273
|
-
token: user?.session?.access_token
|
|
274
|
-
})
|
|
275
|
-
setOpenModal({ ...openModal, signup: false, isGuest: false })
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
const handleSuccessLogin = (user: any) => {
|
|
279
|
-
if (user) setOpenModal({ ...openModal, login: false })
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
const handleOpenGuestSignup = () => {
|
|
283
|
-
setOpenModal({ ...openModal, signup: true, isGuest: true })
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
const handlePlaceOrder = (confirmPayment: any, forcePlace: boolean = false) => {
|
|
287
|
-
if (stripePaymethods.includes(paymethodSelected?.gateway) && user?.guest_id) {
|
|
288
|
-
setOpenModal({ ...openModal, signup: true, isGuest: true })
|
|
289
|
-
return
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
if (!userErrors.length && (!requiredFields?.length) || forcePlace) {
|
|
293
|
-
vibrateApp()
|
|
294
|
-
handlerClickPlaceOrder && handlerClickPlaceOrder(null, { isNative: true }, confirmPayment, NativeStripeSdk?.dismissPlatformPay)
|
|
295
|
-
return
|
|
296
|
-
}
|
|
297
|
-
if (requiredFields?.length) {
|
|
298
|
-
setIsOpen(true)
|
|
299
|
-
return
|
|
300
|
-
}
|
|
301
|
-
let stringError = ''
|
|
302
|
-
Object.values(userErrors).map((item: any, i: number) => {
|
|
303
|
-
stringError += (i + 1) === userErrors.length ? `- ${item?.message || item}` : `- ${item?.message || item}\n`
|
|
304
|
-
})
|
|
305
|
-
showToast(ToastType.Error, stringError)
|
|
306
|
-
setIsUserDetailsEdit(true)
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
const handlePlaceOrderAsGuest = () => {
|
|
310
|
-
setIsOpen(false)
|
|
311
|
-
handlerClickPlaceOrder && handlerClickPlaceOrder()
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
const handlePaymentMethodClick = (paymethod: any) => {
|
|
315
|
-
setShowGateway({ closedByUser: false, open: true })
|
|
316
|
-
setWebviewPaymethod(paymethod)
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
const onFailPaypal = async () => {
|
|
320
|
-
if (showGateway.closedByUser === true) {
|
|
321
|
-
await confirmCart(cart.uuid)
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
const changeDeliveryOption = (option: any) => {
|
|
325
|
-
handleChangeDeliveryOption(option)
|
|
326
|
-
setIsDeliveryOptionModalVisible(false)
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
const checkValidationFields = () => {
|
|
330
|
-
setUserErrors([])
|
|
331
|
-
const errors: Array<string> = []
|
|
332
|
-
const userSelected = user
|
|
333
|
-
const _requiredFields: Array<string> = []
|
|
334
|
-
Object.values(checkoutFieldsState?.fields).map((field: any) => {
|
|
335
|
-
if (options?.type === field?.order_type_id &&
|
|
336
|
-
field?.enabled &&
|
|
337
|
-
field?.required &&
|
|
338
|
-
!notFields.includes(field?.validation_field?.code)
|
|
339
|
-
) {
|
|
340
|
-
if (userSelected && !userSelected[field?.validation_field?.code]) {
|
|
341
|
-
_requiredFields.push(field?.validation_field?.code)
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
|
-
})
|
|
345
|
-
const mobilePhoneField: any = Object.values(checkoutFieldsState?.fields)?.find((field: any) => field?.order_type_id === options?.type && field?.validation_field?.code === 'mobile_phone')
|
|
346
|
-
if (
|
|
347
|
-
userSelected &&
|
|
348
|
-
!userSelected?.cellphone &&
|
|
349
|
-
((mobilePhoneField?.enabled &&
|
|
350
|
-
mobilePhoneField?.required) ||
|
|
351
|
-
configs?.verification_phone_required?.value === '1')
|
|
352
|
-
) {
|
|
353
|
-
_requiredFields.push('cellphone')
|
|
354
|
-
}
|
|
355
|
-
setRequiredFields(_requiredFields)
|
|
356
|
-
|
|
357
|
-
setUserErrors(errors)
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
const checkGuestValidationFields = () => {
|
|
361
|
-
const userSelected = user
|
|
362
|
-
const _requiredFields = checkoutFieldsState?.fields
|
|
363
|
-
.filter((field: any) => (field?.order_type_id === options?.type) && field?.enabled && field?.required_with_guest &&
|
|
364
|
-
!notFields.includes(field?.validation_field?.code) &&
|
|
365
|
-
field?.validation_field?.code !== 'email' &&
|
|
366
|
-
userSelected && !userSelected[field?.validation_field?.code])
|
|
367
|
-
const requiredFieldsCode = _requiredFields.map((item: any) => item?.validation_field?.code)
|
|
368
|
-
const guestCheckoutCellPhone = checkoutFieldsState?.fields?.find((field: any) => field.order_type_id === options?.type && field?.validation_field?.code === 'mobile_phone')
|
|
369
|
-
const guestCheckoutEmail = checkoutFieldsState?.fields?.find((field: any) => field.order_type_id === options?.type && field?.validation_field?.code === 'email')
|
|
370
|
-
if (
|
|
371
|
-
userSelected &&
|
|
372
|
-
!userSelected?.guest_cellphone &&
|
|
373
|
-
((guestCheckoutCellPhone?.enabled &&
|
|
374
|
-
guestCheckoutCellPhone?.required_with_guest) ||
|
|
375
|
-
configs?.verification_phone_required?.value === '1')
|
|
376
|
-
) {
|
|
377
|
-
requiredFieldsCode.push('cellphone')
|
|
378
|
-
}
|
|
379
|
-
if (
|
|
380
|
-
userSelected &&
|
|
381
|
-
!userSelected?.guest_email &&
|
|
382
|
-
guestCheckoutEmail?.enabled &&
|
|
383
|
-
guestCheckoutEmail?.required_with_guest
|
|
384
|
-
) {
|
|
385
|
-
requiredFieldsCode.push('email')
|
|
386
|
-
}
|
|
387
|
-
setRequiredFields(requiredFieldsCode)
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
const togglePhoneUpdate = (val: boolean) => {
|
|
391
|
-
setPhoneUpdate(val)
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
const handleScroll = ({ nativeEvent: { contentOffset } }: any) => {
|
|
395
|
-
setShowTitle(contentOffset.y > 30)
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
const handleRedirect = () => {
|
|
399
|
-
props.fromProductsList
|
|
400
|
-
? navigation?.goBack()
|
|
401
|
-
: onNavigationRedirect('BottomTab', { screen: 'Cart' }, !props.fromMulti)
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
useEffect(() => {
|
|
405
|
-
if (checkoutFieldsState?.loading || userLoading) return
|
|
406
|
-
if (user?.guest_id) {
|
|
407
|
-
checkGuestValidationFields()
|
|
408
|
-
} else {
|
|
409
|
-
checkValidationFields()
|
|
410
|
-
}
|
|
411
|
-
}, [checkoutFieldsState, user, options?.type])
|
|
412
|
-
|
|
413
|
-
useEffect(() => {
|
|
414
|
-
if (errors) {
|
|
415
|
-
const errorText = manageErrorsToShow(errors)
|
|
416
|
-
showToast(ToastType.Error, errorText)
|
|
417
|
-
}
|
|
418
|
-
}, [errors])
|
|
419
|
-
|
|
420
|
-
useEffect(() => {
|
|
421
|
-
if (cart?.products?.length === 0 || !userLoading) return
|
|
422
|
-
if (cart?.business_id !== null) {
|
|
423
|
-
onNavigationRedirect('Business', { store: cart?.business?.slug, header: null, logo: null, fromMulti: props.fromMulti })
|
|
424
|
-
return
|
|
425
|
-
}
|
|
426
|
-
if (isGiftCardCart) {
|
|
427
|
-
onNavigationRedirect('Wallets')
|
|
428
|
-
return
|
|
429
|
-
}
|
|
430
|
-
}, [cart?.products?.length])
|
|
431
|
-
|
|
432
|
-
useEffect(() => {
|
|
433
|
-
if (cart?.products?.length > 0) {
|
|
434
|
-
if (cart?.uuid && cart?.business_id === null) {
|
|
435
|
-
setIsGiftCardCart(true)
|
|
436
|
-
} else {
|
|
437
|
-
setIsGiftCardCart(false)
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
}, [cart?.uuid, cart?.products?.length])
|
|
441
|
-
|
|
442
|
-
useEffect(() => {
|
|
443
|
-
onFailPaypal()
|
|
444
|
-
}, [showGateway.closedByUser])
|
|
445
|
-
|
|
446
|
-
const HeaderTitle = (props: any) => {
|
|
447
|
-
const { text } = props
|
|
448
|
-
return (
|
|
449
|
-
<OText
|
|
450
|
-
size={16}
|
|
451
|
-
lineHeight={24}
|
|
452
|
-
weight={'500'}
|
|
453
|
-
mBottom={props.mb ?? 10}
|
|
454
|
-
color={theme.colors.textNormal}
|
|
455
|
-
>
|
|
456
|
-
{text}
|
|
457
|
-
</OText>
|
|
458
|
-
)
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
useEffect(() => {
|
|
462
|
-
cart && events.emit('checkout_started', cart)
|
|
463
|
-
}, [])
|
|
464
|
-
|
|
465
|
-
useEffect(() => {
|
|
466
|
-
if (cart?.paymethod_data?.gateway === 'credomatic') {
|
|
467
|
-
if (cart?.paymethod_data?.status === 2) {
|
|
468
|
-
setShowGateway({ ...showGateway, open: true })
|
|
469
|
-
} else if (cart?.paymethod_data?.gateway === 'credomatic' && cart?.paymethod_data?.status === 4) {
|
|
470
|
-
setShowGateway({ ...showGateway, open: false })
|
|
471
|
-
}
|
|
472
|
-
}
|
|
473
|
-
}, [cart?.paymethod_data])
|
|
474
|
-
|
|
475
|
-
const onTextLayout = useCallback((e: any) => {
|
|
476
|
-
setLengthMore((e.nativeEvent.lines.length == 3 && e.nativeEvent.lines[2].width > WIDTH_SCREEN * .76) || e.nativeEvent.lines.length > 3)
|
|
477
|
-
}, [])
|
|
478
|
-
|
|
479
|
-
useEffect(() => {
|
|
480
|
-
if (!isFocused) return
|
|
481
|
-
if (!cartState?.loading && (cartState?.error || typeof cartState?.cart === 'string')) {
|
|
482
|
-
const error = cartState?.error || typeof cartState.cart === 'string' && cartState.cart
|
|
483
|
-
if (error) {
|
|
484
|
-
showToast(ToastType.Error, cartState?.error || cartState.cart)
|
|
485
|
-
navigation.navigate('BusinessList')
|
|
486
|
-
}
|
|
487
|
-
}
|
|
488
|
-
}, [cartState?.error, cartState?.cart, cartState?.loading, isFocused])
|
|
489
|
-
|
|
490
|
-
useEffect(() => {
|
|
491
|
-
const onBackFunction = () => {
|
|
492
|
-
if (webviewPaymethod?.gateway === 'paypal' && showGateway.open) {
|
|
493
|
-
setShowGateway({ open: false, closedByUser: true })
|
|
494
|
-
return true
|
|
495
|
-
} else {
|
|
496
|
-
return false
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
BackHandler.addEventListener('hardwareBackPress', onBackFunction)
|
|
500
|
-
return () => {
|
|
501
|
-
BackHandler.removeEventListener('hardwareBackPress', onBackFunction)
|
|
502
|
-
}
|
|
503
|
-
}, [BackHandler, webviewPaymethod?.gateway, showGateway.open])
|
|
504
|
-
|
|
505
|
-
return (
|
|
506
|
-
<>
|
|
507
|
-
<SafeAreaView style={{ backgroundColor: theme.colors.backgroundPage }}>
|
|
508
|
-
<View style={styles.wrapperNavbar}>
|
|
509
|
-
<TopHeader>
|
|
510
|
-
<TopActions onPress={() => handleRedirect()}>
|
|
511
|
-
<IconAntDesign
|
|
512
|
-
name='arrowleft'
|
|
513
|
-
size={26}
|
|
514
|
-
/>
|
|
515
|
-
</TopActions>
|
|
516
|
-
{showTitle && (
|
|
517
|
-
<OText
|
|
518
|
-
size={16}
|
|
519
|
-
style={{ flex: 1, textAlign: 'center', right: 15 }}
|
|
520
|
-
weight={Platform.OS === 'ios' ? '600' : 'bold'}
|
|
521
|
-
numberOfLines={2}
|
|
522
|
-
ellipsizeMode='tail'
|
|
523
|
-
>
|
|
524
|
-
{t('CHECKOUT', 'Checkout')}
|
|
525
|
-
</OText>
|
|
526
|
-
)}
|
|
527
|
-
</TopHeader>
|
|
528
|
-
</View>
|
|
529
|
-
</SafeAreaView>
|
|
530
|
-
<Container pt={0} forwardRef={containerRef} showsVerticalScrollIndicator={false} noPadding onScroll={handleScroll}>
|
|
531
|
-
<View style={styles.wrapperNavbar}>
|
|
532
|
-
<NavBar
|
|
533
|
-
hideArrowLeft
|
|
534
|
-
title={t('CHECKOUT', 'Checkout')}
|
|
535
|
-
titleAlign={'center'}
|
|
536
|
-
onActionLeft={() => handleRedirect()}
|
|
537
|
-
showCall={false}
|
|
538
|
-
btnStyle={{ paddingLeft: 0, paddingTop: Platform.OS == 'ios' ? 0 : 2 }}
|
|
539
|
-
titleWrapStyle={{ paddingHorizontal: 0 }}
|
|
540
|
-
titleStyle={{ marginRight: 0, marginLeft: 0 }}
|
|
541
|
-
style={{ marginTop: 20 }}
|
|
542
|
-
/>
|
|
543
|
-
</View>
|
|
544
|
-
<ChContainer style={styles.pagePadding}>
|
|
545
|
-
{!isGiftCardCart && (
|
|
546
|
-
<ChSection style={{ paddingTop: 0 }}>
|
|
547
|
-
<ChHeader>
|
|
548
|
-
<CHMomentWrapper isCustomColor={isChewLayout} onPress={() => navigation.navigate('OrderTypes', { configTypes: configTypes })}>
|
|
549
|
-
<OText
|
|
550
|
-
size={12}
|
|
551
|
-
numberOfLines={1}
|
|
552
|
-
ellipsizeMode={'tail'}
|
|
553
|
-
color={theme.colors?.[isChewLayout ? 'white' : 'textSecondary']}
|
|
554
|
-
>
|
|
555
|
-
{t(getTypesText(options?.type || 1), 'Delivery')}
|
|
556
|
-
</OText>
|
|
557
|
-
<OIcon
|
|
558
|
-
src={theme.images.general.arrow_down}
|
|
559
|
-
width={10}
|
|
560
|
-
style={{ marginStart: 8 }}
|
|
561
|
-
{...(isChewLayout && { color: 'white' })}
|
|
562
|
-
/>
|
|
563
|
-
</CHMomentWrapper>
|
|
564
|
-
<CHMomentWrapper
|
|
565
|
-
onPress={() => handleMomentClick()}
|
|
566
|
-
disabled={loading}
|
|
567
|
-
>
|
|
568
|
-
<OText size={12} numberOfLines={1} ellipsizeMode='tail' color={theme.colors.textSecondary}>
|
|
569
|
-
{options?.moment
|
|
570
|
-
? parseDate(options?.moment, { outputFormat: configs?.dates_moment_format?.value })
|
|
571
|
-
: t('ASAP_ABBREVIATION', 'ASAP')}
|
|
572
|
-
</OText>
|
|
573
|
-
{isPreOrder && (
|
|
574
|
-
<OIcon
|
|
575
|
-
src={theme.images.general.arrow_down}
|
|
576
|
-
width={10}
|
|
577
|
-
style={{ marginStart: 8 }}
|
|
578
|
-
/>
|
|
579
|
-
)}
|
|
580
|
-
</CHMomentWrapper>
|
|
581
|
-
</ChHeader>
|
|
582
|
-
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginTop: 18, marginHorizontal: -40 }} />
|
|
583
|
-
</ChSection>
|
|
584
|
-
)}
|
|
585
|
-
|
|
586
|
-
{!isGiftCardCart && !hideBusinessDetails && (
|
|
587
|
-
<ChSection>
|
|
588
|
-
<ChBusinessDetails>
|
|
589
|
-
{
|
|
590
|
-
(businessDetails?.loading || cartState.loading || !businessDetails?.business || Object.values(businessDetails?.business).length === 0) &&
|
|
591
|
-
!businessDetails?.error &&
|
|
592
|
-
(
|
|
593
|
-
<Placeholder Animation={Fade}>
|
|
594
|
-
<PlaceholderLine height={20} />
|
|
595
|
-
<PlaceholderLine height={12} />
|
|
596
|
-
<PlaceholderLine height={12} />
|
|
597
|
-
<PlaceholderLine height={12} style={{ marginBottom: 20 }} />
|
|
598
|
-
</Placeholder>
|
|
599
|
-
)}
|
|
600
|
-
{
|
|
601
|
-
!cartState.loading &&
|
|
602
|
-
businessDetails?.business &&
|
|
603
|
-
Object.values(businessDetails?.business).length > 0 &&
|
|
604
|
-
(
|
|
605
|
-
<>
|
|
606
|
-
<HeaderTitle text={t('BUSINESS_DETAILS', 'Business Details')} />
|
|
607
|
-
<View>
|
|
608
|
-
<OText size={12} lineHeight={18} weight={'400'}>
|
|
609
|
-
{businessDetails?.business?.name}
|
|
610
|
-
</OText>
|
|
611
|
-
<OText size={12} lineHeight={18} weight={'400'}>
|
|
612
|
-
{businessDetails?.business?.email}
|
|
613
|
-
</OText>
|
|
614
|
-
<OText size={12} lineHeight={18} weight={'400'}>
|
|
615
|
-
{businessDetails?.business?.cellphone}
|
|
616
|
-
</OText>
|
|
617
|
-
{!hideBusinessAddress && (
|
|
618
|
-
<OText size={12} lineHeight={18} weight={'400'}>
|
|
619
|
-
{businessDetails?.business?.address}
|
|
620
|
-
</OText>
|
|
621
|
-
)}
|
|
622
|
-
{businessDetails?.business?.address_notes && (
|
|
623
|
-
<>
|
|
624
|
-
<OText
|
|
625
|
-
size={12}
|
|
626
|
-
lineHeight={18}
|
|
627
|
-
numberOfLines={isReadMore ? 20 : 3}
|
|
628
|
-
onTextLayout={onTextLayout}
|
|
629
|
-
>
|
|
630
|
-
{businessDetails?.business?.address_notes}
|
|
631
|
-
</OText>
|
|
632
|
-
{lengthMore && (
|
|
633
|
-
<TouchableOpacity
|
|
634
|
-
onPress={() => setIsReadMore(!isReadMore)}
|
|
635
|
-
>
|
|
636
|
-
<OText size={12} color={theme.colors.primary}>{isReadMore ? t('SHOW_LESS', 'Show less') : t('READ_MORE', 'Read more')}</OText>
|
|
637
|
-
</TouchableOpacity>
|
|
638
|
-
)}
|
|
639
|
-
</>
|
|
640
|
-
)}
|
|
641
|
-
</View>
|
|
642
|
-
</>
|
|
643
|
-
)}
|
|
644
|
-
{businessDetails?.error && businessDetails?.error?.length > 0 && (
|
|
645
|
-
<View>
|
|
646
|
-
<HeaderTitle text={t('BUSINESS_DETAILS', 'Business Details')} />
|
|
647
|
-
<NotFoundSource
|
|
648
|
-
content={businessDetails?.error[0]?.message || businessDetails?.error[0]}
|
|
649
|
-
/>
|
|
650
|
-
</View>
|
|
651
|
-
)}
|
|
652
|
-
</ChBusinessDetails>
|
|
653
|
-
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginHorizontal: -40 }} />
|
|
654
|
-
</ChSection>
|
|
655
|
-
)}
|
|
656
|
-
{!hideCustomerDetails && (
|
|
657
|
-
|
|
658
|
-
<ChSection>
|
|
659
|
-
<ChUserDetails>
|
|
660
|
-
{cartState.loading ? (
|
|
661
|
-
<Placeholder Animation={Fade}>
|
|
662
|
-
<PlaceholderLine height={20} />
|
|
663
|
-
<PlaceholderLine height={12} />
|
|
664
|
-
<PlaceholderLine height={12} />
|
|
665
|
-
<PlaceholderLine height={12} style={{ marginBottom: 20 }} />
|
|
666
|
-
</Placeholder>
|
|
667
|
-
) : (
|
|
668
|
-
(user?.guest_id && !allowedGuest) ? (
|
|
669
|
-
<View>
|
|
670
|
-
<HeaderTitle text={t('CUSTOMER_DETAILS', 'Customer details')} />
|
|
671
|
-
<OButton
|
|
672
|
-
text={t('SIGN_UP', 'Sign up')}
|
|
673
|
-
style={{ borderRadius: 7.6, marginTop: 20 }}
|
|
674
|
-
onClick={() => setOpenModal({ ...openModal, signup: true })}
|
|
675
|
-
/>
|
|
676
|
-
<OButton
|
|
677
|
-
text={t('LOGIN', 'Login')}
|
|
678
|
-
style={{ borderRadius: 7.6, marginTop: 20 }}
|
|
679
|
-
onClick={() => setOpenModal({ ...openModal, login: true })}
|
|
680
|
-
/>
|
|
681
|
-
{isGuestCheckoutEnabled && (
|
|
682
|
-
<OButton
|
|
683
|
-
text={t('CONTINUE_AS_GUEST', 'Continue as guest')}
|
|
684
|
-
textStyle={{ color: theme.colors.black }}
|
|
685
|
-
bgColor={theme.colors.white}
|
|
686
|
-
borderColor={theme.colors.black}
|
|
687
|
-
style={{ borderRadius: 7.6, marginTop: 20 }}
|
|
688
|
-
onClick={() => setAllowedGuest(true)}
|
|
689
|
-
/>
|
|
690
|
-
)}
|
|
691
|
-
</View>
|
|
692
|
-
) : (
|
|
693
|
-
<UserDetails
|
|
694
|
-
isUserDetailsEdit={isUserDetailsEdit}
|
|
695
|
-
HeaderTitle={<HeaderTitle text={t('CUSTOMER_DETAILS', 'Customer Details')} mb={0} />}
|
|
696
|
-
cartStatus={cart?.status}
|
|
697
|
-
businessId={cart?.business_id}
|
|
698
|
-
useValidationFields
|
|
699
|
-
useDefualtSessionManager
|
|
700
|
-
useSessionUser
|
|
701
|
-
isCheckout
|
|
702
|
-
phoneUpdate={phoneUpdate}
|
|
703
|
-
togglePhoneUpdate={togglePhoneUpdate}
|
|
704
|
-
isOrderTypeValidationField
|
|
705
|
-
requiredFields={requiredFields}
|
|
706
|
-
checkoutFields={checkoutFields}
|
|
707
|
-
/>
|
|
708
|
-
)
|
|
709
|
-
)}
|
|
710
|
-
</ChUserDetails>
|
|
711
|
-
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginHorizontal: -40 }} />
|
|
712
|
-
</ChSection>
|
|
713
|
-
)}
|
|
714
|
-
|
|
715
|
-
{options?.type === 1 && !isGiftCardCart && (
|
|
716
|
-
<DeliveryOptionsContainer>
|
|
717
|
-
{cartState.loading || deliveryOptionSelected === undefined ? (
|
|
718
|
-
<View style={{ height: 110 }}>
|
|
719
|
-
<Placeholder Animation={Fade}>
|
|
720
|
-
<PlaceholderLine height={20} />
|
|
721
|
-
<PlaceholderLine height={40} />
|
|
722
|
-
</Placeholder>
|
|
723
|
-
</View>
|
|
724
|
-
) : (
|
|
725
|
-
<ChSection>
|
|
726
|
-
<HeaderTitle text={t('DELIVERY_OPTIONS', 'Delivery options')} />
|
|
727
|
-
<View
|
|
728
|
-
style={{
|
|
729
|
-
backgroundColor: theme.colors.inputDisabled,
|
|
730
|
-
borderRadius: 7.5,
|
|
731
|
-
marginBottom: 20,
|
|
732
|
-
flex: 1
|
|
733
|
-
}}>
|
|
734
|
-
<Picker
|
|
735
|
-
countryCode={undefined}
|
|
736
|
-
visible={isDeliveryOptionModalVisible}
|
|
737
|
-
onClose={() => setIsDeliveryOptionModalVisible(false)}
|
|
738
|
-
withCountryNameButton
|
|
739
|
-
renderFlagButton={() => (
|
|
740
|
-
<TouchableOpacity onPress={() => setIsDeliveryOptionModalVisible(true)}>
|
|
741
|
-
<DeliveryOptionItem backgroundColor={theme?.colors?.inputDisabled}>
|
|
742
|
-
<OText
|
|
743
|
-
size={14}
|
|
744
|
-
>
|
|
745
|
-
{deliveryOptions.find((option: any) => option.value === deliveryOptionSelected)?.label}
|
|
746
|
-
</OText>
|
|
747
|
-
<MaterialIcons name='keyboard-arrow-down' style={styles.icon} />
|
|
748
|
-
</DeliveryOptionItem>
|
|
749
|
-
</TouchableOpacity>
|
|
750
|
-
)}
|
|
751
|
-
flatListProps={{
|
|
752
|
-
keyExtractor: (item: any) => item.value,
|
|
753
|
-
data: deliveryOptions || [],
|
|
754
|
-
renderItem: ({ item }: any) => (
|
|
755
|
-
<TouchableOpacity
|
|
756
|
-
onPress={() => !!cart?.uuid && changeDeliveryOption(item.value)}
|
|
757
|
-
disabled={
|
|
758
|
-
deliveryOptionSelected === item.value
|
|
759
|
-
}
|
|
760
|
-
>
|
|
761
|
-
<DeliveryOptionItem backgroundColor={deliveryOptionSelected === item.value ? theme.colors.inputDisabled : 'white'}>
|
|
762
|
-
<OText>
|
|
763
|
-
{item.label}
|
|
764
|
-
</OText>
|
|
765
|
-
</DeliveryOptionItem>
|
|
766
|
-
</TouchableOpacity>
|
|
767
|
-
)
|
|
768
|
-
}}
|
|
769
|
-
/>
|
|
770
|
-
</View>
|
|
771
|
-
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginHorizontal: -40 }} />
|
|
772
|
-
</ChSection>
|
|
773
|
-
)}
|
|
774
|
-
|
|
775
|
-
</DeliveryOptionsContainer>
|
|
776
|
-
)}
|
|
777
|
-
|
|
778
|
-
{!cartState.loading && (cart?.status === 2 || cart?.status === 4) && (
|
|
779
|
-
<ChSection style={{ paddingBottom: 20 }}>
|
|
780
|
-
<ChErrors>
|
|
781
|
-
{!cartState.loading && cart?.status === 2 && (
|
|
782
|
-
<OText
|
|
783
|
-
style={{ textAlign: 'center' }}
|
|
784
|
-
color={theme.colors.error}
|
|
785
|
-
size={17}
|
|
786
|
-
>
|
|
787
|
-
{t('CART_STATUS_PENDING_MESSAGE_APP', 'Your order is being processed, please wait a little more. if you\'ve been waiting too long, please reload the app')}
|
|
788
|
-
</OText>
|
|
789
|
-
)}
|
|
790
|
-
</ChErrors>
|
|
791
|
-
</ChSection>
|
|
792
|
-
)}
|
|
793
|
-
|
|
794
|
-
{!isGiftCardCart && !hideBusinessMap && (
|
|
795
|
-
<ChSection>
|
|
796
|
-
<ChAddress>
|
|
797
|
-
{(businessDetails?.loading || cartState.loading) ? (
|
|
798
|
-
<Placeholder Animation={Fade}>
|
|
799
|
-
<PlaceholderLine height={20} style={{ marginBottom: 50 }} />
|
|
800
|
-
<PlaceholderLine height={100} />
|
|
801
|
-
</Placeholder>
|
|
802
|
-
) : (
|
|
803
|
-
<AddressDetails
|
|
804
|
-
cart={cart}
|
|
805
|
-
navigation={navigation}
|
|
806
|
-
location={options?.address?.location}
|
|
807
|
-
businessLogo={businessDetails?.business?.logo}
|
|
808
|
-
isCartPending={cart?.status === 2}
|
|
809
|
-
uuid={cartUuid}
|
|
810
|
-
apiKey={configs?.google_maps_api_key?.value}
|
|
811
|
-
mapConfigs={mapConfigs}
|
|
812
|
-
HeaderTitle={<HeaderTitle text={t('DELIVERY_ADDRESS', 'Delivery address')} mb={0} />}
|
|
813
|
-
/>
|
|
814
|
-
)}
|
|
815
|
-
</ChAddress>
|
|
816
|
-
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginTop: 13, marginHorizontal: -40 }} />
|
|
817
|
-
</ChSection>
|
|
818
|
-
)}
|
|
819
|
-
|
|
820
|
-
{driverTipsField &&
|
|
821
|
-
(
|
|
822
|
-
<ChSection>
|
|
823
|
-
<ChDriverTips>
|
|
824
|
-
<HeaderTitle text={t('DRIVER_TIPS', 'Driver Tips')} mb={0} />
|
|
825
|
-
<DriverTips
|
|
826
|
-
uuid={cartUuid}
|
|
827
|
-
businessId={cart?.business_id}
|
|
828
|
-
driverTipsOptions={!driverTipsOptions.includes(0) ? [0, ...driverTipsOptions] : driverTipsOptions}
|
|
829
|
-
isFixedPrice={parseInt(configs?.driver_tip_type?.value, 10) === 1}
|
|
830
|
-
isDriverTipUseCustom={!!parseInt(configs?.driver_tip_use_custom?.value, 10)}
|
|
831
|
-
driverTip={parseInt(configs?.driver_tip_type?.value, 10) === 1
|
|
832
|
-
? cart?.driver_tip
|
|
833
|
-
: cart?.driver_tip_rate}
|
|
834
|
-
useOrderContext
|
|
835
|
-
cart={cart}
|
|
836
|
-
/>
|
|
837
|
-
</ChDriverTips>
|
|
838
|
-
</ChSection>
|
|
839
|
-
)}
|
|
840
|
-
|
|
841
|
-
{!cartState.loading && cart && cart?.status !== 2 && cart?.valid && (
|
|
842
|
-
<ChSection>
|
|
843
|
-
<ChPaymethods>
|
|
844
|
-
<HeaderTitle text={t('PAYMENT_METHOD', 'Payment Method')} mb={0} />
|
|
845
|
-
{!cartState.loading && cart?.status === 4 && (
|
|
846
|
-
<OText
|
|
847
|
-
style={{ textAlign: 'center', marginTop: 20 }}
|
|
848
|
-
color={theme.colors.error}
|
|
849
|
-
size={17}
|
|
850
|
-
>
|
|
851
|
-
{t('CART_STATUS_CANCEL_MESSAGE', 'The payment has not been successful, please try again')}
|
|
852
|
-
</OText>
|
|
853
|
-
)}
|
|
854
|
-
<PaymentOptions
|
|
855
|
-
cart={cart}
|
|
856
|
-
isDisabled={cart?.status === 2}
|
|
857
|
-
businessId={!isGiftCardCart ? businessDetails?.business?.id : -1}
|
|
858
|
-
isLoading={!isGiftCardCart ? businessDetails.loading : false}
|
|
859
|
-
paymethods={businessDetails?.business?.paymethods}
|
|
860
|
-
onPaymentChange={handlePaymethodChange}
|
|
861
|
-
errorCash={errorCash}
|
|
862
|
-
setErrorCash={setErrorCash}
|
|
863
|
-
onNavigationRedirect={onNavigationRedirect}
|
|
864
|
-
paySelected={paymethodSelected}
|
|
865
|
-
handlePaymentMethodClickCustom={handlePaymentMethodClick}
|
|
866
|
-
handlePlaceOrder={handlePlaceOrder}
|
|
867
|
-
merchantId={merchantId}
|
|
868
|
-
urlscheme={urlscheme}
|
|
869
|
-
androidAppId={androidAppId}
|
|
870
|
-
setMethodPaySupported={setMethodPaySupported}
|
|
871
|
-
methodPaySupported={methodPaySupported}
|
|
872
|
-
placeByMethodPay={placeByMethodPay}
|
|
873
|
-
setPlaceByMethodPay={setPlaceByMethodPay}
|
|
874
|
-
cardList={cardList}
|
|
875
|
-
setCardList={setCardList}
|
|
876
|
-
requiredFields={requiredFields}
|
|
877
|
-
openUserModal={setIsOpen}
|
|
878
|
-
paymethodClicked={paymethodClicked}
|
|
879
|
-
setPaymethodClicked={setPaymethodClicked}
|
|
880
|
-
setUserHasCards={setUserHasCards}
|
|
881
|
-
handleOpenGuestSignup={handleOpenGuestSignup}
|
|
882
|
-
guestDisabledError={(!isGuestCheckoutEnabled && !!user?.guest_id)}
|
|
883
|
-
/>
|
|
884
|
-
</ChPaymethods>
|
|
885
|
-
</ChSection>
|
|
886
|
-
)}
|
|
887
|
-
|
|
888
|
-
{!cartState.loading && cart && isWalletEnabled && businessDetails?.business?.configs && (
|
|
889
|
-
<WalletPaymentOptionContainer>
|
|
890
|
-
<PaymentOptionWallet
|
|
891
|
-
cart={cart}
|
|
892
|
-
loyaltyPlansState={loyaltyPlansState}
|
|
893
|
-
businessId={cart?.business_id}
|
|
894
|
-
businessConfigs={businessDetails?.business?.configs}
|
|
895
|
-
/>
|
|
896
|
-
</WalletPaymentOptionContainer>
|
|
897
|
-
)}
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
{!cartState.loading && placeSpotsEnabled && !isGiftCardCart && (
|
|
901
|
-
<>
|
|
902
|
-
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginTop: 30, marginHorizontal: -40 }} />
|
|
903
|
-
<PlaceSpot
|
|
904
|
-
isCheckout
|
|
905
|
-
isInputMode
|
|
906
|
-
cart={cart}
|
|
907
|
-
spotNumberDefault={cartState?.cart?.spot_number ?? cart?.spot_number}
|
|
908
|
-
setPlaceSpotNumber={setPlaceSpotNumber}
|
|
909
|
-
vehicleDefault={cart?.vehicle}
|
|
910
|
-
/>
|
|
911
|
-
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginHorizontal: -40 }} />
|
|
912
|
-
</>
|
|
913
|
-
)}
|
|
914
|
-
|
|
915
|
-
{!cartState.loading && cart && (
|
|
916
|
-
<ChSection>
|
|
917
|
-
<ChCart>
|
|
918
|
-
{cartsWithProducts?.length > 0 && cart?.products?.length === 0 ? (
|
|
919
|
-
<NotFoundSource
|
|
920
|
-
content={t('NOT_FOUND_CARTS', 'Sorry, You don\'t seem to have any carts.')}
|
|
921
|
-
btnTitle={t('SEARCH_REDIRECT', 'Go to Businesses')}
|
|
922
|
-
/>
|
|
923
|
-
) : (
|
|
924
|
-
<>
|
|
925
|
-
<CartHeader>
|
|
926
|
-
<HeaderTitle text={t('MOBILE_FRONT_YOUR_ORDER', 'Your order')} mb={0} />
|
|
927
|
-
{!isGiftCardCart && (
|
|
928
|
-
<TouchableOpacity
|
|
929
|
-
onPress={() => onNavigationRedirect('Business', { store: cart?.business?.slug })}
|
|
930
|
-
>
|
|
931
|
-
<OText
|
|
932
|
-
size={12}
|
|
933
|
-
lineHeight={15}
|
|
934
|
-
color={theme.colors.primary}
|
|
935
|
-
style={{ textDecorationLine: 'underline' }}
|
|
936
|
-
>
|
|
937
|
-
{t('ADD_PRODUCTS', 'Add products')}
|
|
938
|
-
</OText>
|
|
939
|
-
</TouchableOpacity>
|
|
940
|
-
)}
|
|
941
|
-
</CartHeader>
|
|
942
|
-
{isBusinessChangeEnabled && (
|
|
943
|
-
<TouchableOpacity
|
|
944
|
-
onPress={() => setOpenChangeStore(true)}
|
|
945
|
-
style={{ alignSelf: 'flex-start' }}
|
|
946
|
-
>
|
|
947
|
-
<OText
|
|
948
|
-
size={12}
|
|
949
|
-
lineHeight={18}
|
|
950
|
-
color={theme.colors.primary}
|
|
951
|
-
style={{ textDecorationLine: 'underline' }}
|
|
952
|
-
>
|
|
953
|
-
{t('CHANGE_STORE', 'Change store')}
|
|
954
|
-
</OText>
|
|
955
|
-
</TouchableOpacity>
|
|
956
|
-
)}
|
|
957
|
-
<OrderSummary
|
|
958
|
-
cart={cart}
|
|
959
|
-
isCartPending={cart?.status === 2}
|
|
960
|
-
onNavigationRedirect={onNavigationRedirect}
|
|
961
|
-
commentDelayTime={commentDelayTime}
|
|
962
|
-
placeSpotTypes={placeSpotTypes}
|
|
963
|
-
businessConfigs={businessConfigs}
|
|
964
|
-
maxDate={maxDate}
|
|
965
|
-
loyaltyRewardRate={
|
|
966
|
-
creditPointPlanOnBusiness?.accumulation_rate ??
|
|
967
|
-
(!!creditPointPlanOnBusiness && creditPointPlan?.accumulation_rate) ?? 0
|
|
968
|
-
}
|
|
969
|
-
hideCommentsByValidationCheckout={!guestCheckoutComment?.enabled}
|
|
970
|
-
hideCouponByValidationCheckout={!guestCheckoutCoupon?.enabled}
|
|
971
|
-
/>
|
|
972
|
-
</>
|
|
973
|
-
)}
|
|
974
|
-
</ChCart>
|
|
975
|
-
</ChSection>
|
|
976
|
-
)}
|
|
977
|
-
|
|
978
|
-
{!cartState.loading && cart && (
|
|
979
|
-
<View>
|
|
980
|
-
<ChErrors style={{ marginBottom: Platform.OS === 'ios' ? 35 : 10 }}>
|
|
981
|
-
{!cart?.valid_address && cart?.status !== 2 && (
|
|
982
|
-
<OText
|
|
983
|
-
color={theme.colors.error}
|
|
984
|
-
size={12}
|
|
985
|
-
>
|
|
986
|
-
{t('INVALID_CART_ADDRESS', 'Selected address is invalid, please select a closer address.')}
|
|
987
|
-
</OText>
|
|
988
|
-
)}
|
|
989
|
-
|
|
990
|
-
{(!paymethodSelected && cart?.balance > 0) && cart?.status !== 2 && cart?.valid && (
|
|
991
|
-
<OText
|
|
992
|
-
color={theme.colors.error}
|
|
993
|
-
size={12}
|
|
994
|
-
>
|
|
995
|
-
{t('WARNING_NOT_PAYMENT_SELECTED', 'Please, select a payment method to place order.')}
|
|
996
|
-
</OText>
|
|
997
|
-
)}
|
|
998
|
-
|
|
999
|
-
{!cart?.valid_products && cart?.status !== 2 && cart?.total !== 0 && (
|
|
1000
|
-
<>
|
|
1001
|
-
<OText
|
|
1002
|
-
color={theme.colors.error}
|
|
1003
|
-
size={12}
|
|
1004
|
-
>
|
|
1005
|
-
{t('WARNING_INVALID_PRODUCTS_CHECKOUT', 'To continue with your checkout, please remove from your cart the products that are not available.')}
|
|
1006
|
-
</OText>
|
|
1007
|
-
</>
|
|
1008
|
-
)}
|
|
1009
|
-
{cart?.valid_preorder !== undefined && !cart?.valid_preorder && (
|
|
1010
|
-
<OText
|
|
1011
|
-
color={theme.colors.error}
|
|
1012
|
-
size={12}
|
|
1013
|
-
>
|
|
1014
|
-
{t('INVALID_CART_MOMENT', 'Selected schedule time is invalid, please select a schedule into the business schedule interval.')}
|
|
1015
|
-
</OText>
|
|
1016
|
-
)}
|
|
1017
|
-
{validateDriverTipField && !isGiftCardCart &&
|
|
1018
|
-
(
|
|
1019
|
-
<OText
|
|
1020
|
-
color={theme.colors.error}
|
|
1021
|
-
size={12}
|
|
1022
|
-
>
|
|
1023
|
-
{t('WARNING_INVALID_DRIVER_TIP', 'Driver Tip is required.')}
|
|
1024
|
-
</OText>
|
|
1025
|
-
)}
|
|
1026
|
-
{validateCommentsCartField && (
|
|
1027
|
-
<OText
|
|
1028
|
-
color={theme.colors.error}
|
|
1029
|
-
size={12}
|
|
1030
|
-
>
|
|
1031
|
-
{t('WARNING_INVALID_CART_COMMENTS', 'Cart comments is required.')}
|
|
1032
|
-
</OText>
|
|
1033
|
-
)}
|
|
1034
|
-
|
|
1035
|
-
{validateZipcodeCard && (
|
|
1036
|
-
<OText
|
|
1037
|
-
color={theme.colors.error}
|
|
1038
|
-
size={12}
|
|
1039
|
-
>
|
|
1040
|
-
{t('WARNING_CARD_ZIPCODE_REQUIRED', 'Your card selected has not zipcode')}
|
|
1041
|
-
</OText>
|
|
1042
|
-
)}
|
|
1043
|
-
{validateCouponField &&
|
|
1044
|
-
(
|
|
1045
|
-
<OText
|
|
1046
|
-
color={theme.colors.error}
|
|
1047
|
-
size={12}
|
|
1048
|
-
>
|
|
1049
|
-
{t('WARNING_INVALID_COUPON_FIELD', 'Coupon is required.')}
|
|
1050
|
-
</OText>
|
|
1051
|
-
)}
|
|
1052
|
-
{(!isGuestCheckoutEnabled && !!user?.guest_id) && (
|
|
1053
|
-
<OText
|
|
1054
|
-
color={theme.colors.error}
|
|
1055
|
-
size={12}
|
|
1056
|
-
>
|
|
1057
|
-
{t('LOGIN_SIGN_UP_COMPLETE_ORDER', 'Login/Sign up to complete your order.')}
|
|
1058
|
-
</OText>
|
|
1059
|
-
)}
|
|
1060
|
-
</ChErrors>
|
|
1061
|
-
</View>
|
|
1062
|
-
)}
|
|
1063
|
-
<OModal
|
|
1064
|
-
open={openChangeStore}
|
|
1065
|
-
entireModal
|
|
1066
|
-
customClose
|
|
1067
|
-
onClose={() => setOpenChangeStore(false)}
|
|
1068
|
-
>
|
|
1069
|
-
<CartStoresListing
|
|
1070
|
-
cartuuid={cart?.uuid}
|
|
1071
|
-
onClose={() => setOpenChangeStore(false)}
|
|
1072
|
-
/>
|
|
1073
|
-
</OModal>
|
|
1074
|
-
<OModal
|
|
1075
|
-
open={isOpen}
|
|
1076
|
-
onClose={() => setIsOpen(false)}
|
|
1077
|
-
showToastInsideModal
|
|
1078
|
-
>
|
|
1079
|
-
<View style={styles.detailWrapper}>
|
|
1080
|
-
<UserDetails
|
|
1081
|
-
isUserDetailsEdit
|
|
1082
|
-
cartStatus={cart?.status}
|
|
1083
|
-
businessId={cart?.business_id}
|
|
1084
|
-
useDefualtSessionManager
|
|
1085
|
-
useSessionUser
|
|
1086
|
-
isCheckout
|
|
1087
|
-
isEdit
|
|
1088
|
-
phoneUpdate={phoneUpdate}
|
|
1089
|
-
togglePhoneUpdate={togglePhoneUpdate}
|
|
1090
|
-
isOrderTypeValidationField
|
|
1091
|
-
requiredFields={requiredFields}
|
|
1092
|
-
checkoutFields={checkoutFields}
|
|
1093
|
-
isCheckoutPlace
|
|
1094
|
-
hideUpdateButton
|
|
1095
|
-
handlePlaceOrderAsGuest={handlePlaceOrderAsGuest}
|
|
1096
|
-
onClose={() => {
|
|
1097
|
-
setIsOpen(false)
|
|
1098
|
-
if (paymethodClicked) {
|
|
1099
|
-
setPaymethodClicked({
|
|
1100
|
-
...paymethodClicked,
|
|
1101
|
-
confirmed: true
|
|
1102
|
-
})
|
|
1103
|
-
} else {
|
|
1104
|
-
handlePlaceOrder(null, true)
|
|
1105
|
-
}
|
|
1106
|
-
}}
|
|
1107
|
-
setIsOpen={setIsOpen}
|
|
1108
|
-
/>
|
|
1109
|
-
</View>
|
|
1110
|
-
</OModal>
|
|
1111
|
-
<OModal
|
|
1112
|
-
open={openModal.signup}
|
|
1113
|
-
onClose={() => setOpenModal({ ...openModal, signup: false, isGuest: false })}
|
|
1114
|
-
>
|
|
1115
|
-
<ScrollView style={{ paddingHorizontal: 20, width: '100%' }}>
|
|
1116
|
-
<SignupForm
|
|
1117
|
-
handleSuccessSignup={handleSuccessSignup}
|
|
1118
|
-
isGuest
|
|
1119
|
-
signupButtonText={t('SIGNUP', 'Signup')}
|
|
1120
|
-
useSignupByEmail
|
|
1121
|
-
useChekoutFileds
|
|
1122
|
-
/>
|
|
1123
|
-
</ScrollView>
|
|
1124
|
-
</OModal>
|
|
1125
|
-
<OModal
|
|
1126
|
-
open={openModal.login}
|
|
1127
|
-
onClose={() => setOpenModal({ ...openModal, login: false })}
|
|
1128
|
-
>
|
|
1129
|
-
<ScrollView style={{ paddingHorizontal: 20, width: '100%' }}>
|
|
1130
|
-
<LoginForm
|
|
1131
|
-
handleSuccessLogin={handleSuccessLogin}
|
|
1132
|
-
isGuest
|
|
1133
|
-
loginButtonText={t('LOGIN', 'Login')}
|
|
1134
|
-
loginButtonBackground={theme.colors.primary}
|
|
1135
|
-
/>
|
|
1136
|
-
</ScrollView>
|
|
1137
|
-
</OModal>
|
|
1138
|
-
</ChContainer>
|
|
1139
|
-
</Container>
|
|
1140
|
-
{!cartState.loading && cart && cart?.status !== 2 && (
|
|
1141
|
-
<FloatingButton
|
|
1142
|
-
handleClick={
|
|
1143
|
-
isDisabledButtonPlace
|
|
1144
|
-
? () => vibrateApp()
|
|
1145
|
-
: methodsPay.includes(paymethodSelected?.gateway)
|
|
1146
|
-
? () => setPlaceByMethodPay(true)
|
|
1147
|
-
: () => handlePlaceOrder(null)}
|
|
1148
|
-
isSecondaryBtn={isDisabledButtonPlace}
|
|
1149
|
-
disabled={isDisabledButtonPlace}
|
|
1150
|
-
btnText={subtotalWithTaxes >= cart?.minimum
|
|
1151
|
-
? (
|
|
1152
|
-
placing
|
|
1153
|
-
? t('PLACING', 'Placing')
|
|
1154
|
-
: loading
|
|
1155
|
-
? t('LOADING', 'Loading')
|
|
1156
|
-
: t('PLACE_ORDER', 'Place Order')
|
|
1157
|
-
)
|
|
1158
|
-
: (`${t('MINIMUN_SUBTOTAL_ORDER', 'Minimum subtotal order:')} ${parsePrice(cart?.minimum)}`)
|
|
1159
|
-
}
|
|
1160
|
-
btnRightValueShow
|
|
1161
|
-
btnRightValue={parsePrice(cart?.balance)}
|
|
1162
|
-
iosBottom={30}
|
|
1163
|
-
/>
|
|
1164
|
-
)}
|
|
1165
|
-
{webviewPaymethod?.gateway === 'paypal' && showGateway.open && (
|
|
1166
|
-
<PaymentOptionsWebView
|
|
1167
|
-
onNavigationRedirect={onNavigationRedirect}
|
|
1168
|
-
uri={`${ordering.root}/html/paypal_react_native`}
|
|
1169
|
-
user={user}
|
|
1170
|
-
token={token}
|
|
1171
|
-
cart={cart}
|
|
1172
|
-
currency={currency}
|
|
1173
|
-
webviewPaymethod={webviewPaymethod}
|
|
1174
|
-
setShowGateway={setShowGateway}
|
|
1175
|
-
/>
|
|
1176
|
-
)}
|
|
1177
|
-
{webviewPaymethod?.gateway === 'square' && showGateway.open && (
|
|
1178
|
-
<PaymentOptionsWebView
|
|
1179
|
-
onNavigationRedirect={onNavigationRedirect}
|
|
1180
|
-
uri={`https://test-square-f50f7.web.app`}
|
|
1181
|
-
user={user}
|
|
1182
|
-
token={token}
|
|
1183
|
-
cart={cart}
|
|
1184
|
-
currency={currency}
|
|
1185
|
-
webviewPaymethod={webviewPaymethod}
|
|
1186
|
-
setShowGateway={setShowGateway}
|
|
1187
|
-
locationId={'L1NGAY5M6KJRX'}
|
|
1188
|
-
/>
|
|
1189
|
-
)}
|
|
1190
|
-
{cart?.paymethod_data?.gateway === 'credomatic' && cart?.paymethod_data?.status === 2 && showGateway.open && (
|
|
1191
|
-
<PaymentOptionsWebView
|
|
1192
|
-
title={t('CREDOMATIC_PAYMENT', 'Credomatic payment')}
|
|
1193
|
-
onNavigationRedirect={onNavigationRedirect}
|
|
1194
|
-
uri={credomaticUrl}
|
|
1195
|
-
user={user}
|
|
1196
|
-
cart={cart}
|
|
1197
|
-
additionalParams={{
|
|
1198
|
-
type: 'auth',
|
|
1199
|
-
key_id: credomaticKeyId,
|
|
1200
|
-
hash: cart?.paymethod_data?.result?.hash,
|
|
1201
|
-
time: cart?.paymethod_data?.result?.time,
|
|
1202
|
-
amount: cart?.total,
|
|
1203
|
-
orderid: cart?.uuid,
|
|
1204
|
-
ccnumber: cardList?.cards?.[0]?.number,
|
|
1205
|
-
ccexp: cardList?.cards?.[0]?.expiryString,
|
|
1206
|
-
cvv: cardList?.cards?.[0]?.cvc,
|
|
1207
|
-
redirect: credomaticUrl
|
|
1208
|
-
}}
|
|
1209
|
-
webviewPaymethod={webviewPaymethod}
|
|
1210
|
-
setShowGateway={setShowGateway}
|
|
1211
|
-
/>
|
|
1212
|
-
)}
|
|
1213
|
-
</>
|
|
1214
|
-
)
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
export const Checkout = (props: any) => {
|
|
1218
|
-
const {
|
|
1219
|
-
errors,
|
|
1220
|
-
clearErrors,
|
|
1221
|
-
cartUuid,
|
|
1222
|
-
stripePaymentOptions,
|
|
1223
|
-
onNavigationRedirect,
|
|
1224
|
-
} = props
|
|
1225
|
-
|
|
1226
|
-
const [, { showToast }] = useToast();
|
|
1227
|
-
const [, t] = useLanguage();
|
|
1228
|
-
const [{ token }] = useSession();
|
|
1229
|
-
const [ordering] = useApi();
|
|
1230
|
-
const [, { confirmCart }] = useOrder();
|
|
1231
|
-
const { confirmPayment, loading: confirmPaymentLoading } = useConfirmPayment();
|
|
1232
|
-
|
|
1233
|
-
const [cartState, setCartState] = useState<any>({ loading: true, error: [], cart: null });
|
|
1234
|
-
const [orderState] = useOrder()
|
|
1235
|
-
|
|
1236
|
-
const getOrder = async (cartId: any) => {
|
|
1237
|
-
try {
|
|
1238
|
-
let result: any = {}
|
|
1239
|
-
const cartsWithProducts = orderState?.carts && (Object.values(orderState?.carts)?.filter(cart => cart?.products && cart?.products?.length) || null)
|
|
1240
|
-
const cart = cartsWithProducts?.find((cart: any) => cart.uuid === cartId)
|
|
1241
|
-
if (cart) {
|
|
1242
|
-
result = { ...cart }
|
|
1243
|
-
} else {
|
|
1244
|
-
setCartState({ ...cartState, loading: true })
|
|
1245
|
-
const url = `${ordering.root}/carts/${cartId}`
|
|
1246
|
-
const response = await fetch(url, {
|
|
1247
|
-
method: 'GET',
|
|
1248
|
-
headers: {
|
|
1249
|
-
'Content-Type': 'application/json',
|
|
1250
|
-
Authorization: `Bearer ${token}`
|
|
1251
|
-
}
|
|
1252
|
-
})
|
|
1253
|
-
const content = await response.json();
|
|
1254
|
-
result = content.result
|
|
1255
|
-
}
|
|
1256
|
-
|
|
1257
|
-
let publicKey = null
|
|
1258
|
-
try {
|
|
1259
|
-
const { content } = await ordering.setAccessToken(token).paymentCards().getCredentials();
|
|
1260
|
-
if (!content.error) {
|
|
1261
|
-
publicKey = content.result.publishable;
|
|
1262
|
-
}
|
|
1263
|
-
} catch (error) {
|
|
1264
|
-
publicKey = null
|
|
1265
|
-
}
|
|
1266
|
-
|
|
1267
|
-
if (result.status === 1 && result.order?.uuid) {
|
|
1268
|
-
onNavigationRedirect('OrderDetails', { orderId: result.order.uuid })
|
|
1269
|
-
setCartState({ ...cartState, loading: false })
|
|
1270
|
-
} else if (result.status === 2 && result.paymethod_data?.gateway === 'stripe_redirect') {
|
|
1271
|
-
try {
|
|
1272
|
-
const confirmCartRes = await confirmCart(cartUuid)
|
|
1273
|
-
if (confirmCartRes.error) {
|
|
1274
|
-
showToast(ToastType.Error, confirmCartRes.error.message)
|
|
1275
|
-
}
|
|
1276
|
-
if (confirmCartRes.result.order?.uuid) {
|
|
1277
|
-
onNavigationRedirect('OrderDetails', { orderId: confirmCartRes.result.order.uuid, isFromCheckout: true })
|
|
1278
|
-
}
|
|
1279
|
-
setCartState({
|
|
1280
|
-
...cartState,
|
|
1281
|
-
loading: false,
|
|
1282
|
-
cart: result
|
|
1283
|
-
})
|
|
1284
|
-
} catch (err: any) {
|
|
1285
|
-
showToast(ToastType.Error, err?.toString() || err.message)
|
|
1286
|
-
}
|
|
1287
|
-
} else if (result.status === 2 && stripePaymentOptions.includes(result.paymethod_data?.gateway)) {
|
|
1288
|
-
const clientSecret = result.paymethod_data?.result?.client_secret
|
|
1289
|
-
const paymentMethodId = result.paymethod_data?.data?.source_id;
|
|
1290
|
-
|
|
1291
|
-
initStripe({ publishableKey: publicKey });
|
|
1292
|
-
|
|
1293
|
-
try {
|
|
1294
|
-
const { paymentIntent, error } = await confirmPayment(clientSecret, {
|
|
1295
|
-
type: 'Card',
|
|
1296
|
-
paymentMethodId
|
|
1297
|
-
});
|
|
1298
|
-
|
|
1299
|
-
try {
|
|
1300
|
-
const confirmCartRes = await confirmCart(cartUuid)
|
|
1301
|
-
if (confirmCartRes.error) {
|
|
1302
|
-
showToast(ToastType.Error, confirmCartRes.error.message)
|
|
1303
|
-
setCartState({
|
|
1304
|
-
...cartState,
|
|
1305
|
-
loading: false,
|
|
1306
|
-
cart: result
|
|
1307
|
-
})
|
|
1308
|
-
return
|
|
1309
|
-
}
|
|
1310
|
-
if (confirmCartRes.result.order?.uuid) {
|
|
1311
|
-
onNavigationRedirect('OrderDetails', { orderId: confirmCartRes.result.order.uuid, isFromCheckout: true })
|
|
1312
|
-
setCartState({ ...cartState, loading: false })
|
|
1313
|
-
} else {
|
|
1314
|
-
showToast(ToastType.Error, t('FAILED_PAYMENT', 'The payment has failed'));
|
|
1315
|
-
const cart = Array.isArray(result) ? null : result
|
|
1316
|
-
setCartState({
|
|
1317
|
-
...cartState,
|
|
1318
|
-
loading: false,
|
|
1319
|
-
cart,
|
|
1320
|
-
error: cart ? null : result
|
|
1321
|
-
})
|
|
1322
|
-
return
|
|
1323
|
-
}
|
|
1324
|
-
} catch (error: any) {
|
|
1325
|
-
showToast(ToastType.Error, error?.toString() || error.message)
|
|
1326
|
-
}
|
|
1327
|
-
} catch (error) {
|
|
1328
|
-
showToast(ToastType.Error, t('FAILED_PAYMENT', 'The payment has failed'));
|
|
1329
|
-
const cart = Array.isArray(result) ? null : result
|
|
1330
|
-
setCartState({
|
|
1331
|
-
...cartState,
|
|
1332
|
-
loading: false,
|
|
1333
|
-
cart,
|
|
1334
|
-
error: cart ? null : result
|
|
1335
|
-
})
|
|
1336
|
-
}
|
|
1337
|
-
} else {
|
|
1338
|
-
const cart = Array.isArray(result) ? null : result
|
|
1339
|
-
setCartState({
|
|
1340
|
-
...cartState,
|
|
1341
|
-
loading: false,
|
|
1342
|
-
cart,
|
|
1343
|
-
error: cart ? null : result
|
|
1344
|
-
})
|
|
1345
|
-
}
|
|
1346
|
-
} catch (e: any) {
|
|
1347
|
-
setCartState({
|
|
1348
|
-
...cartState,
|
|
1349
|
-
loading: false,
|
|
1350
|
-
error: [e.toString()]
|
|
1351
|
-
})
|
|
1352
|
-
}
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
|
-
useEffect(() => {
|
|
1356
|
-
if (errors) {
|
|
1357
|
-
const errorText = manageErrorsToShow(errors)
|
|
1358
|
-
showToast(ToastType.Error, errorText)
|
|
1359
|
-
clearErrors && clearErrors()
|
|
1360
|
-
}
|
|
1361
|
-
}, [errors])
|
|
1362
|
-
|
|
1363
|
-
useEffect(() => {
|
|
1364
|
-
if (token && cartUuid) {
|
|
1365
|
-
getOrder(cartUuid)
|
|
1366
|
-
}
|
|
1367
|
-
}, [token, cartUuid])
|
|
1368
|
-
|
|
1369
|
-
const checkoutProps = {
|
|
1370
|
-
...props,
|
|
1371
|
-
UIComponent: CheckoutUI,
|
|
1372
|
-
cartState,
|
|
1373
|
-
uuid: cartUuid
|
|
1374
|
-
}
|
|
1375
|
-
|
|
1376
|
-
return (
|
|
1377
|
-
<>
|
|
1378
|
-
<CheckoutController {...checkoutProps} />
|
|
1379
|
-
</>
|
|
1380
|
-
)
|
|
1381
|
-
}
|
|
1
|
+
import React, { useState, useEffect, useCallback, useRef, useMemo } from 'react';
|
|
2
|
+
import { View, StyleSheet, TouchableOpacity, Platform, I18nManager, ScrollView, Keyboard, BackHandler, SafeAreaView } from 'react-native';
|
|
3
|
+
import { initStripe, useConfirmPayment } from '@stripe/stripe-react-native';
|
|
4
|
+
import NativeStripeSdk from '@stripe/stripe-react-native/src/NativeStripeSdk'
|
|
5
|
+
import Picker from 'react-native-country-picker-modal';
|
|
6
|
+
import MaterialIcons from 'react-native-vector-icons/MaterialIcons'
|
|
7
|
+
import IconAntDesign from 'react-native-vector-icons/AntDesign';
|
|
8
|
+
import { useIsFocused } from '@react-navigation/native';
|
|
9
|
+
|
|
10
|
+
import ReactNativeHapticFeedback, { HapticFeedbackTypes } from "react-native-haptic-feedback";
|
|
11
|
+
import {
|
|
12
|
+
Checkout as CheckoutController,
|
|
13
|
+
useOrder,
|
|
14
|
+
useSession,
|
|
15
|
+
useApi,
|
|
16
|
+
useLanguage,
|
|
17
|
+
useUtils,
|
|
18
|
+
useConfig,
|
|
19
|
+
useToast,
|
|
20
|
+
ToastType,
|
|
21
|
+
useEvent
|
|
22
|
+
} from 'ordering-components/native';
|
|
23
|
+
import { useTheme } from 'styled-components/native';
|
|
24
|
+
import { OText, OIcon, OModal, OButton } from '../shared';
|
|
25
|
+
|
|
26
|
+
import { AddressDetails } from '../AddressDetails';
|
|
27
|
+
import { PaymentOptions } from '../PaymentOptions';
|
|
28
|
+
import { DriverTips } from '../DriverTips';
|
|
29
|
+
import { NotFoundSource } from '../NotFoundSource';
|
|
30
|
+
import { UserDetails } from '../UserDetails';
|
|
31
|
+
import { PaymentOptionWallet } from '../PaymentOptionWallet';
|
|
32
|
+
import { PlaceSpot } from '../PlaceSpot'
|
|
33
|
+
import { SignupForm } from '../SignupForm'
|
|
34
|
+
import { LoginForm } from '../LoginForm'
|
|
35
|
+
|
|
36
|
+
import {
|
|
37
|
+
ChContainer,
|
|
38
|
+
ChSection,
|
|
39
|
+
ChHeader,
|
|
40
|
+
ChAddress,
|
|
41
|
+
CHMomentWrapper,
|
|
42
|
+
ChPaymethods,
|
|
43
|
+
ChDriverTips,
|
|
44
|
+
ChErrors,
|
|
45
|
+
ChBusinessDetails,
|
|
46
|
+
ChUserDetails,
|
|
47
|
+
ChCart,
|
|
48
|
+
DeliveryOptionsContainer,
|
|
49
|
+
DeliveryOptionItem,
|
|
50
|
+
WalletPaymentOptionContainer,
|
|
51
|
+
CartHeader,
|
|
52
|
+
TopHeader,
|
|
53
|
+
TopActions
|
|
54
|
+
} from './styles';
|
|
55
|
+
import { Fade, Placeholder, PlaceholderLine } from 'rn-placeholder';
|
|
56
|
+
import { FloatingButton } from '../FloatingButton';
|
|
57
|
+
import { Container } from '../../layouts/Container';
|
|
58
|
+
import NavBar from '../NavBar';
|
|
59
|
+
import { OrderSummary } from '../OrderSummary';
|
|
60
|
+
import { getTypesText } from '../../utils';
|
|
61
|
+
import { CartStoresListing } from '../CartStoresListing';
|
|
62
|
+
import { PaymentOptionsWebView } from '../../../../../src/components/PaymentOptionsWebView';
|
|
63
|
+
import { DeviceOrientationMethods } from '../../../../../src/hooks/DeviceOrientation'
|
|
64
|
+
const { useDeviceOrientation } = DeviceOrientationMethods
|
|
65
|
+
|
|
66
|
+
const mapConfigs = {
|
|
67
|
+
mapZoom: 16,
|
|
68
|
+
mapSize: {
|
|
69
|
+
width: 640,
|
|
70
|
+
height: 190
|
|
71
|
+
}
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
const driverTipsTypes = [1, 2]
|
|
75
|
+
|
|
76
|
+
const manageErrorsToShow = (array = []) => {
|
|
77
|
+
let stringError = ''
|
|
78
|
+
const list = Array.isArray(array) ? array : Object.values(array)
|
|
79
|
+
list.map((item: any, i: number) => {
|
|
80
|
+
stringError += (i + 1) === array.length ? `- ${item?.message || item}` : `- ${item?.message || item}\n`
|
|
81
|
+
})
|
|
82
|
+
return stringError;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
const CheckoutUI = (props: any) => {
|
|
86
|
+
const {
|
|
87
|
+
navigation,
|
|
88
|
+
cart,
|
|
89
|
+
errors,
|
|
90
|
+
placing,
|
|
91
|
+
cartState,
|
|
92
|
+
cartUuid,
|
|
93
|
+
loyaltyPlansState,
|
|
94
|
+
businessDetails,
|
|
95
|
+
paymethodSelected,
|
|
96
|
+
handlePaymethodChange,
|
|
97
|
+
handlerClickPlaceOrder,
|
|
98
|
+
onNavigationRedirect,
|
|
99
|
+
deliveryOptionSelected,
|
|
100
|
+
instructionsOptions,
|
|
101
|
+
handleChangeDeliveryOption,
|
|
102
|
+
currency,
|
|
103
|
+
merchantId,
|
|
104
|
+
setPlaceSpotNumber,
|
|
105
|
+
maxDate,
|
|
106
|
+
androidAppId,
|
|
107
|
+
urlscheme,
|
|
108
|
+
checkoutFieldsState
|
|
109
|
+
} = props
|
|
110
|
+
|
|
111
|
+
const theme = useTheme();
|
|
112
|
+
const isFocused = useIsFocused();
|
|
113
|
+
|
|
114
|
+
const styles = StyleSheet.create({
|
|
115
|
+
btnBackArrow: {
|
|
116
|
+
borderWidth: 0,
|
|
117
|
+
backgroundColor: theme.colors.white,
|
|
118
|
+
borderColor: theme.colors.white,
|
|
119
|
+
shadowColor: theme.colors.white,
|
|
120
|
+
display: 'flex',
|
|
121
|
+
justifyContent: 'flex-start',
|
|
122
|
+
paddingLeft: 0,
|
|
123
|
+
},
|
|
124
|
+
paddSection: {
|
|
125
|
+
padding: 20
|
|
126
|
+
},
|
|
127
|
+
pagePadding: {
|
|
128
|
+
paddingHorizontal: 20
|
|
129
|
+
},
|
|
130
|
+
icon: {
|
|
131
|
+
top: 15,
|
|
132
|
+
right: Platform.OS === 'ios' ? 5 : (I18nManager.isRTL ? 30 : 0),
|
|
133
|
+
position: 'absolute',
|
|
134
|
+
fontSize: 20
|
|
135
|
+
},
|
|
136
|
+
detailWrapper: {
|
|
137
|
+
paddingHorizontal: 20,
|
|
138
|
+
width: '100%'
|
|
139
|
+
},
|
|
140
|
+
wrapperNavbar: {
|
|
141
|
+
paddingVertical: 2,
|
|
142
|
+
paddingHorizontal: 20,
|
|
143
|
+
backgroundColor: theme?.colors?.white,
|
|
144
|
+
borderWidth: 0
|
|
145
|
+
}
|
|
146
|
+
})
|
|
147
|
+
|
|
148
|
+
const [, { showToast }] = useToast();
|
|
149
|
+
const [, t] = useLanguage();
|
|
150
|
+
const [{ user, token, loading: userLoading }, { login }] = useSession();
|
|
151
|
+
const [ordering] = useApi()
|
|
152
|
+
const [{ configs }] = useConfig();
|
|
153
|
+
const [{ parsePrice, parseDate }] = useUtils();
|
|
154
|
+
const [{ options, carts, loading }, { confirmCart }] = useOrder();
|
|
155
|
+
const [events] = useEvent()
|
|
156
|
+
const [orientationState] = useDeviceOrientation();
|
|
157
|
+
const [isReadMore, setIsReadMore] = useState(false)
|
|
158
|
+
const [lengthMore, setLengthMore] = useState(false)
|
|
159
|
+
const WIDTH_SCREEN = orientationState?.dimensions?.width
|
|
160
|
+
|
|
161
|
+
const [errorCash, setErrorCash] = useState(false);
|
|
162
|
+
const [userErrors, setUserErrors] = useState<any>([]);
|
|
163
|
+
const [isUserDetailsEdit, setIsUserDetailsEdit] = useState(false);
|
|
164
|
+
const [phoneUpdate, setPhoneUpdate] = useState(false);
|
|
165
|
+
const [openChangeStore, setOpenChangeStore] = useState(false)
|
|
166
|
+
const [isDeliveryOptionModalVisible, setIsDeliveryOptionModalVisible] = useState(false)
|
|
167
|
+
const [showGateway, setShowGateway] = useState<any>({ closedByUser: false, open: false });
|
|
168
|
+
const [webviewPaymethod, setWebviewPaymethod] = useState<any>(null)
|
|
169
|
+
const [isOpen, setIsOpen] = useState(false)
|
|
170
|
+
const [requiredFields, setRequiredFields] = useState<any>([])
|
|
171
|
+
const [orderTypeValidationFields, setOrderTypeValidationFields] = useState<any>([])
|
|
172
|
+
const [openModal, setOpenModal] = useState({ login: false, signup: false, isGuest: false })
|
|
173
|
+
const [allowedGuest, setAllowedGuest] = useState(false)
|
|
174
|
+
const [placeByMethodPay, setPlaceByMethodPay] = useState(false)
|
|
175
|
+
const [methodPaySupported, setMethodPaySupported] = useState({ enabled: false, message: null, loading: true })
|
|
176
|
+
const [paymethodClicked, setPaymethodClicked] = useState<any>(null)
|
|
177
|
+
const [showTitle, setShowTitle] = useState(false)
|
|
178
|
+
const [cardList, setCardList] = useState<any>({ cards: [], loading: false, error: null })
|
|
179
|
+
const [isGiftCardCart, setIsGiftCardCart] = useState(!cart?.business_id)
|
|
180
|
+
const [userHasCards, setUserHasCards] = useState(false)
|
|
181
|
+
const containerRef = useRef<any>()
|
|
182
|
+
const cardsMethods = ['credomatic']
|
|
183
|
+
const stripePaymethods: any = ['stripe', 'stripe_connect', 'stripe_redirect']
|
|
184
|
+
const cardsPaymethods: any = ['stripe', 'stripe_connect']
|
|
185
|
+
|
|
186
|
+
const notFields = ['coupon', 'driver_tip', 'mobile_phone', 'address', 'zipcode', 'address_notes', 'comments']
|
|
187
|
+
|
|
188
|
+
const checkoutFields = useMemo(() => checkoutFieldsState?.fields?.filter((field: any) => field.order_type_id === options?.type), [checkoutFieldsState, options])
|
|
189
|
+
const guestCheckoutDriveTip = useMemo(() => checkoutFields?.find((field: any) => driverTipsTypes.includes(field.order_type_id) && field?.validation_field?.code === 'driver_tip'), [JSON.stringify(checkoutFields), options])
|
|
190
|
+
const guestCheckoutComment = useMemo(() => checkoutFields?.find((field: any) => field.order_type_id === options?.type && field?.validation_field?.code === 'comments'), [JSON.stringify(checkoutFields), options])
|
|
191
|
+
const guestCheckoutCoupon = useMemo(() => checkoutFields?.find((field: any) => field.order_type_id === options?.type && field?.validation_field?.code === 'coupon'), [JSON.stringify(checkoutFields), options])
|
|
192
|
+
const guestCheckoutZipcode = useMemo(() => checkoutFields?.find((field: any) => field.order_type_id === options?.type && field?.validation_field?.code === 'zipcode'), [JSON.stringify(checkoutFields), options])
|
|
193
|
+
|
|
194
|
+
const placeSpotTypes = [3, 4, 5]
|
|
195
|
+
const placeSpotsEnabled = placeSpotTypes.includes(options?.type)
|
|
196
|
+
const businessConfigs = businessDetails?.business?.configs ?? []
|
|
197
|
+
const isWalletCashEnabled = businessConfigs.find((config: any) => config.key === 'wallet_cash_enabled')?.value === '1'
|
|
198
|
+
const isWalletCreditPointsEnabled = businessConfigs.find((config: any) => config.key === 'wallet_credit_point_enabled')?.value === '1'
|
|
199
|
+
const isWalletEnabled = configs?.cash_wallet?.value && configs?.wallet_enabled?.value === '1' && (isWalletCashEnabled || isWalletCreditPointsEnabled)
|
|
200
|
+
const isBusinessChangeEnabled = configs?.cart_change_business_validation?.value === '1'
|
|
201
|
+
const isChewLayout = theme?.header?.components?.layout?.type?.toLowerCase() === 'chew'
|
|
202
|
+
const hideBusinessAddress = theme?.checkout?.components?.business?.components?.address?.hidden
|
|
203
|
+
const hideBusinessDetails = theme?.checkout?.components?.business?.hidden
|
|
204
|
+
const hideBusinessMap = theme?.checkout?.components?.business?.components?.map?.hidden
|
|
205
|
+
const hideCustomerDetails = theme?.checkout?.components?.customer?.hidden
|
|
206
|
+
const isGuestCheckoutEnabled = configs?.guest_checkout_enabled?.value === '1'
|
|
207
|
+
const creditPointPlan = loyaltyPlansState?.result?.find((loyal: any) => loyal.type === 'credit_point')
|
|
208
|
+
const creditPointPlanOnBusiness = creditPointPlan?.businesses?.find((b: any) => b.business_id === cart?.business_id && b.accumulates)
|
|
209
|
+
const methodsPay = ['google_pay', 'apple_pay']
|
|
210
|
+
|
|
211
|
+
const commentDelayTime = 1500
|
|
212
|
+
const isPreOrder = configs?.preorder_status_enabled?.value === '1'
|
|
213
|
+
const subtotalWithTaxes = cart?.taxes?.reduce((acc: any, item: any) => {
|
|
214
|
+
if (item?.type === 1)
|
|
215
|
+
return acc = acc + item?.summary?.tax
|
|
216
|
+
return acc = acc
|
|
217
|
+
}, cart?.subtotal)
|
|
218
|
+
const allowDriverTipPickup = configs?.driver_tip_allowed_at_pickup?.value === '1' && options?.type === 2
|
|
219
|
+
const validateCommentsCartField = (guestCheckoutComment?.enabled && (user?.guest_id ? guestCheckoutComment?.required_with_guest : guestCheckoutComment?.required)) && (cart?.comment === null || cart?.comment?.trim().length === 0)
|
|
220
|
+
const validateDriverTipField = (options.type === 1 || allowDriverTipPickup) && (guestCheckoutDriveTip?.enabled && (user?.guest_id ? guestCheckoutDriveTip?.required_with_guest : guestCheckoutDriveTip?.required)) && (Number(cart?.driver_tip) <= 0)
|
|
221
|
+
const validateCouponField = (guestCheckoutCoupon?.enabled && (user?.guest_id ? guestCheckoutCoupon?.required_with_guest : guestCheckoutCoupon?.required)) && !cart?.offers?.some((offer: any) => offer?.type === 2)
|
|
222
|
+
const validateZipcodeCard = (guestCheckoutZipcode?.enabled && (user?.guest_id ? guestCheckoutZipcode?.required_with_guest : guestCheckoutZipcode?.required)) && paymethodSelected?.gateway === 'stripe' && paymethodSelected?.data?.card && !paymethodSelected?.data?.card?.zipcode
|
|
223
|
+
|
|
224
|
+
const isDisabledButtonPlace = loading || !cart?.valid || (!paymethodSelected && cart?.balance > 0) ||
|
|
225
|
+
placing || errorCash || subtotalWithTaxes < cart?.minimum ||
|
|
226
|
+
(cardsMethods.includes(paymethodSelected?.gateway) && cardList?.cards?.length === 0) ||
|
|
227
|
+
(validateCommentsCartField) ||
|
|
228
|
+
(validateDriverTipField && !isGiftCardCart) ||
|
|
229
|
+
(validateZipcodeCard) ||
|
|
230
|
+
(methodsPay.includes(paymethodSelected?.gateway) && (!methodPaySupported.enabled || methodPaySupported.loading)) ||
|
|
231
|
+
validateCommentsCartField ||
|
|
232
|
+
validateDriverTipField ||
|
|
233
|
+
validateCouponField ||
|
|
234
|
+
validateZipcodeCard ||
|
|
235
|
+
(!userHasCards && cardsPaymethods.includes(paymethodSelected?.gateway)) ||
|
|
236
|
+
(!isGuestCheckoutEnabled && !!user?.guest_id)
|
|
237
|
+
|
|
238
|
+
const driverTipsOptions = typeof configs?.driver_tip_options?.value === 'string'
|
|
239
|
+
? JSON.parse(configs?.driver_tip_options?.value) || []
|
|
240
|
+
: configs?.driver_tip_options?.value || []
|
|
241
|
+
const driverTipsField = !cartState.loading && cart && cart?.business_id && (options.type === 1 || allowDriverTipPickup) && cart?.status !== 2 && (guestCheckoutDriveTip?.enabled) && driverTipsOptions.length > 0
|
|
242
|
+
|
|
243
|
+
const configTypes = configs?.order_types_allowed?.value.split('|').map((value: any) => Number(value)) || []
|
|
244
|
+
|
|
245
|
+
const cartsWithProducts = carts && Object.values(carts).filter((cart: any) => cart.products.length) || null
|
|
246
|
+
|
|
247
|
+
const isSandboxCredomatic = configs?.credomatic_integration_sandbox?.value === '1'
|
|
248
|
+
const credomaticKeyId = isSandboxCredomatic ? configs?.credomatic_integration_public_sandbox_key?.value : configs?.credomatic_integration_public_production_key?.value
|
|
249
|
+
const credomaticUrl = `https://integrations.ordering.co/credomatic/front/auth_mobile.html?title=${t('CREDOMATIC_PAYMENT', 'Credomatic payment')}&body=${t('CREDOMATIC_PROCESSING', 'Processing transaction')}`
|
|
250
|
+
const deliveryOptions = instructionsOptions?.result && instructionsOptions?.result?.filter((option: any) => option?.enabled)?.map((option: any) => {
|
|
251
|
+
return {
|
|
252
|
+
value: option?.id, key: option?.id, label: t(option?.name.toUpperCase().replace(/\s/g, '_'), option?.name)
|
|
253
|
+
}
|
|
254
|
+
})
|
|
255
|
+
|
|
256
|
+
const handleMomentClick = () => {
|
|
257
|
+
if (isPreOrder) {
|
|
258
|
+
navigation.navigate('MomentOption', { business: businessDetails?.business })
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
const vibrateApp = (impact?: HapticFeedbackTypes) => {
|
|
263
|
+
const options = {
|
|
264
|
+
enableVibrateFallback: true,
|
|
265
|
+
ignoreAndroidSystemSettings: false
|
|
266
|
+
};
|
|
267
|
+
ReactNativeHapticFeedback.trigger(impact || "impactLight", options);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
const handleSuccessSignup = async (user: any) => {
|
|
271
|
+
await login({
|
|
272
|
+
user,
|
|
273
|
+
token: user?.session?.access_token
|
|
274
|
+
})
|
|
275
|
+
setOpenModal({ ...openModal, signup: false, isGuest: false })
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
const handleSuccessLogin = (user: any) => {
|
|
279
|
+
if (user) setOpenModal({ ...openModal, login: false })
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
const handleOpenGuestSignup = () => {
|
|
283
|
+
setOpenModal({ ...openModal, signup: true, isGuest: true })
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
const handlePlaceOrder = (confirmPayment: any, forcePlace: boolean = false) => {
|
|
287
|
+
if (stripePaymethods.includes(paymethodSelected?.gateway) && user?.guest_id) {
|
|
288
|
+
setOpenModal({ ...openModal, signup: true, isGuest: true })
|
|
289
|
+
return
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
if (!userErrors.length && (!requiredFields?.length) || forcePlace) {
|
|
293
|
+
vibrateApp()
|
|
294
|
+
handlerClickPlaceOrder && handlerClickPlaceOrder(null, { isNative: true }, confirmPayment, NativeStripeSdk?.dismissPlatformPay)
|
|
295
|
+
return
|
|
296
|
+
}
|
|
297
|
+
if (requiredFields?.length) {
|
|
298
|
+
setIsOpen(true)
|
|
299
|
+
return
|
|
300
|
+
}
|
|
301
|
+
let stringError = ''
|
|
302
|
+
Object.values(userErrors).map((item: any, i: number) => {
|
|
303
|
+
stringError += (i + 1) === userErrors.length ? `- ${item?.message || item}` : `- ${item?.message || item}\n`
|
|
304
|
+
})
|
|
305
|
+
showToast(ToastType.Error, stringError)
|
|
306
|
+
setIsUserDetailsEdit(true)
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
const handlePlaceOrderAsGuest = () => {
|
|
310
|
+
setIsOpen(false)
|
|
311
|
+
handlerClickPlaceOrder && handlerClickPlaceOrder()
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
const handlePaymentMethodClick = (paymethod: any) => {
|
|
315
|
+
setShowGateway({ closedByUser: false, open: true })
|
|
316
|
+
setWebviewPaymethod(paymethod)
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
const onFailPaypal = async () => {
|
|
320
|
+
if (showGateway.closedByUser === true) {
|
|
321
|
+
await confirmCart(cart.uuid)
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
const changeDeliveryOption = (option: any) => {
|
|
325
|
+
handleChangeDeliveryOption(option)
|
|
326
|
+
setIsDeliveryOptionModalVisible(false)
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
const checkValidationFields = () => {
|
|
330
|
+
setUserErrors([])
|
|
331
|
+
const errors: Array<string> = []
|
|
332
|
+
const userSelected = user
|
|
333
|
+
const _requiredFields: Array<string> = []
|
|
334
|
+
Object.values(checkoutFieldsState?.fields).map((field: any) => {
|
|
335
|
+
if (options?.type === field?.order_type_id &&
|
|
336
|
+
field?.enabled &&
|
|
337
|
+
field?.required &&
|
|
338
|
+
!notFields.includes(field?.validation_field?.code)
|
|
339
|
+
) {
|
|
340
|
+
if (userSelected && !userSelected[field?.validation_field?.code]) {
|
|
341
|
+
_requiredFields.push(field?.validation_field?.code)
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
})
|
|
345
|
+
const mobilePhoneField: any = Object.values(checkoutFieldsState?.fields)?.find((field: any) => field?.order_type_id === options?.type && field?.validation_field?.code === 'mobile_phone')
|
|
346
|
+
if (
|
|
347
|
+
userSelected &&
|
|
348
|
+
!userSelected?.cellphone &&
|
|
349
|
+
((mobilePhoneField?.enabled &&
|
|
350
|
+
mobilePhoneField?.required) ||
|
|
351
|
+
configs?.verification_phone_required?.value === '1')
|
|
352
|
+
) {
|
|
353
|
+
_requiredFields.push('cellphone')
|
|
354
|
+
}
|
|
355
|
+
setRequiredFields(_requiredFields)
|
|
356
|
+
|
|
357
|
+
setUserErrors(errors)
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
const checkGuestValidationFields = () => {
|
|
361
|
+
const userSelected = user
|
|
362
|
+
const _requiredFields = checkoutFieldsState?.fields
|
|
363
|
+
.filter((field: any) => (field?.order_type_id === options?.type) && field?.enabled && field?.required_with_guest &&
|
|
364
|
+
!notFields.includes(field?.validation_field?.code) &&
|
|
365
|
+
field?.validation_field?.code !== 'email' &&
|
|
366
|
+
userSelected && !userSelected[field?.validation_field?.code])
|
|
367
|
+
const requiredFieldsCode = _requiredFields.map((item: any) => item?.validation_field?.code)
|
|
368
|
+
const guestCheckoutCellPhone = checkoutFieldsState?.fields?.find((field: any) => field.order_type_id === options?.type && field?.validation_field?.code === 'mobile_phone')
|
|
369
|
+
const guestCheckoutEmail = checkoutFieldsState?.fields?.find((field: any) => field.order_type_id === options?.type && field?.validation_field?.code === 'email')
|
|
370
|
+
if (
|
|
371
|
+
userSelected &&
|
|
372
|
+
!userSelected?.guest_cellphone &&
|
|
373
|
+
((guestCheckoutCellPhone?.enabled &&
|
|
374
|
+
guestCheckoutCellPhone?.required_with_guest) ||
|
|
375
|
+
configs?.verification_phone_required?.value === '1')
|
|
376
|
+
) {
|
|
377
|
+
requiredFieldsCode.push('cellphone')
|
|
378
|
+
}
|
|
379
|
+
if (
|
|
380
|
+
userSelected &&
|
|
381
|
+
!userSelected?.guest_email &&
|
|
382
|
+
guestCheckoutEmail?.enabled &&
|
|
383
|
+
guestCheckoutEmail?.required_with_guest
|
|
384
|
+
) {
|
|
385
|
+
requiredFieldsCode.push('email')
|
|
386
|
+
}
|
|
387
|
+
setRequiredFields(requiredFieldsCode)
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
const togglePhoneUpdate = (val: boolean) => {
|
|
391
|
+
setPhoneUpdate(val)
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
const handleScroll = ({ nativeEvent: { contentOffset } }: any) => {
|
|
395
|
+
setShowTitle(contentOffset.y > 30)
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
const handleRedirect = () => {
|
|
399
|
+
props.fromProductsList
|
|
400
|
+
? navigation?.goBack()
|
|
401
|
+
: onNavigationRedirect('BottomTab', { screen: 'Cart' }, !props.fromMulti)
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
useEffect(() => {
|
|
405
|
+
if (checkoutFieldsState?.loading || userLoading) return
|
|
406
|
+
if (user?.guest_id) {
|
|
407
|
+
checkGuestValidationFields()
|
|
408
|
+
} else {
|
|
409
|
+
checkValidationFields()
|
|
410
|
+
}
|
|
411
|
+
}, [checkoutFieldsState, user, options?.type])
|
|
412
|
+
|
|
413
|
+
useEffect(() => {
|
|
414
|
+
if (errors) {
|
|
415
|
+
const errorText = manageErrorsToShow(errors)
|
|
416
|
+
showToast(ToastType.Error, errorText)
|
|
417
|
+
}
|
|
418
|
+
}, [errors])
|
|
419
|
+
|
|
420
|
+
useEffect(() => {
|
|
421
|
+
if (cart?.products?.length === 0 || !userLoading) return
|
|
422
|
+
if (cart?.business_id !== null) {
|
|
423
|
+
onNavigationRedirect('Business', { store: cart?.business?.slug, header: null, logo: null, fromMulti: props.fromMulti })
|
|
424
|
+
return
|
|
425
|
+
}
|
|
426
|
+
if (isGiftCardCart) {
|
|
427
|
+
onNavigationRedirect('Wallets')
|
|
428
|
+
return
|
|
429
|
+
}
|
|
430
|
+
}, [cart?.products?.length])
|
|
431
|
+
|
|
432
|
+
useEffect(() => {
|
|
433
|
+
if (cart?.products?.length > 0) {
|
|
434
|
+
if (cart?.uuid && cart?.business_id === null) {
|
|
435
|
+
setIsGiftCardCart(true)
|
|
436
|
+
} else {
|
|
437
|
+
setIsGiftCardCart(false)
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
}, [cart?.uuid, cart?.products?.length])
|
|
441
|
+
|
|
442
|
+
useEffect(() => {
|
|
443
|
+
onFailPaypal()
|
|
444
|
+
}, [showGateway.closedByUser])
|
|
445
|
+
|
|
446
|
+
const HeaderTitle = (props: any) => {
|
|
447
|
+
const { text } = props
|
|
448
|
+
return (
|
|
449
|
+
<OText
|
|
450
|
+
size={16}
|
|
451
|
+
lineHeight={24}
|
|
452
|
+
weight={'500'}
|
|
453
|
+
mBottom={props.mb ?? 10}
|
|
454
|
+
color={theme.colors.textNormal}
|
|
455
|
+
>
|
|
456
|
+
{text}
|
|
457
|
+
</OText>
|
|
458
|
+
)
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
useEffect(() => {
|
|
462
|
+
cart && events.emit('checkout_started', cart)
|
|
463
|
+
}, [])
|
|
464
|
+
|
|
465
|
+
useEffect(() => {
|
|
466
|
+
if (cart?.paymethod_data?.gateway === 'credomatic') {
|
|
467
|
+
if (cart?.paymethod_data?.status === 2) {
|
|
468
|
+
setShowGateway({ ...showGateway, open: true })
|
|
469
|
+
} else if (cart?.paymethod_data?.gateway === 'credomatic' && cart?.paymethod_data?.status === 4) {
|
|
470
|
+
setShowGateway({ ...showGateway, open: false })
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
}, [cart?.paymethod_data])
|
|
474
|
+
|
|
475
|
+
const onTextLayout = useCallback((e: any) => {
|
|
476
|
+
setLengthMore((e.nativeEvent.lines.length == 3 && e.nativeEvent.lines[2].width > WIDTH_SCREEN * .76) || e.nativeEvent.lines.length > 3)
|
|
477
|
+
}, [])
|
|
478
|
+
|
|
479
|
+
useEffect(() => {
|
|
480
|
+
if (!isFocused) return
|
|
481
|
+
if (!cartState?.loading && (cartState?.error || typeof cartState?.cart === 'string')) {
|
|
482
|
+
const error = cartState?.error || typeof cartState.cart === 'string' && cartState.cart
|
|
483
|
+
if (error) {
|
|
484
|
+
showToast(ToastType.Error, cartState?.error || cartState.cart)
|
|
485
|
+
navigation.navigate('BusinessList')
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
}, [cartState?.error, cartState?.cart, cartState?.loading, isFocused])
|
|
489
|
+
|
|
490
|
+
useEffect(() => {
|
|
491
|
+
const onBackFunction = () => {
|
|
492
|
+
if (webviewPaymethod?.gateway === 'paypal' && showGateway.open) {
|
|
493
|
+
setShowGateway({ open: false, closedByUser: true })
|
|
494
|
+
return true
|
|
495
|
+
} else {
|
|
496
|
+
return false
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
BackHandler.addEventListener('hardwareBackPress', onBackFunction)
|
|
500
|
+
return () => {
|
|
501
|
+
BackHandler.removeEventListener('hardwareBackPress', onBackFunction)
|
|
502
|
+
}
|
|
503
|
+
}, [BackHandler, webviewPaymethod?.gateway, showGateway.open])
|
|
504
|
+
|
|
505
|
+
return (
|
|
506
|
+
<>
|
|
507
|
+
<SafeAreaView style={{ backgroundColor: theme.colors.backgroundPage }}>
|
|
508
|
+
<View style={styles.wrapperNavbar}>
|
|
509
|
+
<TopHeader>
|
|
510
|
+
<TopActions onPress={() => handleRedirect()}>
|
|
511
|
+
<IconAntDesign
|
|
512
|
+
name='arrowleft'
|
|
513
|
+
size={26}
|
|
514
|
+
/>
|
|
515
|
+
</TopActions>
|
|
516
|
+
{showTitle && (
|
|
517
|
+
<OText
|
|
518
|
+
size={16}
|
|
519
|
+
style={{ flex: 1, textAlign: 'center', right: 15 }}
|
|
520
|
+
weight={Platform.OS === 'ios' ? '600' : 'bold'}
|
|
521
|
+
numberOfLines={2}
|
|
522
|
+
ellipsizeMode='tail'
|
|
523
|
+
>
|
|
524
|
+
{t('CHECKOUT', 'Checkout')}
|
|
525
|
+
</OText>
|
|
526
|
+
)}
|
|
527
|
+
</TopHeader>
|
|
528
|
+
</View>
|
|
529
|
+
</SafeAreaView>
|
|
530
|
+
<Container pt={0} forwardRef={containerRef} showsVerticalScrollIndicator={false} noPadding onScroll={handleScroll}>
|
|
531
|
+
<View style={styles.wrapperNavbar}>
|
|
532
|
+
<NavBar
|
|
533
|
+
hideArrowLeft
|
|
534
|
+
title={t('CHECKOUT', 'Checkout')}
|
|
535
|
+
titleAlign={'center'}
|
|
536
|
+
onActionLeft={() => handleRedirect()}
|
|
537
|
+
showCall={false}
|
|
538
|
+
btnStyle={{ paddingLeft: 0, paddingTop: Platform.OS == 'ios' ? 0 : 2 }}
|
|
539
|
+
titleWrapStyle={{ paddingHorizontal: 0 }}
|
|
540
|
+
titleStyle={{ marginRight: 0, marginLeft: 0 }}
|
|
541
|
+
style={{ marginTop: 20 }}
|
|
542
|
+
/>
|
|
543
|
+
</View>
|
|
544
|
+
<ChContainer style={styles.pagePadding}>
|
|
545
|
+
{!isGiftCardCart && (
|
|
546
|
+
<ChSection style={{ paddingTop: 0 }}>
|
|
547
|
+
<ChHeader>
|
|
548
|
+
<CHMomentWrapper isCustomColor={isChewLayout} onPress={() => navigation.navigate('OrderTypes', { configTypes: configTypes })}>
|
|
549
|
+
<OText
|
|
550
|
+
size={12}
|
|
551
|
+
numberOfLines={1}
|
|
552
|
+
ellipsizeMode={'tail'}
|
|
553
|
+
color={theme.colors?.[isChewLayout ? 'white' : 'textSecondary']}
|
|
554
|
+
>
|
|
555
|
+
{t(getTypesText(options?.type || 1), 'Delivery')}
|
|
556
|
+
</OText>
|
|
557
|
+
<OIcon
|
|
558
|
+
src={theme.images.general.arrow_down}
|
|
559
|
+
width={10}
|
|
560
|
+
style={{ marginStart: 8 }}
|
|
561
|
+
{...(isChewLayout && { color: 'white' })}
|
|
562
|
+
/>
|
|
563
|
+
</CHMomentWrapper>
|
|
564
|
+
<CHMomentWrapper
|
|
565
|
+
onPress={() => handleMomentClick()}
|
|
566
|
+
disabled={loading}
|
|
567
|
+
>
|
|
568
|
+
<OText size={12} numberOfLines={1} ellipsizeMode='tail' color={theme.colors.textSecondary}>
|
|
569
|
+
{options?.moment
|
|
570
|
+
? parseDate(options?.moment, { outputFormat: configs?.dates_moment_format?.value })
|
|
571
|
+
: t('ASAP_ABBREVIATION', 'ASAP')}
|
|
572
|
+
</OText>
|
|
573
|
+
{isPreOrder && (
|
|
574
|
+
<OIcon
|
|
575
|
+
src={theme.images.general.arrow_down}
|
|
576
|
+
width={10}
|
|
577
|
+
style={{ marginStart: 8 }}
|
|
578
|
+
/>
|
|
579
|
+
)}
|
|
580
|
+
</CHMomentWrapper>
|
|
581
|
+
</ChHeader>
|
|
582
|
+
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginTop: 18, marginHorizontal: -40 }} />
|
|
583
|
+
</ChSection>
|
|
584
|
+
)}
|
|
585
|
+
|
|
586
|
+
{!isGiftCardCart && !hideBusinessDetails && (
|
|
587
|
+
<ChSection>
|
|
588
|
+
<ChBusinessDetails>
|
|
589
|
+
{
|
|
590
|
+
(businessDetails?.loading || cartState.loading || !businessDetails?.business || Object.values(businessDetails?.business).length === 0) &&
|
|
591
|
+
!businessDetails?.error &&
|
|
592
|
+
(
|
|
593
|
+
<Placeholder Animation={Fade}>
|
|
594
|
+
<PlaceholderLine height={20} />
|
|
595
|
+
<PlaceholderLine height={12} />
|
|
596
|
+
<PlaceholderLine height={12} />
|
|
597
|
+
<PlaceholderLine height={12} style={{ marginBottom: 20 }} />
|
|
598
|
+
</Placeholder>
|
|
599
|
+
)}
|
|
600
|
+
{
|
|
601
|
+
!cartState.loading &&
|
|
602
|
+
businessDetails?.business &&
|
|
603
|
+
Object.values(businessDetails?.business).length > 0 &&
|
|
604
|
+
(
|
|
605
|
+
<>
|
|
606
|
+
<HeaderTitle text={t('BUSINESS_DETAILS', 'Business Details')} />
|
|
607
|
+
<View>
|
|
608
|
+
<OText size={12} lineHeight={18} weight={'400'}>
|
|
609
|
+
{businessDetails?.business?.name}
|
|
610
|
+
</OText>
|
|
611
|
+
<OText size={12} lineHeight={18} weight={'400'}>
|
|
612
|
+
{businessDetails?.business?.email}
|
|
613
|
+
</OText>
|
|
614
|
+
<OText size={12} lineHeight={18} weight={'400'}>
|
|
615
|
+
{businessDetails?.business?.cellphone}
|
|
616
|
+
</OText>
|
|
617
|
+
{!hideBusinessAddress && (
|
|
618
|
+
<OText size={12} lineHeight={18} weight={'400'}>
|
|
619
|
+
{businessDetails?.business?.address}
|
|
620
|
+
</OText>
|
|
621
|
+
)}
|
|
622
|
+
{businessDetails?.business?.address_notes && (
|
|
623
|
+
<>
|
|
624
|
+
<OText
|
|
625
|
+
size={12}
|
|
626
|
+
lineHeight={18}
|
|
627
|
+
numberOfLines={isReadMore ? 20 : 3}
|
|
628
|
+
onTextLayout={onTextLayout}
|
|
629
|
+
>
|
|
630
|
+
{businessDetails?.business?.address_notes}
|
|
631
|
+
</OText>
|
|
632
|
+
{lengthMore && (
|
|
633
|
+
<TouchableOpacity
|
|
634
|
+
onPress={() => setIsReadMore(!isReadMore)}
|
|
635
|
+
>
|
|
636
|
+
<OText size={12} color={theme.colors.primary}>{isReadMore ? t('SHOW_LESS', 'Show less') : t('READ_MORE', 'Read more')}</OText>
|
|
637
|
+
</TouchableOpacity>
|
|
638
|
+
)}
|
|
639
|
+
</>
|
|
640
|
+
)}
|
|
641
|
+
</View>
|
|
642
|
+
</>
|
|
643
|
+
)}
|
|
644
|
+
{businessDetails?.error && businessDetails?.error?.length > 0 && (
|
|
645
|
+
<View>
|
|
646
|
+
<HeaderTitle text={t('BUSINESS_DETAILS', 'Business Details')} />
|
|
647
|
+
<NotFoundSource
|
|
648
|
+
content={businessDetails?.error[0]?.message || businessDetails?.error[0]}
|
|
649
|
+
/>
|
|
650
|
+
</View>
|
|
651
|
+
)}
|
|
652
|
+
</ChBusinessDetails>
|
|
653
|
+
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginHorizontal: -40 }} />
|
|
654
|
+
</ChSection>
|
|
655
|
+
)}
|
|
656
|
+
{!hideCustomerDetails && (
|
|
657
|
+
|
|
658
|
+
<ChSection>
|
|
659
|
+
<ChUserDetails>
|
|
660
|
+
{cartState.loading ? (
|
|
661
|
+
<Placeholder Animation={Fade}>
|
|
662
|
+
<PlaceholderLine height={20} />
|
|
663
|
+
<PlaceholderLine height={12} />
|
|
664
|
+
<PlaceholderLine height={12} />
|
|
665
|
+
<PlaceholderLine height={12} style={{ marginBottom: 20 }} />
|
|
666
|
+
</Placeholder>
|
|
667
|
+
) : (
|
|
668
|
+
(user?.guest_id && !allowedGuest) ? (
|
|
669
|
+
<View>
|
|
670
|
+
<HeaderTitle text={t('CUSTOMER_DETAILS', 'Customer details')} />
|
|
671
|
+
<OButton
|
|
672
|
+
text={t('SIGN_UP', 'Sign up')}
|
|
673
|
+
style={{ borderRadius: 7.6, marginTop: 20 }}
|
|
674
|
+
onClick={() => setOpenModal({ ...openModal, signup: true })}
|
|
675
|
+
/>
|
|
676
|
+
<OButton
|
|
677
|
+
text={t('LOGIN', 'Login')}
|
|
678
|
+
style={{ borderRadius: 7.6, marginTop: 20 }}
|
|
679
|
+
onClick={() => setOpenModal({ ...openModal, login: true })}
|
|
680
|
+
/>
|
|
681
|
+
{isGuestCheckoutEnabled && (
|
|
682
|
+
<OButton
|
|
683
|
+
text={t('CONTINUE_AS_GUEST', 'Continue as guest')}
|
|
684
|
+
textStyle={{ color: theme.colors.black }}
|
|
685
|
+
bgColor={theme.colors.white}
|
|
686
|
+
borderColor={theme.colors.black}
|
|
687
|
+
style={{ borderRadius: 7.6, marginTop: 20 }}
|
|
688
|
+
onClick={() => setAllowedGuest(true)}
|
|
689
|
+
/>
|
|
690
|
+
)}
|
|
691
|
+
</View>
|
|
692
|
+
) : (
|
|
693
|
+
<UserDetails
|
|
694
|
+
isUserDetailsEdit={isUserDetailsEdit}
|
|
695
|
+
HeaderTitle={<HeaderTitle text={t('CUSTOMER_DETAILS', 'Customer Details')} mb={0} />}
|
|
696
|
+
cartStatus={cart?.status}
|
|
697
|
+
businessId={cart?.business_id}
|
|
698
|
+
useValidationFields
|
|
699
|
+
useDefualtSessionManager
|
|
700
|
+
useSessionUser
|
|
701
|
+
isCheckout
|
|
702
|
+
phoneUpdate={phoneUpdate}
|
|
703
|
+
togglePhoneUpdate={togglePhoneUpdate}
|
|
704
|
+
isOrderTypeValidationField
|
|
705
|
+
requiredFields={requiredFields}
|
|
706
|
+
checkoutFields={checkoutFields}
|
|
707
|
+
/>
|
|
708
|
+
)
|
|
709
|
+
)}
|
|
710
|
+
</ChUserDetails>
|
|
711
|
+
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginHorizontal: -40 }} />
|
|
712
|
+
</ChSection>
|
|
713
|
+
)}
|
|
714
|
+
|
|
715
|
+
{options?.type === 1 && !isGiftCardCart && (
|
|
716
|
+
<DeliveryOptionsContainer>
|
|
717
|
+
{cartState.loading || deliveryOptionSelected === undefined ? (
|
|
718
|
+
<View style={{ height: 110 }}>
|
|
719
|
+
<Placeholder Animation={Fade}>
|
|
720
|
+
<PlaceholderLine height={20} />
|
|
721
|
+
<PlaceholderLine height={40} />
|
|
722
|
+
</Placeholder>
|
|
723
|
+
</View>
|
|
724
|
+
) : (
|
|
725
|
+
<ChSection>
|
|
726
|
+
<HeaderTitle text={t('DELIVERY_OPTIONS', 'Delivery options')} />
|
|
727
|
+
<View
|
|
728
|
+
style={{
|
|
729
|
+
backgroundColor: theme.colors.inputDisabled,
|
|
730
|
+
borderRadius: 7.5,
|
|
731
|
+
marginBottom: 20,
|
|
732
|
+
flex: 1
|
|
733
|
+
}}>
|
|
734
|
+
<Picker
|
|
735
|
+
countryCode={undefined}
|
|
736
|
+
visible={isDeliveryOptionModalVisible}
|
|
737
|
+
onClose={() => setIsDeliveryOptionModalVisible(false)}
|
|
738
|
+
withCountryNameButton
|
|
739
|
+
renderFlagButton={() => (
|
|
740
|
+
<TouchableOpacity onPress={() => setIsDeliveryOptionModalVisible(true)}>
|
|
741
|
+
<DeliveryOptionItem backgroundColor={theme?.colors?.inputDisabled}>
|
|
742
|
+
<OText
|
|
743
|
+
size={14}
|
|
744
|
+
>
|
|
745
|
+
{deliveryOptions.find((option: any) => option.value === deliveryOptionSelected)?.label}
|
|
746
|
+
</OText>
|
|
747
|
+
<MaterialIcons name='keyboard-arrow-down' style={styles.icon} />
|
|
748
|
+
</DeliveryOptionItem>
|
|
749
|
+
</TouchableOpacity>
|
|
750
|
+
)}
|
|
751
|
+
flatListProps={{
|
|
752
|
+
keyExtractor: (item: any) => item.value,
|
|
753
|
+
data: deliveryOptions || [],
|
|
754
|
+
renderItem: ({ item }: any) => (
|
|
755
|
+
<TouchableOpacity
|
|
756
|
+
onPress={() => !!cart?.uuid && changeDeliveryOption(item.value)}
|
|
757
|
+
disabled={
|
|
758
|
+
deliveryOptionSelected === item.value
|
|
759
|
+
}
|
|
760
|
+
>
|
|
761
|
+
<DeliveryOptionItem backgroundColor={deliveryOptionSelected === item.value ? theme.colors.inputDisabled : 'white'}>
|
|
762
|
+
<OText>
|
|
763
|
+
{item.label}
|
|
764
|
+
</OText>
|
|
765
|
+
</DeliveryOptionItem>
|
|
766
|
+
</TouchableOpacity>
|
|
767
|
+
)
|
|
768
|
+
}}
|
|
769
|
+
/>
|
|
770
|
+
</View>
|
|
771
|
+
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginHorizontal: -40 }} />
|
|
772
|
+
</ChSection>
|
|
773
|
+
)}
|
|
774
|
+
|
|
775
|
+
</DeliveryOptionsContainer>
|
|
776
|
+
)}
|
|
777
|
+
|
|
778
|
+
{!cartState.loading && (cart?.status === 2 || cart?.status === 4) && (
|
|
779
|
+
<ChSection style={{ paddingBottom: 20 }}>
|
|
780
|
+
<ChErrors>
|
|
781
|
+
{!cartState.loading && cart?.status === 2 && (
|
|
782
|
+
<OText
|
|
783
|
+
style={{ textAlign: 'center' }}
|
|
784
|
+
color={theme.colors.error}
|
|
785
|
+
size={17}
|
|
786
|
+
>
|
|
787
|
+
{t('CART_STATUS_PENDING_MESSAGE_APP', 'Your order is being processed, please wait a little more. if you\'ve been waiting too long, please reload the app')}
|
|
788
|
+
</OText>
|
|
789
|
+
)}
|
|
790
|
+
</ChErrors>
|
|
791
|
+
</ChSection>
|
|
792
|
+
)}
|
|
793
|
+
|
|
794
|
+
{!isGiftCardCart && !hideBusinessMap && (
|
|
795
|
+
<ChSection>
|
|
796
|
+
<ChAddress>
|
|
797
|
+
{(businessDetails?.loading || cartState.loading) ? (
|
|
798
|
+
<Placeholder Animation={Fade}>
|
|
799
|
+
<PlaceholderLine height={20} style={{ marginBottom: 50 }} />
|
|
800
|
+
<PlaceholderLine height={100} />
|
|
801
|
+
</Placeholder>
|
|
802
|
+
) : (
|
|
803
|
+
<AddressDetails
|
|
804
|
+
cart={cart}
|
|
805
|
+
navigation={navigation}
|
|
806
|
+
location={options?.address?.location}
|
|
807
|
+
businessLogo={businessDetails?.business?.logo}
|
|
808
|
+
isCartPending={cart?.status === 2}
|
|
809
|
+
uuid={cartUuid}
|
|
810
|
+
apiKey={configs?.google_maps_api_key?.value}
|
|
811
|
+
mapConfigs={mapConfigs}
|
|
812
|
+
HeaderTitle={<HeaderTitle text={t('DELIVERY_ADDRESS', 'Delivery address')} mb={0} />}
|
|
813
|
+
/>
|
|
814
|
+
)}
|
|
815
|
+
</ChAddress>
|
|
816
|
+
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginTop: 13, marginHorizontal: -40 }} />
|
|
817
|
+
</ChSection>
|
|
818
|
+
)}
|
|
819
|
+
|
|
820
|
+
{driverTipsField &&
|
|
821
|
+
(
|
|
822
|
+
<ChSection>
|
|
823
|
+
<ChDriverTips>
|
|
824
|
+
<HeaderTitle text={t('DRIVER_TIPS', 'Driver Tips')} mb={0} />
|
|
825
|
+
<DriverTips
|
|
826
|
+
uuid={cartUuid}
|
|
827
|
+
businessId={cart?.business_id}
|
|
828
|
+
driverTipsOptions={!driverTipsOptions.includes(0) ? [0, ...driverTipsOptions] : driverTipsOptions}
|
|
829
|
+
isFixedPrice={parseInt(configs?.driver_tip_type?.value, 10) === 1}
|
|
830
|
+
isDriverTipUseCustom={!!parseInt(configs?.driver_tip_use_custom?.value, 10)}
|
|
831
|
+
driverTip={parseInt(configs?.driver_tip_type?.value, 10) === 1
|
|
832
|
+
? cart?.driver_tip
|
|
833
|
+
: cart?.driver_tip_rate}
|
|
834
|
+
useOrderContext
|
|
835
|
+
cart={cart}
|
|
836
|
+
/>
|
|
837
|
+
</ChDriverTips>
|
|
838
|
+
</ChSection>
|
|
839
|
+
)}
|
|
840
|
+
|
|
841
|
+
{!cartState.loading && cart && cart?.status !== 2 && cart?.valid && (
|
|
842
|
+
<ChSection>
|
|
843
|
+
<ChPaymethods>
|
|
844
|
+
<HeaderTitle text={t('PAYMENT_METHOD', 'Payment Method')} mb={0} />
|
|
845
|
+
{!cartState.loading && cart?.status === 4 && (
|
|
846
|
+
<OText
|
|
847
|
+
style={{ textAlign: 'center', marginTop: 20 }}
|
|
848
|
+
color={theme.colors.error}
|
|
849
|
+
size={17}
|
|
850
|
+
>
|
|
851
|
+
{t('CART_STATUS_CANCEL_MESSAGE', 'The payment has not been successful, please try again')}
|
|
852
|
+
</OText>
|
|
853
|
+
)}
|
|
854
|
+
<PaymentOptions
|
|
855
|
+
cart={cart}
|
|
856
|
+
isDisabled={cart?.status === 2}
|
|
857
|
+
businessId={!isGiftCardCart ? businessDetails?.business?.id : -1}
|
|
858
|
+
isLoading={!isGiftCardCart ? businessDetails.loading : false}
|
|
859
|
+
paymethods={businessDetails?.business?.paymethods}
|
|
860
|
+
onPaymentChange={handlePaymethodChange}
|
|
861
|
+
errorCash={errorCash}
|
|
862
|
+
setErrorCash={setErrorCash}
|
|
863
|
+
onNavigationRedirect={onNavigationRedirect}
|
|
864
|
+
paySelected={paymethodSelected}
|
|
865
|
+
handlePaymentMethodClickCustom={handlePaymentMethodClick}
|
|
866
|
+
handlePlaceOrder={handlePlaceOrder}
|
|
867
|
+
merchantId={merchantId}
|
|
868
|
+
urlscheme={urlscheme}
|
|
869
|
+
androidAppId={androidAppId}
|
|
870
|
+
setMethodPaySupported={setMethodPaySupported}
|
|
871
|
+
methodPaySupported={methodPaySupported}
|
|
872
|
+
placeByMethodPay={placeByMethodPay}
|
|
873
|
+
setPlaceByMethodPay={setPlaceByMethodPay}
|
|
874
|
+
cardList={cardList}
|
|
875
|
+
setCardList={setCardList}
|
|
876
|
+
requiredFields={requiredFields}
|
|
877
|
+
openUserModal={setIsOpen}
|
|
878
|
+
paymethodClicked={paymethodClicked}
|
|
879
|
+
setPaymethodClicked={setPaymethodClicked}
|
|
880
|
+
setUserHasCards={setUserHasCards}
|
|
881
|
+
handleOpenGuestSignup={handleOpenGuestSignup}
|
|
882
|
+
guestDisabledError={(!isGuestCheckoutEnabled && !!user?.guest_id)}
|
|
883
|
+
/>
|
|
884
|
+
</ChPaymethods>
|
|
885
|
+
</ChSection>
|
|
886
|
+
)}
|
|
887
|
+
|
|
888
|
+
{!cartState.loading && cart && isWalletEnabled && businessDetails?.business?.configs && (
|
|
889
|
+
<WalletPaymentOptionContainer>
|
|
890
|
+
<PaymentOptionWallet
|
|
891
|
+
cart={cart}
|
|
892
|
+
loyaltyPlansState={loyaltyPlansState}
|
|
893
|
+
businessId={cart?.business_id}
|
|
894
|
+
businessConfigs={businessDetails?.business?.configs}
|
|
895
|
+
/>
|
|
896
|
+
</WalletPaymentOptionContainer>
|
|
897
|
+
)}
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
{!cartState.loading && placeSpotsEnabled && !isGiftCardCart && (
|
|
901
|
+
<>
|
|
902
|
+
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginTop: 30, marginHorizontal: -40 }} />
|
|
903
|
+
<PlaceSpot
|
|
904
|
+
isCheckout
|
|
905
|
+
isInputMode
|
|
906
|
+
cart={cart}
|
|
907
|
+
spotNumberDefault={cartState?.cart?.spot_number ?? cart?.spot_number}
|
|
908
|
+
setPlaceSpotNumber={setPlaceSpotNumber}
|
|
909
|
+
vehicleDefault={cart?.vehicle}
|
|
910
|
+
/>
|
|
911
|
+
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100, marginHorizontal: -40 }} />
|
|
912
|
+
</>
|
|
913
|
+
)}
|
|
914
|
+
|
|
915
|
+
{!cartState.loading && cart && (
|
|
916
|
+
<ChSection>
|
|
917
|
+
<ChCart>
|
|
918
|
+
{cartsWithProducts?.length > 0 && cart?.products?.length === 0 ? (
|
|
919
|
+
<NotFoundSource
|
|
920
|
+
content={t('NOT_FOUND_CARTS', 'Sorry, You don\'t seem to have any carts.')}
|
|
921
|
+
btnTitle={t('SEARCH_REDIRECT', 'Go to Businesses')}
|
|
922
|
+
/>
|
|
923
|
+
) : (
|
|
924
|
+
<>
|
|
925
|
+
<CartHeader>
|
|
926
|
+
<HeaderTitle text={t('MOBILE_FRONT_YOUR_ORDER', 'Your order')} mb={0} />
|
|
927
|
+
{!isGiftCardCart && (
|
|
928
|
+
<TouchableOpacity
|
|
929
|
+
onPress={() => onNavigationRedirect('Business', { store: cart?.business?.slug })}
|
|
930
|
+
>
|
|
931
|
+
<OText
|
|
932
|
+
size={12}
|
|
933
|
+
lineHeight={15}
|
|
934
|
+
color={theme.colors.primary}
|
|
935
|
+
style={{ textDecorationLine: 'underline' }}
|
|
936
|
+
>
|
|
937
|
+
{t('ADD_PRODUCTS', 'Add products')}
|
|
938
|
+
</OText>
|
|
939
|
+
</TouchableOpacity>
|
|
940
|
+
)}
|
|
941
|
+
</CartHeader>
|
|
942
|
+
{isBusinessChangeEnabled && (
|
|
943
|
+
<TouchableOpacity
|
|
944
|
+
onPress={() => setOpenChangeStore(true)}
|
|
945
|
+
style={{ alignSelf: 'flex-start' }}
|
|
946
|
+
>
|
|
947
|
+
<OText
|
|
948
|
+
size={12}
|
|
949
|
+
lineHeight={18}
|
|
950
|
+
color={theme.colors.primary}
|
|
951
|
+
style={{ textDecorationLine: 'underline' }}
|
|
952
|
+
>
|
|
953
|
+
{t('CHANGE_STORE', 'Change store')}
|
|
954
|
+
</OText>
|
|
955
|
+
</TouchableOpacity>
|
|
956
|
+
)}
|
|
957
|
+
<OrderSummary
|
|
958
|
+
cart={cart}
|
|
959
|
+
isCartPending={cart?.status === 2}
|
|
960
|
+
onNavigationRedirect={onNavigationRedirect}
|
|
961
|
+
commentDelayTime={commentDelayTime}
|
|
962
|
+
placeSpotTypes={placeSpotTypes}
|
|
963
|
+
businessConfigs={businessConfigs}
|
|
964
|
+
maxDate={maxDate}
|
|
965
|
+
loyaltyRewardRate={
|
|
966
|
+
creditPointPlanOnBusiness?.accumulation_rate ??
|
|
967
|
+
(!!creditPointPlanOnBusiness && creditPointPlan?.accumulation_rate) ?? 0
|
|
968
|
+
}
|
|
969
|
+
hideCommentsByValidationCheckout={!guestCheckoutComment?.enabled}
|
|
970
|
+
hideCouponByValidationCheckout={!guestCheckoutCoupon?.enabled}
|
|
971
|
+
/>
|
|
972
|
+
</>
|
|
973
|
+
)}
|
|
974
|
+
</ChCart>
|
|
975
|
+
</ChSection>
|
|
976
|
+
)}
|
|
977
|
+
|
|
978
|
+
{!cartState.loading && cart && (
|
|
979
|
+
<View>
|
|
980
|
+
<ChErrors style={{ marginBottom: Platform.OS === 'ios' ? 35 : 10 }}>
|
|
981
|
+
{!cart?.valid_address && cart?.status !== 2 && (
|
|
982
|
+
<OText
|
|
983
|
+
color={theme.colors.error}
|
|
984
|
+
size={12}
|
|
985
|
+
>
|
|
986
|
+
{t('INVALID_CART_ADDRESS', 'Selected address is invalid, please select a closer address.')}
|
|
987
|
+
</OText>
|
|
988
|
+
)}
|
|
989
|
+
|
|
990
|
+
{(!paymethodSelected && cart?.balance > 0) && cart?.status !== 2 && cart?.valid && (
|
|
991
|
+
<OText
|
|
992
|
+
color={theme.colors.error}
|
|
993
|
+
size={12}
|
|
994
|
+
>
|
|
995
|
+
{t('WARNING_NOT_PAYMENT_SELECTED', 'Please, select a payment method to place order.')}
|
|
996
|
+
</OText>
|
|
997
|
+
)}
|
|
998
|
+
|
|
999
|
+
{!cart?.valid_products && cart?.status !== 2 && cart?.total !== 0 && (
|
|
1000
|
+
<>
|
|
1001
|
+
<OText
|
|
1002
|
+
color={theme.colors.error}
|
|
1003
|
+
size={12}
|
|
1004
|
+
>
|
|
1005
|
+
{t('WARNING_INVALID_PRODUCTS_CHECKOUT', 'To continue with your checkout, please remove from your cart the products that are not available.')}
|
|
1006
|
+
</OText>
|
|
1007
|
+
</>
|
|
1008
|
+
)}
|
|
1009
|
+
{cart?.valid_preorder !== undefined && !cart?.valid_preorder && (
|
|
1010
|
+
<OText
|
|
1011
|
+
color={theme.colors.error}
|
|
1012
|
+
size={12}
|
|
1013
|
+
>
|
|
1014
|
+
{t('INVALID_CART_MOMENT', 'Selected schedule time is invalid, please select a schedule into the business schedule interval.')}
|
|
1015
|
+
</OText>
|
|
1016
|
+
)}
|
|
1017
|
+
{validateDriverTipField && !isGiftCardCart &&
|
|
1018
|
+
(
|
|
1019
|
+
<OText
|
|
1020
|
+
color={theme.colors.error}
|
|
1021
|
+
size={12}
|
|
1022
|
+
>
|
|
1023
|
+
{t('WARNING_INVALID_DRIVER_TIP', 'Driver Tip is required.')}
|
|
1024
|
+
</OText>
|
|
1025
|
+
)}
|
|
1026
|
+
{validateCommentsCartField && (
|
|
1027
|
+
<OText
|
|
1028
|
+
color={theme.colors.error}
|
|
1029
|
+
size={12}
|
|
1030
|
+
>
|
|
1031
|
+
{t('WARNING_INVALID_CART_COMMENTS', 'Cart comments is required.')}
|
|
1032
|
+
</OText>
|
|
1033
|
+
)}
|
|
1034
|
+
|
|
1035
|
+
{validateZipcodeCard && (
|
|
1036
|
+
<OText
|
|
1037
|
+
color={theme.colors.error}
|
|
1038
|
+
size={12}
|
|
1039
|
+
>
|
|
1040
|
+
{t('WARNING_CARD_ZIPCODE_REQUIRED', 'Your card selected has not zipcode')}
|
|
1041
|
+
</OText>
|
|
1042
|
+
)}
|
|
1043
|
+
{validateCouponField &&
|
|
1044
|
+
(
|
|
1045
|
+
<OText
|
|
1046
|
+
color={theme.colors.error}
|
|
1047
|
+
size={12}
|
|
1048
|
+
>
|
|
1049
|
+
{t('WARNING_INVALID_COUPON_FIELD', 'Coupon is required.')}
|
|
1050
|
+
</OText>
|
|
1051
|
+
)}
|
|
1052
|
+
{(!isGuestCheckoutEnabled && !!user?.guest_id) && (
|
|
1053
|
+
<OText
|
|
1054
|
+
color={theme.colors.error}
|
|
1055
|
+
size={12}
|
|
1056
|
+
>
|
|
1057
|
+
{t('LOGIN_SIGN_UP_COMPLETE_ORDER', 'Login/Sign up to complete your order.')}
|
|
1058
|
+
</OText>
|
|
1059
|
+
)}
|
|
1060
|
+
</ChErrors>
|
|
1061
|
+
</View>
|
|
1062
|
+
)}
|
|
1063
|
+
<OModal
|
|
1064
|
+
open={openChangeStore}
|
|
1065
|
+
entireModal
|
|
1066
|
+
customClose
|
|
1067
|
+
onClose={() => setOpenChangeStore(false)}
|
|
1068
|
+
>
|
|
1069
|
+
<CartStoresListing
|
|
1070
|
+
cartuuid={cart?.uuid}
|
|
1071
|
+
onClose={() => setOpenChangeStore(false)}
|
|
1072
|
+
/>
|
|
1073
|
+
</OModal>
|
|
1074
|
+
<OModal
|
|
1075
|
+
open={isOpen}
|
|
1076
|
+
onClose={() => setIsOpen(false)}
|
|
1077
|
+
showToastInsideModal
|
|
1078
|
+
>
|
|
1079
|
+
<View style={styles.detailWrapper}>
|
|
1080
|
+
<UserDetails
|
|
1081
|
+
isUserDetailsEdit
|
|
1082
|
+
cartStatus={cart?.status}
|
|
1083
|
+
businessId={cart?.business_id}
|
|
1084
|
+
useDefualtSessionManager
|
|
1085
|
+
useSessionUser
|
|
1086
|
+
isCheckout
|
|
1087
|
+
isEdit
|
|
1088
|
+
phoneUpdate={phoneUpdate}
|
|
1089
|
+
togglePhoneUpdate={togglePhoneUpdate}
|
|
1090
|
+
isOrderTypeValidationField
|
|
1091
|
+
requiredFields={requiredFields}
|
|
1092
|
+
checkoutFields={checkoutFields}
|
|
1093
|
+
isCheckoutPlace
|
|
1094
|
+
hideUpdateButton
|
|
1095
|
+
handlePlaceOrderAsGuest={handlePlaceOrderAsGuest}
|
|
1096
|
+
onClose={() => {
|
|
1097
|
+
setIsOpen(false)
|
|
1098
|
+
if (paymethodClicked) {
|
|
1099
|
+
setPaymethodClicked({
|
|
1100
|
+
...paymethodClicked,
|
|
1101
|
+
confirmed: true
|
|
1102
|
+
})
|
|
1103
|
+
} else {
|
|
1104
|
+
handlePlaceOrder(null, true)
|
|
1105
|
+
}
|
|
1106
|
+
}}
|
|
1107
|
+
setIsOpen={setIsOpen}
|
|
1108
|
+
/>
|
|
1109
|
+
</View>
|
|
1110
|
+
</OModal>
|
|
1111
|
+
<OModal
|
|
1112
|
+
open={openModal.signup}
|
|
1113
|
+
onClose={() => setOpenModal({ ...openModal, signup: false, isGuest: false })}
|
|
1114
|
+
>
|
|
1115
|
+
<ScrollView style={{ paddingHorizontal: 20, width: '100%' }}>
|
|
1116
|
+
<SignupForm
|
|
1117
|
+
handleSuccessSignup={handleSuccessSignup}
|
|
1118
|
+
isGuest
|
|
1119
|
+
signupButtonText={t('SIGNUP', 'Signup')}
|
|
1120
|
+
useSignupByEmail
|
|
1121
|
+
useChekoutFileds
|
|
1122
|
+
/>
|
|
1123
|
+
</ScrollView>
|
|
1124
|
+
</OModal>
|
|
1125
|
+
<OModal
|
|
1126
|
+
open={openModal.login}
|
|
1127
|
+
onClose={() => setOpenModal({ ...openModal, login: false })}
|
|
1128
|
+
>
|
|
1129
|
+
<ScrollView style={{ paddingHorizontal: 20, width: '100%' }}>
|
|
1130
|
+
<LoginForm
|
|
1131
|
+
handleSuccessLogin={handleSuccessLogin}
|
|
1132
|
+
isGuest
|
|
1133
|
+
loginButtonText={t('LOGIN', 'Login')}
|
|
1134
|
+
loginButtonBackground={theme.colors.primary}
|
|
1135
|
+
/>
|
|
1136
|
+
</ScrollView>
|
|
1137
|
+
</OModal>
|
|
1138
|
+
</ChContainer>
|
|
1139
|
+
</Container>
|
|
1140
|
+
{!cartState.loading && cart && cart?.status !== 2 && (
|
|
1141
|
+
<FloatingButton
|
|
1142
|
+
handleClick={
|
|
1143
|
+
isDisabledButtonPlace
|
|
1144
|
+
? () => vibrateApp()
|
|
1145
|
+
: methodsPay.includes(paymethodSelected?.gateway)
|
|
1146
|
+
? () => setPlaceByMethodPay(true)
|
|
1147
|
+
: () => handlePlaceOrder(null)}
|
|
1148
|
+
isSecondaryBtn={isDisabledButtonPlace}
|
|
1149
|
+
disabled={isDisabledButtonPlace}
|
|
1150
|
+
btnText={subtotalWithTaxes >= cart?.minimum
|
|
1151
|
+
? (
|
|
1152
|
+
placing
|
|
1153
|
+
? t('PLACING', 'Placing')
|
|
1154
|
+
: loading
|
|
1155
|
+
? t('LOADING', 'Loading')
|
|
1156
|
+
: t('PLACE_ORDER', 'Place Order')
|
|
1157
|
+
)
|
|
1158
|
+
: (`${t('MINIMUN_SUBTOTAL_ORDER', 'Minimum subtotal order:')} ${parsePrice(cart?.minimum)}`)
|
|
1159
|
+
}
|
|
1160
|
+
btnRightValueShow
|
|
1161
|
+
btnRightValue={parsePrice(cart?.balance)}
|
|
1162
|
+
iosBottom={30}
|
|
1163
|
+
/>
|
|
1164
|
+
)}
|
|
1165
|
+
{webviewPaymethod?.gateway === 'paypal' && showGateway.open && (
|
|
1166
|
+
<PaymentOptionsWebView
|
|
1167
|
+
onNavigationRedirect={onNavigationRedirect}
|
|
1168
|
+
uri={`${ordering.root}/html/paypal_react_native`}
|
|
1169
|
+
user={user}
|
|
1170
|
+
token={token}
|
|
1171
|
+
cart={cart}
|
|
1172
|
+
currency={currency}
|
|
1173
|
+
webviewPaymethod={webviewPaymethod}
|
|
1174
|
+
setShowGateway={setShowGateway}
|
|
1175
|
+
/>
|
|
1176
|
+
)}
|
|
1177
|
+
{webviewPaymethod?.gateway === 'square' && showGateway.open && (
|
|
1178
|
+
<PaymentOptionsWebView
|
|
1179
|
+
onNavigationRedirect={onNavigationRedirect}
|
|
1180
|
+
uri={`https://test-square-f50f7.web.app`}
|
|
1181
|
+
user={user}
|
|
1182
|
+
token={token}
|
|
1183
|
+
cart={cart}
|
|
1184
|
+
currency={currency}
|
|
1185
|
+
webviewPaymethod={webviewPaymethod}
|
|
1186
|
+
setShowGateway={setShowGateway}
|
|
1187
|
+
locationId={'L1NGAY5M6KJRX'}
|
|
1188
|
+
/>
|
|
1189
|
+
)}
|
|
1190
|
+
{cart?.paymethod_data?.gateway === 'credomatic' && cart?.paymethod_data?.status === 2 && showGateway.open && (
|
|
1191
|
+
<PaymentOptionsWebView
|
|
1192
|
+
title={t('CREDOMATIC_PAYMENT', 'Credomatic payment')}
|
|
1193
|
+
onNavigationRedirect={onNavigationRedirect}
|
|
1194
|
+
uri={credomaticUrl}
|
|
1195
|
+
user={user}
|
|
1196
|
+
cart={cart}
|
|
1197
|
+
additionalParams={{
|
|
1198
|
+
type: 'auth',
|
|
1199
|
+
key_id: credomaticKeyId,
|
|
1200
|
+
hash: cart?.paymethod_data?.result?.hash,
|
|
1201
|
+
time: cart?.paymethod_data?.result?.time,
|
|
1202
|
+
amount: cart?.total,
|
|
1203
|
+
orderid: cart?.uuid,
|
|
1204
|
+
ccnumber: cardList?.cards?.[0]?.number,
|
|
1205
|
+
ccexp: cardList?.cards?.[0]?.expiryString,
|
|
1206
|
+
cvv: cardList?.cards?.[0]?.cvc,
|
|
1207
|
+
redirect: credomaticUrl
|
|
1208
|
+
}}
|
|
1209
|
+
webviewPaymethod={webviewPaymethod}
|
|
1210
|
+
setShowGateway={setShowGateway}
|
|
1211
|
+
/>
|
|
1212
|
+
)}
|
|
1213
|
+
</>
|
|
1214
|
+
)
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
export const Checkout = (props: any) => {
|
|
1218
|
+
const {
|
|
1219
|
+
errors,
|
|
1220
|
+
clearErrors,
|
|
1221
|
+
cartUuid,
|
|
1222
|
+
stripePaymentOptions,
|
|
1223
|
+
onNavigationRedirect,
|
|
1224
|
+
} = props
|
|
1225
|
+
|
|
1226
|
+
const [, { showToast }] = useToast();
|
|
1227
|
+
const [, t] = useLanguage();
|
|
1228
|
+
const [{ token }] = useSession();
|
|
1229
|
+
const [ordering] = useApi();
|
|
1230
|
+
const [, { confirmCart }] = useOrder();
|
|
1231
|
+
const { confirmPayment, loading: confirmPaymentLoading } = useConfirmPayment();
|
|
1232
|
+
|
|
1233
|
+
const [cartState, setCartState] = useState<any>({ loading: true, error: [], cart: null });
|
|
1234
|
+
const [orderState] = useOrder()
|
|
1235
|
+
|
|
1236
|
+
const getOrder = async (cartId: any) => {
|
|
1237
|
+
try {
|
|
1238
|
+
let result: any = {}
|
|
1239
|
+
const cartsWithProducts = orderState?.carts && (Object.values(orderState?.carts)?.filter(cart => cart?.products && cart?.products?.length) || null)
|
|
1240
|
+
const cart = cartsWithProducts?.find((cart: any) => cart.uuid === cartId)
|
|
1241
|
+
if (cart) {
|
|
1242
|
+
result = { ...cart }
|
|
1243
|
+
} else {
|
|
1244
|
+
setCartState({ ...cartState, loading: true })
|
|
1245
|
+
const url = `${ordering.root}/carts/${cartId}`
|
|
1246
|
+
const response = await fetch(url, {
|
|
1247
|
+
method: 'GET',
|
|
1248
|
+
headers: {
|
|
1249
|
+
'Content-Type': 'application/json',
|
|
1250
|
+
Authorization: `Bearer ${token}`
|
|
1251
|
+
}
|
|
1252
|
+
})
|
|
1253
|
+
const content = await response.json();
|
|
1254
|
+
result = content.result
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
let publicKey = null
|
|
1258
|
+
try {
|
|
1259
|
+
const { content } = await ordering.setAccessToken(token).paymentCards().getCredentials();
|
|
1260
|
+
if (!content.error) {
|
|
1261
|
+
publicKey = content.result.publishable;
|
|
1262
|
+
}
|
|
1263
|
+
} catch (error) {
|
|
1264
|
+
publicKey = null
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
if (result.status === 1 && result.order?.uuid) {
|
|
1268
|
+
onNavigationRedirect('OrderDetails', { orderId: result.order.uuid })
|
|
1269
|
+
setCartState({ ...cartState, loading: false })
|
|
1270
|
+
} else if (result.status === 2 && result.paymethod_data?.gateway === 'stripe_redirect') {
|
|
1271
|
+
try {
|
|
1272
|
+
const confirmCartRes = await confirmCart(cartUuid)
|
|
1273
|
+
if (confirmCartRes.error) {
|
|
1274
|
+
showToast(ToastType.Error, confirmCartRes.error.message)
|
|
1275
|
+
}
|
|
1276
|
+
if (confirmCartRes.result.order?.uuid) {
|
|
1277
|
+
onNavigationRedirect('OrderDetails', { orderId: confirmCartRes.result.order.uuid, isFromCheckout: true })
|
|
1278
|
+
}
|
|
1279
|
+
setCartState({
|
|
1280
|
+
...cartState,
|
|
1281
|
+
loading: false,
|
|
1282
|
+
cart: result
|
|
1283
|
+
})
|
|
1284
|
+
} catch (err: any) {
|
|
1285
|
+
showToast(ToastType.Error, err?.toString() || err.message)
|
|
1286
|
+
}
|
|
1287
|
+
} else if (result.status === 2 && stripePaymentOptions.includes(result.paymethod_data?.gateway)) {
|
|
1288
|
+
const clientSecret = result.paymethod_data?.result?.client_secret
|
|
1289
|
+
const paymentMethodId = result.paymethod_data?.data?.source_id;
|
|
1290
|
+
|
|
1291
|
+
initStripe({ publishableKey: publicKey });
|
|
1292
|
+
|
|
1293
|
+
try {
|
|
1294
|
+
const { paymentIntent, error } = await confirmPayment(clientSecret, {
|
|
1295
|
+
type: 'Card',
|
|
1296
|
+
paymentMethodId
|
|
1297
|
+
});
|
|
1298
|
+
|
|
1299
|
+
try {
|
|
1300
|
+
const confirmCartRes = await confirmCart(cartUuid)
|
|
1301
|
+
if (confirmCartRes.error) {
|
|
1302
|
+
showToast(ToastType.Error, confirmCartRes.error.message)
|
|
1303
|
+
setCartState({
|
|
1304
|
+
...cartState,
|
|
1305
|
+
loading: false,
|
|
1306
|
+
cart: result
|
|
1307
|
+
})
|
|
1308
|
+
return
|
|
1309
|
+
}
|
|
1310
|
+
if (confirmCartRes.result.order?.uuid) {
|
|
1311
|
+
onNavigationRedirect('OrderDetails', { orderId: confirmCartRes.result.order.uuid, isFromCheckout: true })
|
|
1312
|
+
setCartState({ ...cartState, loading: false })
|
|
1313
|
+
} else {
|
|
1314
|
+
showToast(ToastType.Error, t('FAILED_PAYMENT', 'The payment has failed'));
|
|
1315
|
+
const cart = Array.isArray(result) ? null : result
|
|
1316
|
+
setCartState({
|
|
1317
|
+
...cartState,
|
|
1318
|
+
loading: false,
|
|
1319
|
+
cart,
|
|
1320
|
+
error: cart ? null : result
|
|
1321
|
+
})
|
|
1322
|
+
return
|
|
1323
|
+
}
|
|
1324
|
+
} catch (error: any) {
|
|
1325
|
+
showToast(ToastType.Error, error?.toString() || error.message)
|
|
1326
|
+
}
|
|
1327
|
+
} catch (error) {
|
|
1328
|
+
showToast(ToastType.Error, t('FAILED_PAYMENT', 'The payment has failed'));
|
|
1329
|
+
const cart = Array.isArray(result) ? null : result
|
|
1330
|
+
setCartState({
|
|
1331
|
+
...cartState,
|
|
1332
|
+
loading: false,
|
|
1333
|
+
cart,
|
|
1334
|
+
error: cart ? null : result
|
|
1335
|
+
})
|
|
1336
|
+
}
|
|
1337
|
+
} else {
|
|
1338
|
+
const cart = Array.isArray(result) ? null : result
|
|
1339
|
+
setCartState({
|
|
1340
|
+
...cartState,
|
|
1341
|
+
loading: false,
|
|
1342
|
+
cart,
|
|
1343
|
+
error: cart ? null : result
|
|
1344
|
+
})
|
|
1345
|
+
}
|
|
1346
|
+
} catch (e: any) {
|
|
1347
|
+
setCartState({
|
|
1348
|
+
...cartState,
|
|
1349
|
+
loading: false,
|
|
1350
|
+
error: [e.toString()]
|
|
1351
|
+
})
|
|
1352
|
+
}
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
useEffect(() => {
|
|
1356
|
+
if (errors) {
|
|
1357
|
+
const errorText = manageErrorsToShow(errors)
|
|
1358
|
+
showToast(ToastType.Error, errorText)
|
|
1359
|
+
clearErrors && clearErrors()
|
|
1360
|
+
}
|
|
1361
|
+
}, [errors])
|
|
1362
|
+
|
|
1363
|
+
useEffect(() => {
|
|
1364
|
+
if (token && cartUuid) {
|
|
1365
|
+
getOrder(cartUuid)
|
|
1366
|
+
}
|
|
1367
|
+
}, [token, cartUuid])
|
|
1368
|
+
|
|
1369
|
+
const checkoutProps = {
|
|
1370
|
+
...props,
|
|
1371
|
+
UIComponent: CheckoutUI,
|
|
1372
|
+
cartState,
|
|
1373
|
+
uuid: cartUuid
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
return (
|
|
1377
|
+
<>
|
|
1378
|
+
<CheckoutController {...checkoutProps} />
|
|
1379
|
+
</>
|
|
1380
|
+
)
|
|
1381
|
+
}
|