ordering-ui-react-native 0.19.2-testing → 0.19.3-release
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -5
- package/src/DeliveryApp.tsx +43 -1
- package/src/components/BusinessInformation/index.tsx +10 -9
- package/src/components/BusinessesListing/index.tsx +1 -1
- package/src/components/VerifyPhone/styles.tsx +1 -2
- package/src/components/shared/OToast.tsx +3 -2
- package/src/utils/index.tsx +2 -2
- package/themes/business/index.tsx +2 -0
- package/themes/business/src/components/AcceptOrRejectOrder/index.tsx +9 -2
- package/themes/business/src/components/BusinessController/index.tsx +19 -17
- package/themes/business/src/components/BusinessProductList/AccordionDropdown.tsx +63 -0
- package/themes/business/src/components/BusinessProductList/IterateCategories.tsx +108 -0
- package/themes/business/src/components/BusinessProductList/ProductList.tsx +196 -0
- package/themes/business/src/components/BusinessProductList/index.tsx +196 -0
- package/themes/business/src/components/BusinessProductList/styles.tsx +10 -0
- package/themes/business/src/components/Chat/index.tsx +41 -13
- package/themes/business/src/components/DriverMap/index.tsx +4 -2
- package/themes/business/src/components/DriverSchedule/index.tsx +5 -5
- package/themes/business/src/components/FloatingButton/index.tsx +34 -31
- package/themes/business/src/components/MapView/index.tsx +11 -7
- package/themes/business/src/components/MessagesOption/index.tsx +22 -94
- package/themes/business/src/components/NewOrderNotification/index.tsx +121 -103
- package/themes/business/src/components/OrderDetails/Delivery.tsx +19 -10
- package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +88 -51
- package/themes/business/src/components/OrderDetails/OrderHeaderComponent.tsx +26 -6
- package/themes/business/src/components/OrderDetailsLogistic/index.tsx +6 -1
- package/themes/business/src/components/OrderSummary/index.tsx +27 -13
- package/themes/business/src/components/OrdersListManager/index.tsx +7 -2
- package/themes/business/src/components/OrdersListManager/utils.tsx +1 -1
- package/themes/business/src/components/OrdersOption/index.tsx +83 -37
- package/themes/business/src/components/PreviousMessages/FooterMessageComponent.tsx +103 -0
- package/themes/business/src/components/PreviousMessages/index.tsx +97 -55
- package/themes/business/src/components/PreviousOrders/OrderItem.tsx +24 -31
- package/themes/business/src/components/PreviousOrders/OrderList.tsx +93 -0
- package/themes/business/src/components/PreviousOrders/OrdersGroupedItem.tsx +1 -1
- package/themes/business/src/components/PreviousOrders/index.tsx +192 -220
- package/themes/business/src/components/PreviousOrders/styles.tsx +10 -0
- package/themes/business/src/components/ReviewCustomer/index.tsx +2 -0
- package/themes/business/src/components/SearchBar/index.tsx +2 -1
- package/themes/business/src/components/StoresList/index.tsx +5 -3
- package/themes/business/src/components/UserProfileForm/index.tsx +27 -10
- package/themes/business/src/components/WebsocketStatus/index.tsx +171 -0
- package/themes/business/src/components/WebsocketStatus/styles.tsx +28 -0
- package/themes/business/src/types/index.tsx +10 -0
- package/themes/doordash/src/components/BusinessesListing/index.tsx +1 -1
- package/themes/doordash/src/components/LoginForm/index.tsx +1 -2
- package/themes/instacart/src/components/BusinessesListing/index.tsx +1 -1
- package/themes/kiosk/src/components/Checkout/index.tsx +6 -0
- package/themes/kiosk/src/components/LoginForm/index.tsx +124 -96
- package/themes/kiosk/src/components/NavBar/index.tsx +14 -14
- package/themes/kiosk/src/components/OptionCard/index.tsx +1 -1
- package/themes/kiosk/src/components/OrderTypeCardSelector/index.tsx +8 -10
- package/themes/kiosk/src/components/shared/OButton.tsx +5 -18
- package/themes/original/index.tsx +7 -3
- package/themes/original/src/components/AddressForm/index.tsx +2 -2
- package/themes/original/src/components/AddressForm/styles.tsx +1 -1
- package/themes/original/src/components/AddressList/index.tsx +4 -7
- package/themes/original/src/components/AddressList/styles.tsx +4 -4
- package/themes/original/src/components/AppleLogin/index.tsx +4 -4
- package/themes/original/src/components/BusinessBasicInformation/index.tsx +3 -3
- package/themes/original/src/components/BusinessBasicInformation/styles.tsx +1 -1
- package/themes/original/src/components/BusinessController/index.tsx +9 -6
- package/themes/original/src/components/BusinessController/styles.tsx +8 -7
- package/themes/original/src/components/BusinessInformation/index.tsx +35 -3
- package/themes/original/src/components/BusinessInformation/styles.tsx +2 -2
- package/themes/original/src/components/BusinessItemAccordion/index.tsx +11 -7
- package/themes/original/src/components/BusinessListingSearch/BusinessSearchFooter.tsx +317 -0
- package/themes/original/src/components/BusinessListingSearch/BusinessSearchHeader.tsx +96 -0
- package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/index.tsx +1 -1
- package/themes/original/src/components/BusinessListingSearch/index.tsx +56 -361
- package/themes/original/src/components/BusinessListingSearch/styles.tsx +1 -1
- package/themes/original/src/components/BusinessPreorder/index.tsx +3 -4
- package/themes/original/src/components/BusinessProductsCategories/index.tsx +1 -1
- package/themes/original/src/components/BusinessProductsList/index.tsx +2 -2
- package/themes/original/src/components/BusinessProductsList/styles.tsx +0 -3
- package/themes/original/src/components/BusinessProductsListing/index.tsx +43 -19
- package/themes/original/src/components/BusinessProductsListing/styles.tsx +3 -4
- package/themes/original/src/components/BusinessReviews/index.tsx +1 -1
- package/themes/original/src/components/BusinessesListing/Layout/Appointment/index.tsx +1 -1
- package/themes/original/src/components/BusinessesListing/Layout/Appointment/styles.tsx +5 -5
- package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListFooter.tsx +69 -0
- package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListHeader.tsx +406 -0
- package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListing.tsx +76 -0
- package/themes/original/src/components/BusinessesListing/Layout/Original/index.tsx +29 -402
- package/themes/original/src/components/BusinessesListing/Layout/Original/styles.tsx +1 -1
- package/themes/original/src/components/BusinessesListing/index.tsx +0 -1
- package/themes/original/src/components/Cart/index.tsx +27 -8
- package/themes/original/src/components/CartContent/index.tsx +61 -39
- package/themes/original/src/components/CartStoresListing/styles.tsx +2 -2
- package/themes/original/src/components/Checkout/index.tsx +199 -55
- package/themes/original/src/components/Checkout/styles.tsx +17 -0
- package/themes/original/src/components/CitiesControl/styles.tsx +1 -1
- package/themes/original/src/components/DatePicker/index.tsx +17 -0
- package/themes/original/src/components/DatePicker/styles.tsx +20 -0
- package/themes/original/src/components/Favorite/index.tsx +4 -9
- package/themes/original/src/components/Favorite/styles.tsx +0 -2
- package/themes/original/src/components/FloatingButton/styles.tsx +1 -1
- package/themes/original/src/components/GPSButton/index.tsx +1 -1
- package/themes/original/src/components/GiftCard/GiftCardUI/index.tsx +8 -3
- package/themes/original/src/components/GiftCard/PurchaseGiftCard/index.tsx +36 -3
- package/themes/original/src/components/GiftCard/PurchaseGiftCard/styles.tsx +1 -1
- package/themes/original/src/components/GiftCard/RedeemGiftCard/index.tsx +67 -4
- package/themes/original/src/components/GiftCard/RedeemGiftCard/styles.tsx +1 -1
- package/themes/original/src/components/GiftCard/SendGiftCard/index.tsx +2 -2
- package/themes/original/src/components/GiftCard/SendGiftCard/styles.tsx +1 -1
- package/themes/original/src/components/GoogleMap/index.tsx +50 -5
- package/themes/original/src/components/HighestRatedBusinesses/index.tsx +2 -2
- package/themes/original/src/components/HighestRatedBusinesses/styles.tsx +1 -1
- package/themes/original/src/components/Home/index.tsx +1 -1
- package/themes/original/src/components/LastOrder/index.tsx +2 -1
- package/themes/original/src/components/LastOrders/index.tsx +2 -1
- package/themes/original/src/components/LoginForm/Otp/index.tsx +53 -47
- package/themes/original/src/components/LoginForm/index.tsx +6 -1
- package/themes/original/src/components/Messages/index.tsx +9 -4
- package/themes/original/src/components/Messages/styles.tsx +1 -1
- package/themes/original/src/components/MomentOption/index.tsx +4 -4
- package/themes/original/src/components/MomentSelector/index.tsx +1 -1
- package/themes/original/src/components/MultiCart/index.tsx +1 -1
- package/themes/original/src/components/MultiCartsPaymethodsAndWallets/index.tsx +13 -4
- package/themes/original/src/components/MultiCheckout/index.tsx +184 -51
- package/themes/original/src/components/MultiOrdersDetails/index.tsx +1 -1
- package/themes/original/src/components/MyOrders/index.tsx +5 -5
- package/themes/original/src/components/NavBar/index.tsx +3 -1
- package/themes/original/src/components/NetworkError/index.tsx +2 -3
- package/themes/original/src/components/NetworkError/styles.tsx +2 -2
- package/themes/original/src/components/Notifications/index.tsx +4 -8
- package/themes/original/src/components/Notifications/styles.tsx +0 -1
- package/themes/original/src/components/OrderDetails/OrderHistory.tsx +7 -3
- package/themes/original/src/components/OrderDetails/index.tsx +716 -667
- package/themes/original/src/components/OrderDetails/styles.tsx +24 -8
- package/themes/original/src/components/OrderProgress/index.tsx +7 -7
- package/themes/original/src/components/OrderProgress/styles.tsx +1 -1
- package/themes/original/src/components/OrderSummary/index.tsx +5 -3
- package/themes/original/src/components/OrderTypeSelector/index.tsx +5 -6
- package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/styles.tsx +1 -1
- package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/styles.tsx +1 -1
- package/themes/original/src/components/OrdersOption/index.tsx +4 -3
- package/themes/original/src/components/OrdersOption/styles.tsx +1 -1
- package/themes/original/src/components/PageBanner/index.tsx +3 -0
- package/themes/original/src/components/PaymentOptionStripe/styles.tsx +3 -0
- package/themes/original/src/components/PaymentOptionWallet/index.tsx +56 -56
- package/themes/original/src/components/PaymentOptions/index.tsx +41 -32
- package/themes/original/src/components/PhoneInputNumber/index.tsx +15 -1
- package/themes/original/src/components/ProductForm/ActionButton.tsx +120 -0
- package/themes/original/src/components/ProductForm/ExtraOptions.tsx +56 -0
- package/themes/original/src/components/ProductForm/index.tsx +81 -167
- package/themes/original/src/components/ProductForm/styles.tsx +1 -1
- package/themes/original/src/components/ProductItemAccordion/index.tsx +5 -0
- package/themes/original/src/components/ProductOptionSubOption/index.tsx +120 -79
- package/themes/original/src/components/ProductOptionSubOption/styles.tsx +10 -9
- package/themes/original/src/components/ProfessionalProfile/styles.tsx +3 -3
- package/themes/original/src/components/Promotions/index.tsx +4 -4
- package/themes/original/src/components/Promotions/styles.tsx +0 -2
- package/themes/original/src/components/ReviewDriver/styles.tsx +1 -1
- package/themes/original/src/components/ReviewOrder/styles.tsx +1 -1
- package/themes/original/src/components/ReviewProducts/styles.tsx +1 -1
- package/themes/original/src/components/ServiceForm/index.tsx +2 -2
- package/themes/original/src/components/ServiceForm/styles.tsx +4 -4
- package/themes/original/src/components/SingleOrderCard/index.tsx +4 -3
- package/themes/original/src/components/SingleProductCard/styles.tsx +0 -3
- package/themes/original/src/components/StripeCardsList/index.tsx +53 -7
- package/themes/original/src/components/StripeElementsForm/index.tsx +1 -1
- package/themes/original/src/components/StripeElementsForm/naked.tsx +12 -1
- package/themes/original/src/components/UpsellingProducts/UpsellingContent.tsx +170 -0
- package/themes/original/src/components/UpsellingProducts/UpsellingLayout.tsx +86 -0
- package/themes/original/src/components/UpsellingProducts/index.tsx +15 -199
- package/themes/original/src/components/UpsellingProducts/styles.tsx +19 -0
- package/themes/original/src/components/UserFormDetails/index.tsx +53 -7
- package/themes/original/src/components/UserProfile/index.tsx +1 -1
- package/themes/original/src/components/UserProfileForm/index.tsx +30 -36
- package/themes/original/src/components/UserVerification/index.tsx +55 -50
- package/themes/original/src/components/WalletTransactions/styles.tsx +1 -0
- package/themes/original/src/components/Wallets/index.tsx +8 -9
- package/themes/original/src/components/Wallets/styles.tsx +1 -1
- package/themes/original/src/components/shared/HeaderTitle.tsx +1 -1
- package/themes/original/src/components/shared/OInput.tsx +1 -4
- package/themes/original/src/components/shared/OModal.tsx +12 -14
- package/themes/original/src/layouts/Container.tsx +5 -3
- package/themes/original/src/types/index.tsx +10 -2
- package/themes/original/src/utils/index.tsx +124 -0
- package/themes/uber-eats/src/components/BusinessesListing/index.tsx +1 -1
- package/src/navigators/BottomNavigator.tsx +0 -117
- package/src/navigators/CheckoutNavigator.tsx +0 -66
- package/src/navigators/HomeNavigator.tsx +0 -202
- package/src/navigators/NavigationRef.tsx +0 -7
- package/src/navigators/RootNavigator.tsx +0 -269
- package/src/pages/Account.tsx +0 -34
- package/src/pages/AddressForm.tsx +0 -62
- package/src/pages/AddressList.tsx +0 -24
- package/src/pages/BusinessProductsList.tsx +0 -81
- package/src/pages/BusinessesListing.tsx +0 -43
- package/src/pages/CartList.tsx +0 -49
- package/src/pages/Checkout.tsx +0 -101
- package/src/pages/ForgotPassword.tsx +0 -24
- package/src/pages/Help.tsx +0 -23
- package/src/pages/HelpAccountAndPayment.tsx +0 -23
- package/src/pages/HelpGuide.tsx +0 -23
- package/src/pages/HelpOrder.tsx +0 -23
- package/src/pages/Home.tsx +0 -36
- package/src/pages/IntroductoryTutorial.tsx +0 -170
- package/src/pages/Login.tsx +0 -47
- package/src/pages/MomentOption.tsx +0 -30
- package/src/pages/MultiCheckout.tsx +0 -31
- package/src/pages/MultiOrdersDetails.tsx +0 -27
- package/src/pages/MyOrders.tsx +0 -40
- package/src/pages/NetworkError.tsx +0 -24
- package/src/pages/NotFound.tsx +0 -22
- package/src/pages/OrderDetails.tsx +0 -25
- package/src/pages/ProductDetails.tsx +0 -55
- package/src/pages/Profile.tsx +0 -36
- package/src/pages/ReviewDriver.tsx +0 -30
- package/src/pages/ReviewOrder.tsx +0 -32
- package/src/pages/ReviewProducts.tsx +0 -30
- package/src/pages/Sessions.tsx +0 -22
- package/src/pages/Signup.tsx +0 -53
- package/src/pages/SpinnerLoader.tsx +0 -10
- package/src/pages/Splash.tsx +0 -21
|
@@ -7,6 +7,7 @@ import {
|
|
|
7
7
|
import { useTheme } from 'styled-components/native';
|
|
8
8
|
import { StyleSheet, View } from 'react-native'
|
|
9
9
|
import IconAntDesign from 'react-native-vector-icons/AntDesign';
|
|
10
|
+
import FastImage from 'react-native-fast-image';
|
|
10
11
|
|
|
11
12
|
import {
|
|
12
13
|
Container,
|
|
@@ -14,9 +15,12 @@ import {
|
|
|
14
15
|
QuantityControl,
|
|
15
16
|
Checkbox,
|
|
16
17
|
PositionControl,
|
|
17
|
-
Circle
|
|
18
|
+
Circle,
|
|
19
|
+
Logo
|
|
18
20
|
} from './styles'
|
|
19
21
|
import { OIcon, OText } from '../shared'
|
|
22
|
+
import { InView } from 'react-native-intersection-observer'
|
|
23
|
+
import { Placeholder, PlaceholderLine } from 'rn-placeholder';
|
|
20
24
|
|
|
21
25
|
export const ProductOptionSubOptionUI = (props: any) => {
|
|
22
26
|
const {
|
|
@@ -29,7 +33,9 @@ export const ProductOptionSubOptionUI = (props: any) => {
|
|
|
29
33
|
toggleSelect,
|
|
30
34
|
changePosition,
|
|
31
35
|
disabled,
|
|
32
|
-
setIsScrollAvailable
|
|
36
|
+
setIsScrollAvailable,
|
|
37
|
+
image,
|
|
38
|
+
enableIntersection
|
|
33
39
|
} = props
|
|
34
40
|
|
|
35
41
|
const disableIncrement = option?.limit_suboptions_by_max ? balance === option?.max || state.quantity === suboption?.max : state.quantity === suboption?.max || (!state.selected && balance === option?.max)
|
|
@@ -37,12 +43,25 @@ export const ProductOptionSubOptionUI = (props: any) => {
|
|
|
37
43
|
|
|
38
44
|
const theme = useTheme();
|
|
39
45
|
const [, t] = useLanguage()
|
|
40
|
-
const [{ parsePrice }] = useUtils()
|
|
46
|
+
const [{ parsePrice, optimizeImage }] = useUtils()
|
|
41
47
|
const [showMessage, setShowMessage] = useState(false)
|
|
42
48
|
const [isDirty, setIsDirty] = useState(false)
|
|
49
|
+
const [isIntersectionObserver, setIsIntersectionObserver] = useState(!enableIntersection)
|
|
43
50
|
|
|
44
51
|
const iconsSize = 20
|
|
45
52
|
|
|
53
|
+
const styles = StyleSheet.create({
|
|
54
|
+
icon: {
|
|
55
|
+
borderRadius: 7.6,
|
|
56
|
+
width: 60,
|
|
57
|
+
height: 60
|
|
58
|
+
},
|
|
59
|
+
logo: {
|
|
60
|
+
borderRadius: 10,
|
|
61
|
+
marginLeft: 3,
|
|
62
|
+
},
|
|
63
|
+
});
|
|
64
|
+
|
|
46
65
|
const handleSuboptionClick = () => {
|
|
47
66
|
toggleSelect()
|
|
48
67
|
setIsDirty(true)
|
|
@@ -52,6 +71,10 @@ export const ProductOptionSubOptionUI = (props: any) => {
|
|
|
52
71
|
}
|
|
53
72
|
}
|
|
54
73
|
|
|
74
|
+
const handleChangeInterSection = (inView: boolean) => {
|
|
75
|
+
setIsIntersectionObserver(inView)
|
|
76
|
+
}
|
|
77
|
+
|
|
55
78
|
useEffect(() => {
|
|
56
79
|
if (balance === option?.max && state?.selected && isDirty) {
|
|
57
80
|
setIsDirty(false)
|
|
@@ -66,92 +89,110 @@ export const ProductOptionSubOptionUI = (props: any) => {
|
|
|
66
89
|
}, [balance])
|
|
67
90
|
|
|
68
91
|
return (
|
|
69
|
-
<
|
|
70
|
-
|
|
71
|
-
<
|
|
72
|
-
{(
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
state?.selected ? (
|
|
80
|
-
<OIcon src={theme.images.general.radio_act} color={theme.colors.primary} width={16} />
|
|
92
|
+
<InView onChange={(inView: boolean) => handleChangeInterSection(inView)} triggerOnce={true}>
|
|
93
|
+
{isIntersectionObserver ? (
|
|
94
|
+
<Container onPress={!((option?.with_half_option || option?.allow_suboption_quantity) && state?.selected) ? () => handleSuboptionClick() : null}>
|
|
95
|
+
<IconControl disabled={disabled} onPress={() => handleSuboptionClick()}>
|
|
96
|
+
{((option?.min === 0 && option?.max === 1) || option?.max > 1) ? (
|
|
97
|
+
state?.selected ? (
|
|
98
|
+
<OIcon src={theme.images.general.check_act} color={theme.colors.primary} width={16} />
|
|
99
|
+
) : (
|
|
100
|
+
<OIcon src={theme.images.general.check_nor} color={theme.colors.disabled} width={16} />
|
|
101
|
+
)
|
|
81
102
|
) : (
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
/>
|
|
98
|
-
</Checkbox>
|
|
99
|
-
<OText size={12} mLeft={5} mRight={5}>
|
|
100
|
-
{state.quantity}
|
|
101
|
-
</OText>
|
|
102
|
-
<Checkbox disabled={disabled || disableIncrement} onPress={increment}>
|
|
103
|
-
<IconAntDesign
|
|
104
|
-
name='pluscircleo'
|
|
105
|
-
size={iconsSize}
|
|
106
|
-
color={disableIncrement || disabled ? theme.colors.disabled : theme.colors.primary}
|
|
103
|
+
state?.selected ? (
|
|
104
|
+
<OIcon src={theme.images.general.radio_act} color={theme.colors.primary} width={16} />
|
|
105
|
+
) : (
|
|
106
|
+
<OIcon src={theme.images.general.radio_nor} color={theme.colors.disabled} width={16} />
|
|
107
|
+
)
|
|
108
|
+
)}
|
|
109
|
+
{image && (
|
|
110
|
+
<Logo style={styles.logo}>
|
|
111
|
+
<FastImage
|
|
112
|
+
style={styles.icon}
|
|
113
|
+
source={{
|
|
114
|
+
uri: optimizeImage(image, 'h_100,c_limit'),
|
|
115
|
+
priority: FastImage.priority.normal,
|
|
116
|
+
}}
|
|
117
|
+
resizeMode={FastImage.resizeMode.cover}
|
|
107
118
|
/>
|
|
108
|
-
</
|
|
109
|
-
|
|
119
|
+
</Logo>
|
|
120
|
+
)}
|
|
121
|
+
<OText size={12} lineHeight={18} color={theme.colors.textSecondary} mLeft={5} style={{ flex: 1 }}>
|
|
122
|
+
{suboption?.name}
|
|
123
|
+
</OText>
|
|
124
|
+
</IconControl>
|
|
125
|
+
{option?.allow_suboption_quantity && state?.selected && (
|
|
126
|
+
<QuantityControl>
|
|
127
|
+
<>
|
|
128
|
+
<Checkbox disabled={disabled || state.quantity === 0} onPress={decrement}>
|
|
129
|
+
<IconAntDesign
|
|
130
|
+
name='minuscircleo'
|
|
131
|
+
size={iconsSize}
|
|
132
|
+
color={state.quantity === 0 || disabled ? theme.colors.disabled : theme.colors.primary}
|
|
133
|
+
/>
|
|
134
|
+
</Checkbox>
|
|
135
|
+
<OText size={12}>
|
|
136
|
+
{state.quantity}
|
|
137
|
+
</OText>
|
|
138
|
+
<Checkbox disabled={disabled || disableIncrement} onPress={increment}>
|
|
139
|
+
<IconAntDesign
|
|
140
|
+
name='pluscircleo'
|
|
141
|
+
size={iconsSize}
|
|
142
|
+
color={disableIncrement || disabled ? theme.colors.disabled : theme.colors.primary}
|
|
143
|
+
/>
|
|
144
|
+
</Checkbox>
|
|
145
|
+
</>
|
|
146
|
+
</QuantityControl>
|
|
110
147
|
)}
|
|
111
|
-
</QuantityControl>
|
|
112
|
-
<PositionControl>
|
|
113
148
|
{option?.with_half_option && state?.selected && (
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
<
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
<
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
<
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
149
|
+
<PositionControl>
|
|
150
|
+
<>
|
|
151
|
+
<Circle disabled={disabled} onPress={() => changePosition('left')}>
|
|
152
|
+
<OIcon
|
|
153
|
+
src={theme.images.general.half_l}
|
|
154
|
+
color={state.selected && state.position === 'left' ? theme.colors.primary : '#cbcbcb'}
|
|
155
|
+
width={20}
|
|
156
|
+
height={20}
|
|
157
|
+
style={styles.inverse}
|
|
158
|
+
/>
|
|
159
|
+
</Circle>
|
|
160
|
+
<Circle disabled={disabled} onPress={() => changePosition('whole')}>
|
|
161
|
+
<OIcon
|
|
162
|
+
src={theme.images.general.half_f}
|
|
163
|
+
color={state.selected && state.position === 'whole' ? theme.colors.primary : '#cbcbcb'}
|
|
164
|
+
width={20}
|
|
165
|
+
height={20}
|
|
166
|
+
/>
|
|
167
|
+
</Circle>
|
|
168
|
+
<Circle disabled={disabled} onPress={() => changePosition('right')}>
|
|
169
|
+
<OIcon
|
|
170
|
+
src={theme.images.general.half_r}
|
|
171
|
+
color={state.selected && state.position === 'right' ? theme.colors.primary : '#cbcbcb'}
|
|
172
|
+
width={20}
|
|
173
|
+
height={20}
|
|
174
|
+
/>
|
|
175
|
+
</Circle>
|
|
176
|
+
</>
|
|
177
|
+
</PositionControl>
|
|
178
|
+
)}
|
|
179
|
+
{price > 0 && (
|
|
180
|
+
<OText size={12} lineHeight={18} color={theme.colors.textSecondary} style={{ width: 70, maxWidth: 70 }}>
|
|
181
|
+
+ {parsePrice(price)}
|
|
182
|
+
</OText>
|
|
141
183
|
)}
|
|
142
|
-
</
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
</Container>
|
|
184
|
+
</Container>
|
|
185
|
+
) : (
|
|
186
|
+
<Placeholder>
|
|
187
|
+
<PlaceholderLine height={25} />
|
|
188
|
+
</Placeholder>
|
|
189
|
+
)}
|
|
149
190
|
{showMessage && (
|
|
150
191
|
<OText size={10} mLeft={4} mRight={4} style={{ flex: 1, textAlign: 'center' }} color={theme.colors.primary}>
|
|
151
192
|
{`${t('OPTIONS_MAX_LIMIT', 'Maximum options to choose')}: ${option?.max}`}
|
|
152
193
|
</OText>
|
|
153
194
|
)}
|
|
154
|
-
</
|
|
195
|
+
</InView>
|
|
155
196
|
)
|
|
156
197
|
}
|
|
157
198
|
|
|
@@ -9,30 +9,31 @@ export const Container = styled.TouchableOpacity`
|
|
|
9
9
|
|
|
10
10
|
export const IconControl = styled.TouchableOpacity`
|
|
11
11
|
flex-direction: row;
|
|
12
|
-
padding: 10px;
|
|
13
|
-
width:
|
|
12
|
+
padding: 10px 0 10px 10px;
|
|
13
|
+
width: 50%;
|
|
14
14
|
align-items: center;
|
|
15
15
|
`
|
|
16
16
|
|
|
17
17
|
export const QuantityControl = styled.View`
|
|
18
18
|
flex-direction: row;
|
|
19
19
|
align-items: center;
|
|
20
|
-
justify-content:
|
|
21
|
-
|
|
22
|
-
flex: 1;
|
|
23
|
-
width: 60px;
|
|
20
|
+
justify-content: space-between;
|
|
21
|
+
width: 62px;
|
|
24
22
|
`
|
|
25
23
|
|
|
26
24
|
export const PositionControl = styled.View`
|
|
27
25
|
flex-direction: row;
|
|
28
26
|
align-items: center;
|
|
29
|
-
margin-right: 5px;
|
|
30
|
-
flex: 1;
|
|
31
27
|
`
|
|
32
28
|
|
|
33
29
|
export const Checkbox = styled.TouchableOpacity`
|
|
34
30
|
`
|
|
35
31
|
|
|
36
32
|
export const Circle = styled.TouchableOpacity`
|
|
37
|
-
margin: 0
|
|
33
|
+
margin: 0 1.5px;
|
|
38
34
|
`
|
|
35
|
+
|
|
36
|
+
export const Logo = styled.View`
|
|
37
|
+
height: 65px;
|
|
38
|
+
width: 65px;
|
|
39
|
+
`;
|
|
@@ -12,7 +12,7 @@ export const ProfessionalPhoto = styled.ImageBackground`
|
|
|
12
12
|
|
|
13
13
|
export const InfoWrapper = styled.View`
|
|
14
14
|
margin-vertical: 30px;
|
|
15
|
-
padding-horizontal:
|
|
15
|
+
padding-horizontal: 20px;
|
|
16
16
|
`
|
|
17
17
|
|
|
18
18
|
export const Divider = styled.View`
|
|
@@ -22,7 +22,7 @@ export const Divider = styled.View`
|
|
|
22
22
|
`
|
|
23
23
|
|
|
24
24
|
export const ScheduleWrapper = styled.View`
|
|
25
|
-
padding-horizontal:
|
|
25
|
+
padding-horizontal: 20px;
|
|
26
26
|
margin-top: 30px;
|
|
27
27
|
`
|
|
28
28
|
|
|
@@ -43,4 +43,4 @@ export const CalendarWrapper = styled.View`
|
|
|
43
43
|
border-color: ${(props: any) => props.theme.colors.backgroundGray200};
|
|
44
44
|
border-radius: 7.6px;
|
|
45
45
|
padding: 15px;
|
|
46
|
-
`
|
|
46
|
+
`
|
|
@@ -19,7 +19,7 @@ import { useTheme } from 'styled-components/native';
|
|
|
19
19
|
import { OButton, OIcon, OModal, OText } from '../shared'
|
|
20
20
|
import { Placeholder, PlaceholderLine } from 'rn-placeholder'
|
|
21
21
|
import { NotFoundSource } from '../NotFoundSource'
|
|
22
|
-
import { View, StyleSheet, ScrollView, RefreshControl } from 'react-native'
|
|
22
|
+
import { View, StyleSheet, ScrollView, RefreshControl, Platform } from 'react-native'
|
|
23
23
|
import { PromotionParams } from '../../types'
|
|
24
24
|
import { Container } from '../../layouts/Container'
|
|
25
25
|
|
|
@@ -98,8 +98,6 @@ const PromotionsUI = (props: PromotionParams) => {
|
|
|
98
98
|
|
|
99
99
|
return (
|
|
100
100
|
<Container
|
|
101
|
-
noPadding
|
|
102
|
-
pt={20}
|
|
103
101
|
refreshControl={
|
|
104
102
|
<RefreshControl
|
|
105
103
|
refreshing={refreshing}
|
|
@@ -112,7 +110,9 @@ const PromotionsUI = (props: PromotionParams) => {
|
|
|
112
110
|
titleAlign={'center'}
|
|
113
111
|
onActionLeft={() => navigation.goBack()}
|
|
114
112
|
showCall={false}
|
|
115
|
-
|
|
113
|
+
paddingTop={Platform.OS === 'ios' ? 20 : 10}
|
|
114
|
+
style={{ paddingVertical: 0 }}
|
|
115
|
+
btnStyle={{ paddingLeft: 0 }}
|
|
116
116
|
/>
|
|
117
117
|
<PromotionsContainer>
|
|
118
118
|
<SearchBarContainer>
|
|
@@ -116,7 +116,7 @@ const ServiceFormUI = (props: ServiceFormParams) => {
|
|
|
116
116
|
marginHorizontal: 0
|
|
117
117
|
},
|
|
118
118
|
professionalList: {
|
|
119
|
-
paddingHorizontal:
|
|
119
|
+
paddingHorizontal: 20,
|
|
120
120
|
paddingVertical: 30,
|
|
121
121
|
}
|
|
122
122
|
})
|
|
@@ -602,7 +602,7 @@ const ServiceFormUI = (props: ServiceFormParams) => {
|
|
|
602
602
|
<PlaceholderLine width={60} height={20} />
|
|
603
603
|
</Placeholder>
|
|
604
604
|
) : (
|
|
605
|
-
<OText color={theme.colors.primary} size={13}>{t('
|
|
605
|
+
<OText color={theme.colors.primary} size={13}>{t('AS_GUEST_USER', 'As guest user')}</OText>
|
|
606
606
|
)}
|
|
607
607
|
</TouchableOpacity>
|
|
608
608
|
)}
|
|
@@ -11,7 +11,7 @@ export const ProfessionalPhoto = styled.ImageBackground`
|
|
|
11
11
|
`;
|
|
12
12
|
|
|
13
13
|
export const InfoWrapper = styled.View`
|
|
14
|
-
padding-horizontal:
|
|
14
|
+
padding-horizontal: 20px;
|
|
15
15
|
margin-vertical: 30px;
|
|
16
16
|
`
|
|
17
17
|
|
|
@@ -22,7 +22,7 @@ export const Divider = styled.View`
|
|
|
22
22
|
`
|
|
23
23
|
|
|
24
24
|
export const ProfessionalWrapper = styled.View`
|
|
25
|
-
padding-horizontal:
|
|
25
|
+
padding-horizontal: 20px;
|
|
26
26
|
margin-top: 30px;
|
|
27
27
|
`
|
|
28
28
|
|
|
@@ -41,10 +41,10 @@ export const ButtonWrapper = styled.View`
|
|
|
41
41
|
align-items: center;
|
|
42
42
|
flex-direction: row;
|
|
43
43
|
padding-vertical: 13px;
|
|
44
|
-
padding-horizontal:
|
|
44
|
+
padding-horizontal: 20px;
|
|
45
45
|
margin-top: 30px;
|
|
46
46
|
margin-bottom: 40px;
|
|
47
47
|
width: 100%;
|
|
48
48
|
border-top-width: 1px;
|
|
49
49
|
border-top-color: ${(props: any) => props.theme.colors.backgroundGray200};
|
|
50
|
-
`
|
|
50
|
+
`
|
|
@@ -53,6 +53,7 @@ const SingleOrderCardUI = (props: SingleOrderCardParams) => {
|
|
|
53
53
|
const [isPressed, setIsPressed] = useState(false)
|
|
54
54
|
|
|
55
55
|
const allowedOrderStatus = [1, 2, 5, 6, 10, 11, 12, 15];
|
|
56
|
+
const isGiftCardOrder = !order?.business_id
|
|
56
57
|
|
|
57
58
|
const styles = StyleSheet.create({
|
|
58
59
|
container: {
|
|
@@ -290,11 +291,11 @@ const SingleOrderCardUI = (props: SingleOrderCardParams) => {
|
|
|
290
291
|
)}
|
|
291
292
|
</>
|
|
292
293
|
)}
|
|
293
|
-
{!!pastOrders && (
|
|
294
|
+
{!!pastOrders && !isGiftCardOrder && (
|
|
294
295
|
<ButtonWrapper>
|
|
295
296
|
{!hideReviewOrderButton &&
|
|
296
297
|
allowedOrderStatus.includes(parseInt(order?.status)) &&
|
|
297
|
-
!order.review && (
|
|
298
|
+
!order.review && order?.cart && (
|
|
298
299
|
<TouchableOpacity
|
|
299
300
|
onPress={() => handleClickOrderReview(order)}
|
|
300
301
|
style={styles.reviewButton}>
|
|
@@ -303,7 +304,7 @@ const SingleOrderCardUI = (props: SingleOrderCardParams) => {
|
|
|
303
304
|
</OText>
|
|
304
305
|
</TouchableOpacity>
|
|
305
306
|
)}
|
|
306
|
-
{!hideReorderButton && typeof order?.id === 'number' && (
|
|
307
|
+
{!hideReorderButton && typeof order?.id === 'number' && order?.cart && (
|
|
307
308
|
<OButton
|
|
308
309
|
text={t('REORDER', 'Reorder')}
|
|
309
310
|
imgRightSrc={''}
|
|
@@ -49,15 +49,12 @@ export const RibbonBox = styled.View`
|
|
|
49
49
|
background-color: ${(props: any) => props.theme.colors.primary};
|
|
50
50
|
padding: 1px 8px;
|
|
51
51
|
max-width: 60px;
|
|
52
|
-
|
|
53
52
|
${(props: any) => props.bgColor && css`
|
|
54
53
|
background-color: ${props.bgColor};
|
|
55
54
|
`}
|
|
56
|
-
|
|
57
55
|
${(props: any) => props.isRoundRect && css`
|
|
58
56
|
border-radius: 7.6px;
|
|
59
57
|
`}
|
|
60
|
-
|
|
61
58
|
${(props: any) => props.isCapsule && css`
|
|
62
59
|
border-radius: 50px;
|
|
63
60
|
`}
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import React, { useEffect } from 'react';
|
|
2
|
-
import { View, StyleSheet, ScrollView } from 'react-native';
|
|
2
|
+
import { View, StyleSheet, ScrollView, Platform } from 'react-native';
|
|
3
3
|
import {
|
|
4
4
|
PaymentOptionStripe,
|
|
5
5
|
useSession,
|
|
6
6
|
useLanguage,
|
|
7
|
+
useValidationFields
|
|
7
8
|
} from 'ordering-components/native';
|
|
8
9
|
import { PlaceholderLine } from 'rn-placeholder';
|
|
9
10
|
import { useTheme } from 'styled-components/native';
|
|
10
11
|
import { getIconCard } from '../../utils';
|
|
11
|
-
import { OAlert, OIcon, OText } from '../shared';
|
|
12
|
+
import { OAlert, OIcon, OText, OModal } from '../shared';
|
|
12
13
|
|
|
13
14
|
import { NotFoundSource } from '../NotFoundSource';
|
|
14
15
|
|
|
@@ -17,6 +18,9 @@ import {
|
|
|
17
18
|
OSItemContent,
|
|
18
19
|
OSItemActions,
|
|
19
20
|
} from '../PaymentOptionStripe/styles';
|
|
21
|
+
import { StripeElementsForm } from '../StripeElementsForm';
|
|
22
|
+
|
|
23
|
+
import { KeyboardAvoidingView } from 'react-native';
|
|
20
24
|
|
|
21
25
|
export const StripeCardsListUI = (props: any) => {
|
|
22
26
|
const {
|
|
@@ -26,24 +30,31 @@ export const StripeCardsListUI = (props: any) => {
|
|
|
26
30
|
cardsList,
|
|
27
31
|
handleCardClick,
|
|
28
32
|
setAddCardOpen,
|
|
29
|
-
gateway
|
|
33
|
+
gateway,
|
|
34
|
+
setCardsList,
|
|
35
|
+
addCardOpen,
|
|
36
|
+
isOpenMethod,
|
|
37
|
+
handlePaymethodDataChange
|
|
30
38
|
} = props;
|
|
31
39
|
|
|
32
40
|
const theme = useTheme();
|
|
33
41
|
|
|
34
42
|
const [{ token }] = useSession();
|
|
35
43
|
const [, t] = useLanguage();
|
|
36
|
-
|
|
44
|
+
const [validationFields] = useValidationFields()
|
|
45
|
+
const validateZipcodeCard =
|
|
46
|
+
validationFields?.fields?.card?.zipcode?.enabled && validationFields?.fields?.card?.zipcode?.required
|
|
37
47
|
const paymethodsWithoutSaveCards = ['credomatic']
|
|
38
48
|
|
|
39
49
|
const handleCardSelected = (card: any) => {
|
|
50
|
+
if (!card?.zipcode && validateZipcodeCard) return
|
|
40
51
|
handleCardClick(card);
|
|
41
52
|
onSelectCard(card);
|
|
42
53
|
}
|
|
43
54
|
|
|
44
55
|
useEffect(() => {
|
|
45
|
-
if (!cardsList
|
|
46
|
-
setAddCardOpen(true)
|
|
56
|
+
if (!cardsList?.loading && cardsList?.cards?.length === 0 && !paymethodsWithoutSaveCards.includes(gateway)) {
|
|
57
|
+
setAddCardOpen({ ...addCardOpen, stripe: true })
|
|
47
58
|
}
|
|
48
59
|
}, [cardsList?.loading])
|
|
49
60
|
|
|
@@ -85,7 +96,8 @@ export const StripeCardsListUI = (props: any) => {
|
|
|
85
96
|
style={styles.cardsList}
|
|
86
97
|
>
|
|
87
98
|
{cardsList.cards.map((card: any) => (
|
|
88
|
-
<OSItem key={card.id} isUnique={cardsList.cards.length}>
|
|
99
|
+
<OSItem key={card.id} isUnique={cardsList.cards.length} isInvalid={!card?.zipcode && validateZipcodeCard}>
|
|
100
|
+
{console.log(card?.zipcode && validateZipcodeCard)}
|
|
89
101
|
<OSItemContent onPress={() => handleCardSelected(card)}>
|
|
90
102
|
<View style={styles.viewStyle}>
|
|
91
103
|
{card.id === cardSelected?.id ? (
|
|
@@ -110,6 +122,13 @@ export const StripeCardsListUI = (props: any) => {
|
|
|
110
122
|
XXXX-XXXX-XXXX-{card.last4}
|
|
111
123
|
</OText>
|
|
112
124
|
</View>
|
|
125
|
+
{!card?.zipcode && validateZipcodeCard && (
|
|
126
|
+
<View style={styles.viewStyle}>
|
|
127
|
+
<OText size={10} color={theme?.colors?.danger5}>
|
|
128
|
+
({t('MISSING_ZIPCODE', 'Missing zipcode')})
|
|
129
|
+
</OText>
|
|
130
|
+
</View>
|
|
131
|
+
)}
|
|
113
132
|
</OSItemContent>
|
|
114
133
|
<OSItemActions>
|
|
115
134
|
<OAlert
|
|
@@ -128,6 +147,33 @@ export const StripeCardsListUI = (props: any) => {
|
|
|
128
147
|
))}
|
|
129
148
|
</ScrollView>
|
|
130
149
|
)}
|
|
150
|
+
<OModal
|
|
151
|
+
entireModal
|
|
152
|
+
title={t('ADD_CREDIT_OR_DEBIT_CARD', 'Add credit or debit card')}
|
|
153
|
+
open={addCardOpen.stripe}
|
|
154
|
+
onClose={() => setAddCardOpen({ ...addCardOpen, stripe: false })}
|
|
155
|
+
style={{ backgroundColor: 'red' }}
|
|
156
|
+
>
|
|
157
|
+
<KeyboardAvoidingView
|
|
158
|
+
behavior={Platform.OS == 'ios' ? 'padding' : 'height'}
|
|
159
|
+
keyboardVerticalOffset={Platform.OS == 'ios' ? 0 : 0}
|
|
160
|
+
enabled={Platform.OS === 'ios' ? true : false}
|
|
161
|
+
>
|
|
162
|
+
<StripeElementsForm
|
|
163
|
+
openCarts={props.openCarts}
|
|
164
|
+
toSave
|
|
165
|
+
businessId={props.businessId}
|
|
166
|
+
businessIds={props.businessIds}
|
|
167
|
+
publicKey={props.publicKey || isOpenMethod?.paymethod?.credentials?.publishable}
|
|
168
|
+
setCardsList={setCardsList}
|
|
169
|
+
cardsList={cardsList}
|
|
170
|
+
requirements={props.clientSecret}
|
|
171
|
+
handleCardClick={handleCardClick}
|
|
172
|
+
onSelectCard={handlePaymethodDataChange}
|
|
173
|
+
onCancel={() => setAddCardOpen({ ...addCardOpen, stripe: false })}
|
|
174
|
+
/>
|
|
175
|
+
</KeyboardAvoidingView>
|
|
176
|
+
</OModal>
|
|
131
177
|
</>
|
|
132
178
|
)
|
|
133
179
|
}
|
|
@@ -4,7 +4,10 @@ import { useApi, useSession } from 'ordering-components/native';
|
|
|
4
4
|
export const StripeElementsForm = (props: any) => {
|
|
5
5
|
const {
|
|
6
6
|
UIComponent,
|
|
7
|
-
toSave
|
|
7
|
+
toSave,
|
|
8
|
+
setCardsList,
|
|
9
|
+
cardsList,
|
|
10
|
+
handleCardClick
|
|
8
11
|
} = props;
|
|
9
12
|
|
|
10
13
|
const [ordering] = useApi();
|
|
@@ -61,6 +64,14 @@ export const StripeElementsForm = (props: any) => {
|
|
|
61
64
|
})
|
|
62
65
|
const response = await result.json();
|
|
63
66
|
isNewCard && props.onSelectCard && props.onSelectCard(response.result);
|
|
67
|
+
setCardsList && setCardsList({
|
|
68
|
+
...cardsList,
|
|
69
|
+
cards: [
|
|
70
|
+
...cardsList.cards,
|
|
71
|
+
response.result
|
|
72
|
+
]
|
|
73
|
+
})
|
|
74
|
+
handleCardClick(response.result)
|
|
64
75
|
setState({
|
|
65
76
|
...state,
|
|
66
77
|
loadingAdd: false
|