ordering-ui-react-native 0.14.89 → 0.14.90-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 -3
- package/src/DeliveryApp.tsx +34 -2
- package/src/assets/images/no-network.png +0 -0
- package/src/components/BusinessTypeFilter/index.tsx +9 -2
- package/src/components/BusinessTypeFilter/styles.tsx +1 -1
- package/src/components/BusinessesListing/index.tsx +1 -1
- package/src/components/Cart/index.tsx +1 -1
- package/src/components/Checkout/index.tsx +0 -1
- package/src/components/Home/index.tsx +3 -5
- package/src/components/LanguageSelector/index.tsx +65 -97
- package/src/components/LanguageSelector/styles.tsx +4 -17
- package/src/components/Messages/index.tsx +38 -30
- package/src/components/MomentOption/index.tsx +3 -1
- package/src/components/OrderDetails/index.tsx +26 -5
- package/src/components/PaymentOptions/index.tsx +7 -16
- package/src/components/PaymentOptionsWebView/index.tsx +123 -124
- package/src/components/ProductForm/index.tsx +1 -1
- package/src/components/ProductForm/styles.tsx +1 -0
- package/src/components/StripeElementsForm/index.tsx +27 -48
- package/src/components/UserProfileForm/index.tsx +35 -1
- package/src/components/VerifyPhone/styles.tsx +1 -2
- package/src/config.json +0 -2
- package/src/pages/Checkout.tsx +1 -1
- package/src/providers/AlertProvider.tsx +4 -1
- package/src/theme.json +2 -1
- package/src/types/index.tsx +2 -9
- package/src/utils/index.tsx +2 -1
- package/themes/business/index.tsx +4 -0
- package/themes/business/src/components/Chat/index.tsx +32 -31
- package/themes/business/src/components/NetworkError/index.tsx +61 -0
- package/themes/business/src/components/NetworkError/styles.tsx +11 -0
- package/themes/business/src/components/OrderDetails/Business.tsx +1 -0
- package/themes/business/src/components/OrderDetails/OrderHeaderComponent.tsx +85 -17
- package/themes/business/src/components/OrdersListManager/index.tsx +871 -0
- package/themes/business/src/components/OrdersListManager/styles.tsx +123 -0
- package/themes/business/src/components/OrdersListManager/utils.tsx +216 -0
- package/themes/business/src/components/OrdersOption/index.tsx +18 -68
- package/themes/business/src/components/OrdersOption/styles.tsx +2 -5
- package/themes/business/src/components/PreviousOrders/index.tsx +34 -11
- package/themes/business/src/components/ReviewCustomer/index.tsx +5 -1
- package/themes/business/src/types/index.tsx +4 -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/index.tsx +2 -0
- package/themes/kiosk/src/components/BusinessController/index.tsx +27 -6
- package/themes/kiosk/src/components/BusinessController/styles.tsx +1 -1
- package/themes/kiosk/src/components/BusinessProductsListing/index.tsx +51 -24
- package/themes/kiosk/src/components/Cart/index.tsx +1 -1
- package/themes/kiosk/src/components/CartBottomSheet/index.tsx +1 -1
- package/themes/kiosk/src/components/CartBottomSheet/styles.tsx +1 -1
- package/themes/kiosk/src/components/CartContent/index.tsx +13 -3
- package/themes/kiosk/src/components/CartItem/index.tsx +20 -8
- package/themes/kiosk/src/components/CategoriesMenu/index.tsx +7 -5
- package/themes/kiosk/src/components/CustomerName/index.tsx +89 -88
- package/themes/kiosk/src/components/Intro/index.tsx +13 -13
- package/themes/kiosk/src/components/LanguageSelector/index.tsx +12 -8
- package/themes/kiosk/src/components/NavBar/index.tsx +14 -14
- package/themes/kiosk/src/components/NetworkError/index.tsx +60 -0
- package/themes/kiosk/src/components/NetworkError/styles.tsx +11 -0
- package/themes/kiosk/src/components/OptionCard/index.tsx +1 -1
- package/themes/kiosk/src/components/OrderDetails/index.tsx +2 -2
- package/themes/kiosk/src/components/OrderSummary/index.tsx +1 -1
- package/themes/kiosk/src/components/OrderTypeCardSelector/index.tsx +10 -12
- package/themes/kiosk/src/components/ProductForm/index.tsx +172 -124
- package/themes/kiosk/src/components/ProductForm/styles.tsx +1 -1
- package/themes/kiosk/src/components/ProductOption/index.tsx +1 -0
- package/themes/kiosk/src/components/ProductOption/styles.tsx +1 -0
- package/themes/kiosk/src/components/UpsellingProducts/index.tsx +48 -34
- package/themes/kiosk/src/components/shared/OButton.tsx +5 -18
- package/themes/kiosk/src/components/shared/OCard.tsx +112 -78
- package/themes/kiosk/src/types/index.d.ts +4 -0
- package/themes/original/index.tsx +36 -6
- package/themes/original/src/components/AddressForm/index.tsx +15 -10
- package/themes/original/src/components/AddressList/index.tsx +27 -1
- package/themes/original/src/components/AnalyticsSegment/index.tsx +127 -0
- package/themes/original/src/components/BusinessBasicInformation/index.tsx +11 -7
- package/themes/original/src/components/BusinessController/index.tsx +5 -4
- package/themes/original/src/components/BusinessMenuList/index.tsx +4 -2
- package/themes/original/src/components/BusinessPreorder/index.tsx +142 -121
- package/themes/original/src/components/BusinessProductsCategories/index.tsx +1 -1
- package/themes/original/src/components/BusinessProductsList/index.tsx +50 -6
- package/themes/original/src/components/BusinessProductsListing/index.tsx +13 -10
- package/themes/original/src/components/BusinessReviews/index.tsx +4 -3
- package/themes/original/src/components/BusinessesListing/index.tsx +23 -22
- package/themes/original/src/components/Cart/index.tsx +43 -10
- package/themes/original/src/components/CartContent/index.tsx +2 -2
- package/themes/original/src/components/Checkout/index.tsx +54 -30
- package/themes/original/src/components/Checkout/styles.tsx +7 -0
- package/themes/original/src/components/CouponControl/index.tsx +1 -0
- package/themes/original/src/components/DriverTips/index.tsx +1 -1
- package/themes/original/src/components/ForgotPasswordForm/index.tsx +8 -12
- package/themes/original/src/components/HighestRatedBusinesses/index.tsx +9 -2
- package/themes/original/src/components/LoginForm/index.tsx +83 -68
- package/themes/original/src/components/Messages/index.tsx +24 -21
- package/themes/original/src/components/Messages/styles.tsx +1 -3
- package/themes/original/src/components/MomentOption/index.tsx +127 -152
- package/themes/original/src/components/MomentOption/styles.tsx +42 -18
- package/themes/original/src/components/NetworkError/index.tsx +61 -0
- package/themes/original/src/components/NetworkError/styles.tsx +11 -0
- package/themes/original/src/components/OrderDetails/index.tsx +103 -124
- package/themes/original/src/components/OrderDetails/styles.tsx +3 -1
- package/themes/original/src/components/OrderProgress/index.tsx +2 -3
- package/themes/original/src/components/OrderSummary/index.tsx +35 -2
- package/themes/original/src/components/OrdersOption/index.tsx +16 -40
- package/themes/original/src/components/OrdersOption/styles.tsx +0 -5
- package/themes/original/src/components/PaymentOptionWallet/index.tsx +1 -1
- package/themes/original/src/components/PaymentOptions/index.tsx +21 -24
- package/themes/original/src/components/PhoneInputNumber/index.tsx +15 -8
- package/themes/original/src/components/PlaceSpot/index.tsx +114 -0
- package/themes/original/src/components/PlaceSpot/styles.tsx +11 -0
- package/themes/original/src/components/PreviousOrders/index.tsx +4 -0
- package/themes/original/src/components/ProductForm/index.tsx +154 -105
- package/themes/original/src/components/ProductForm/styles.tsx +5 -3
- package/themes/original/src/components/ProductOptionSubOption/index.tsx +6 -1
- package/themes/original/src/components/ReviewDriver/index.tsx +2 -1
- package/themes/original/src/components/ReviewOrder/index.tsx +2 -17
- package/themes/original/src/components/SignupForm/index.tsx +173 -154
- package/themes/original/src/components/SingleProductCard/index.tsx +6 -13
- package/themes/original/src/components/SingleProductCard/styles.tsx +1 -1
- package/themes/original/src/components/SingleProductReview/index.tsx +4 -0
- package/themes/original/src/components/StripeElementsForm/index.tsx +55 -72
- package/themes/original/src/components/UpsellingProducts/index.tsx +6 -6
- package/themes/original/src/components/UserDetails/index.tsx +4 -95
- package/themes/original/src/components/UserFormDetails/index.tsx +2 -14
- package/themes/original/src/components/UserProfile/index.tsx +16 -9
- package/themes/original/src/components/UserProfileForm/index.tsx +16 -8
- package/themes/original/src/components/VerifyPhone/index.tsx +10 -7
- package/themes/original/src/components/VerifyPhone/styles.tsx +2 -1
- package/themes/original/src/components/shared/HeaderTitle.tsx +20 -0
- package/themes/original/src/components/shared/index.tsx +2 -0
- package/themes/original/src/types/index.tsx +18 -8
- package/themes/single-business/src/components/OrderTypeSelector/index.tsx +5 -5
- package/themes/uber-eats/src/components/BusinessesListing/index.tsx +1 -1
- package/src/components/StripeMethodForm/index.tsx +0 -163
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { useEffect, useState } from 'react'
|
|
2
|
-
import { TouchableOpacity, View, StyleSheet } from 'react-native'
|
|
3
|
-
import { LanguageSelector as LanguageSelectorController } from 'ordering-components/native'
|
|
2
|
+
import { TouchableOpacity, View, StyleSheet, ActivityIndicator } from 'react-native'
|
|
3
|
+
import { LanguageSelector as LanguageSelectorController, useOrder } from 'ordering-components/native'
|
|
4
4
|
import CountryPicker, { Flag } from 'react-native-country-picker-modal'
|
|
5
5
|
|
|
6
6
|
import { Container, LanguageItem } from './styles'
|
|
@@ -40,6 +40,7 @@ const LanguageSelectorUI = (props: LanguageSelectorParams) => {
|
|
|
40
40
|
(a.content > b.content) ? 1 : ((b.content > a.content) ? -1 : 0)
|
|
41
41
|
)
|
|
42
42
|
|
|
43
|
+
const [orderState] = useOrder()
|
|
43
44
|
const [isCountryModalVisible, setCountryModalVisible] = useState(false);
|
|
44
45
|
|
|
45
46
|
const countryCodes = _languages?.map((item:any) => item.countryCode);
|
|
@@ -48,7 +49,7 @@ const LanguageSelectorUI = (props: LanguageSelectorParams) => {
|
|
|
48
49
|
|
|
49
50
|
return (
|
|
50
51
|
<>
|
|
51
|
-
{ languagesState.loading ?
|
|
52
|
+
{ languagesState.loading ?
|
|
52
53
|
(<Container>
|
|
53
54
|
<Placeholder style={{ width: 130, paddingTop: 10 }} Animation={Fade}>
|
|
54
55
|
<PlaceholderLine height={15}/>
|
|
@@ -66,8 +67,8 @@ const LanguageSelectorUI = (props: LanguageSelectorParams) => {
|
|
|
66
67
|
closeButtonStyle={styles.closeIcon}
|
|
67
68
|
renderFlagButton={() => (
|
|
68
69
|
<TouchableOpacity
|
|
69
|
-
onPress={() => setCountryModalVisible(true)}
|
|
70
|
-
disabled={
|
|
70
|
+
onPress={() => orderState.loading ? {} : setCountryModalVisible(true)}
|
|
71
|
+
// disabled={orderState.loading}
|
|
71
72
|
>
|
|
72
73
|
<LanguageItem>
|
|
73
74
|
<Flag
|
|
@@ -76,7 +77,11 @@ const LanguageSelectorUI = (props: LanguageSelectorParams) => {
|
|
|
76
77
|
countryCode={currentLanguageData?.countryCode}
|
|
77
78
|
/>
|
|
78
79
|
<OText color={theme.colors.primary}>{currentLanguageData?.label}</OText>
|
|
79
|
-
|
|
80
|
+
{orderState.loading ? (
|
|
81
|
+
<ActivityIndicator size="small" color={theme.colors.primary} style={{ marginLeft: 5 }} />
|
|
82
|
+
) : (
|
|
83
|
+
<MatarialIcon name='keyboard-arrow-down' size={24}/>
|
|
84
|
+
)}
|
|
80
85
|
</LanguageItem>
|
|
81
86
|
</TouchableOpacity>
|
|
82
87
|
)}
|
|
@@ -87,11 +92,10 @@ const LanguageSelectorUI = (props: LanguageSelectorParams) => {
|
|
|
87
92
|
renderItem: ({item} : any) => (
|
|
88
93
|
<TouchableOpacity
|
|
89
94
|
onPress={() => {
|
|
90
|
-
/* @ts-ignore */
|
|
91
95
|
handleChangeLanguage(item.value);
|
|
92
96
|
setCountryModalVisible(false);
|
|
93
97
|
}}
|
|
94
|
-
disabled={
|
|
98
|
+
disabled={orderState.loading}
|
|
95
99
|
>
|
|
96
100
|
<LanguageItem>
|
|
97
101
|
<View style={styles.flagsContainer} />
|
|
@@ -5,6 +5,7 @@ import { ImageStyle, TextStyle, View, Platform } from 'react-native'
|
|
|
5
5
|
import { OrderTypeSelector } from '../OrderTypeSelector'
|
|
6
6
|
import { useConfig, useLanguage } from 'ordering-components/native'
|
|
7
7
|
import { useTheme } from 'styled-components/native'
|
|
8
|
+
|
|
8
9
|
const Wrapper = styled.View`
|
|
9
10
|
background-color: ${(props: any) => props.theme.colors.white};
|
|
10
11
|
padding: 10px 0px 20px 0px;
|
|
@@ -64,28 +65,27 @@ const NavBar = (props: Props) => {
|
|
|
64
65
|
|
|
65
66
|
return (
|
|
66
67
|
<Wrapper style={{ paddingTop: props.paddingTop, ...props.style }}>
|
|
67
|
-
{(props?.onActionLeft) && (
|
|
68
|
+
{(props?.onActionLeft || props?.leftImg) && (
|
|
68
69
|
<OButton
|
|
69
|
-
imgLeftSrc={props.leftImg}
|
|
70
|
+
imgLeftSrc={props.leftImg || theme.images.general.arrow_left}
|
|
70
71
|
imgRightSrc={null}
|
|
71
72
|
style={{ ...btnBackArrow, ...props.btnStyle }}
|
|
72
73
|
onClick={props.onActionLeft}
|
|
73
|
-
imgLeftStyle={props.imgLeftStyle}
|
|
74
|
-
{...(!props.leftImg && { iconProps: { name: 'arrowleft', size: 28, color: props.btnStyle?.color } })}
|
|
74
|
+
imgLeftStyle= {props.imgLeftStyle}
|
|
75
75
|
/>)
|
|
76
76
|
}
|
|
77
77
|
<TitleTopWrapper>
|
|
78
78
|
{props.withIcon
|
|
79
79
|
? (
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
80
|
+
<OIcon
|
|
81
|
+
url={props.icon}
|
|
82
|
+
style={{
|
|
83
|
+
borderColor: theme.colors.lightGray,
|
|
84
|
+
borderRadius: 20,
|
|
85
|
+
}}
|
|
86
|
+
width={60}
|
|
87
|
+
height={60}
|
|
88
|
+
/>
|
|
89
89
|
)
|
|
90
90
|
: null
|
|
91
91
|
}
|
|
@@ -125,7 +125,7 @@ const NavBar = (props: Props) => {
|
|
|
125
125
|
</View>
|
|
126
126
|
)}
|
|
127
127
|
|
|
128
|
-
{props.rightComponent}
|
|
128
|
+
{ props.rightComponent }
|
|
129
129
|
</Wrapper>
|
|
130
130
|
)
|
|
131
131
|
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import { useLanguage } from 'ordering-components/native'
|
|
3
|
+
import { Dimensions } from 'react-native'
|
|
4
|
+
import RNRestart from 'react-native-restart'
|
|
5
|
+
import { OText, OIcon, OButton } from '../shared'
|
|
6
|
+
import { useTheme } from 'styled-components/native'
|
|
7
|
+
import { NoNetworkParams } from '../../types'
|
|
8
|
+
import {
|
|
9
|
+
Container,
|
|
10
|
+
ImageContainer
|
|
11
|
+
} from './styles'
|
|
12
|
+
|
|
13
|
+
export const NetworkError = (props: NoNetworkParams) => {
|
|
14
|
+
const {
|
|
15
|
+
image
|
|
16
|
+
} = props
|
|
17
|
+
const theme = useTheme()
|
|
18
|
+
const [, t] = useLanguage()
|
|
19
|
+
|
|
20
|
+
const noNetworkImage = image || theme.images.general.noNetwork
|
|
21
|
+
const deviceHeight = Dimensions.get('screen').height
|
|
22
|
+
|
|
23
|
+
return (
|
|
24
|
+
<Container>
|
|
25
|
+
<OText
|
|
26
|
+
size={20}
|
|
27
|
+
weight='700'
|
|
28
|
+
style={{ marginBottom: 14 }}
|
|
29
|
+
>
|
|
30
|
+
{t('MOBILE_NO_INTERNET', 'No internet connection')}
|
|
31
|
+
</OText>
|
|
32
|
+
<OText
|
|
33
|
+
size={14}
|
|
34
|
+
>
|
|
35
|
+
{t('NETWORK_OFFLINE_MESSAGE', 'Your connection appears to be off-line. Try to refresh the page')}
|
|
36
|
+
</OText>
|
|
37
|
+
<ImageContainer>
|
|
38
|
+
<OIcon
|
|
39
|
+
src={noNetworkImage}
|
|
40
|
+
width={(deviceHeight - 180) * 0.7}
|
|
41
|
+
height={(deviceHeight - 180) * 0.63}
|
|
42
|
+
/>
|
|
43
|
+
<OButton
|
|
44
|
+
text={t('REFRESH', 'Refresh')}
|
|
45
|
+
bgColor={theme.colors.primary}
|
|
46
|
+
borderColor={theme.colors.primary}
|
|
47
|
+
style={{
|
|
48
|
+
borderRadius: 8,
|
|
49
|
+
marginTop: 45,
|
|
50
|
+
height: 44
|
|
51
|
+
}}
|
|
52
|
+
textStyle={{
|
|
53
|
+
color: theme.colors.white
|
|
54
|
+
}}
|
|
55
|
+
onClick={() => RNRestart.Restart()}
|
|
56
|
+
/>
|
|
57
|
+
</ImageContainer>
|
|
58
|
+
</Container>
|
|
59
|
+
)
|
|
60
|
+
}
|
|
@@ -212,7 +212,7 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
|
|
|
212
212
|
setCustomerName(name)
|
|
213
213
|
} catch (e) {
|
|
214
214
|
if (e) {
|
|
215
|
-
setCustomerName(
|
|
215
|
+
setCustomerName(null)
|
|
216
216
|
}
|
|
217
217
|
}
|
|
218
218
|
}
|
|
@@ -553,7 +553,7 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
|
|
|
553
553
|
size={orientationState?.dimensions?.width * 0.048}
|
|
554
554
|
weight="700"
|
|
555
555
|
>
|
|
556
|
-
{
|
|
556
|
+
{t('HUNGRY', 'hungry')}{!!customerName && `, ${customerName}`}
|
|
557
557
|
</OText>
|
|
558
558
|
</OText>
|
|
559
559
|
|
|
@@ -169,7 +169,7 @@ const OrderSummaryUI = (props: any) => {
|
|
|
169
169
|
isCartProduct
|
|
170
170
|
productCart={curProduct}
|
|
171
171
|
businessSlug={cart?.business?.slug}
|
|
172
|
-
businessId={
|
|
172
|
+
businessId={cart?.business_id}
|
|
173
173
|
categoryId={curProduct?.category_id}
|
|
174
174
|
productId={curProduct?.id}
|
|
175
175
|
onSave={handlerProductAction}
|
|
@@ -15,8 +15,6 @@ import { Container } from '../../layouts/Container'
|
|
|
15
15
|
import NavBar from '../NavBar'
|
|
16
16
|
import { LANDSCAPE, PORTRAIT, useDeviceOrientation } from '../../../../../src/hooks/DeviceOrientation'
|
|
17
17
|
import GridContainer from '../../layouts/GridContainer'
|
|
18
|
-
import AntDesignIcon from 'react-native-vector-icons/AntDesign'
|
|
19
|
-
import MaterialIcon from 'react-native-vector-icons/MaterialCommunityIcons'
|
|
20
18
|
|
|
21
19
|
const OrderTypeSelectorCardUI = (props: OrderTypeSelectParams) => {
|
|
22
20
|
const {
|
|
@@ -29,7 +27,7 @@ const OrderTypeSelectorCardUI = (props: OrderTypeSelectParams) => {
|
|
|
29
27
|
callback
|
|
30
28
|
} = props
|
|
31
29
|
|
|
32
|
-
|
|
30
|
+
const theme = useTheme();
|
|
33
31
|
const [, t] = useLanguage();
|
|
34
32
|
const [orientationState] = useDeviceOrientation();
|
|
35
33
|
const [orderState] = useOrder()
|
|
@@ -47,7 +45,7 @@ const OrderTypeSelectorCardUI = (props: OrderTypeSelectParams) => {
|
|
|
47
45
|
}
|
|
48
46
|
|
|
49
47
|
useEffect(() => {
|
|
50
|
-
if
|
|
48
|
+
if(isCardCliked){
|
|
51
49
|
callback?.()
|
|
52
50
|
setIsCardClicked(false)
|
|
53
51
|
setIsLoadingCard(null)
|
|
@@ -59,8 +57,8 @@ const OrderTypeSelectorCardUI = (props: OrderTypeSelectParams) => {
|
|
|
59
57
|
<Container>
|
|
60
58
|
<NavBar
|
|
61
59
|
title={t('ORDER_TYPE_X_ID', 'Order type')}
|
|
62
|
-
{...(goBack && { onActionLeft: goBack })}
|
|
63
|
-
btnStyle={{
|
|
60
|
+
{...(goBack && { onActionLeft: goBack } )}
|
|
61
|
+
btnStyle={{paddingLeft: 0}}
|
|
64
62
|
/>
|
|
65
63
|
|
|
66
64
|
<View style={{ marginVertical: orientationState?.dimensions?.height * 0.03 }}>
|
|
@@ -85,13 +83,13 @@ const OrderTypeSelectorCardUI = (props: OrderTypeSelectParams) => {
|
|
|
85
83
|
style={cardStyle}
|
|
86
84
|
isDisabled={isCardCliked}
|
|
87
85
|
isLoading={isLoadingCard === 'Eat In'}
|
|
88
|
-
title={t('EAT_IN',
|
|
86
|
+
title={t('EAT_IN','Eat In')}
|
|
89
87
|
description={t('EAT_IN_DESCRIPTION', 'We are very glad to have you here. Bon appetit!')}
|
|
90
88
|
bgImage={theme.images.general.eatIn}
|
|
91
|
-
|
|
89
|
+
icon={theme.images.general.pushPin}
|
|
92
90
|
callToActionText={t('START_MY_ORDER', 'Start my order')}
|
|
93
91
|
onClick={() => {
|
|
94
|
-
if
|
|
92
|
+
if(_eatIn?.value !== orderState?.options?.type){
|
|
95
93
|
handleChangeOrderType(_eatIn?.value);
|
|
96
94
|
setIsCardClicked(true)
|
|
97
95
|
setIsLoadingCard('Eat In')
|
|
@@ -108,15 +106,15 @@ const OrderTypeSelectorCardUI = (props: OrderTypeSelectParams) => {
|
|
|
108
106
|
|
|
109
107
|
<OptionCard
|
|
110
108
|
style={cardStyle}
|
|
111
|
-
title={t('TAKE_OUT',
|
|
109
|
+
title={t('TAKE_OUT','Take out')}
|
|
112
110
|
isDisabled={isCardCliked}
|
|
113
111
|
isLoading={isLoadingCard === 'Take out'}
|
|
114
112
|
description={t('TAKE_OUT_DESCRIPTION', 'You are very welcome anytime you visit us!')}
|
|
115
113
|
bgImage={theme.images.general.takeOut}
|
|
116
|
-
|
|
114
|
+
icon={theme.images.general.shoppingCart}
|
|
117
115
|
callToActionText={t('START_MY_ORDER', 'Start my order')}
|
|
118
116
|
onClick={() => {
|
|
119
|
-
if
|
|
117
|
+
if(_takeOut?.value !== orderState?.options?.type){
|
|
120
118
|
handleChangeOrderType(_takeOut?.value);
|
|
121
119
|
setIsCardClicked(true)
|
|
122
120
|
setIsLoadingCard('Take out')
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React, { useState } from 'react'
|
|
2
|
+
import FastImage from 'react-native-fast-image'
|
|
2
3
|
import {
|
|
3
4
|
View,
|
|
4
5
|
TouchableOpacity,
|
|
@@ -69,7 +70,7 @@ export const ProductOptionsUI = (props: any) => {
|
|
|
69
70
|
|
|
70
71
|
const { product, loading, error } = productObject;
|
|
71
72
|
|
|
72
|
-
const HEADER_EXPANDED_HEIGHT =
|
|
73
|
+
const HEADER_EXPANDED_HEIGHT = orientationState?.dimensions?.height * 0.4;
|
|
73
74
|
const HEADER_COLLAPSED_HEIGHT = orientationState?.dimensions?.height * 0.2;
|
|
74
75
|
|
|
75
76
|
const isError = (id: number) => {
|
|
@@ -87,7 +88,6 @@ export const ProductOptionsUI = (props: any) => {
|
|
|
87
88
|
const isErrors = Object.values(errors).length > 0
|
|
88
89
|
if (!isErrors) {
|
|
89
90
|
handleSave && handleSave()
|
|
90
|
-
showCartBottomSheet()
|
|
91
91
|
return
|
|
92
92
|
}
|
|
93
93
|
}
|
|
@@ -204,7 +204,6 @@ export const ProductOptionsUI = (props: any) => {
|
|
|
204
204
|
},
|
|
205
205
|
scrollContainer: {
|
|
206
206
|
padding: 16,
|
|
207
|
-
paddingTop: HEADER_EXPANDED_HEIGHT
|
|
208
207
|
},
|
|
209
208
|
header: {
|
|
210
209
|
backgroundColor: '#fff',
|
|
@@ -226,6 +225,10 @@ export const ProductOptionsUI = (props: any) => {
|
|
|
226
225
|
shadowOpacity: 0.4,
|
|
227
226
|
shadowRadius: 3,
|
|
228
227
|
elevation: 5,
|
|
228
|
+
},
|
|
229
|
+
imageStyle: {
|
|
230
|
+
width: '100%',
|
|
231
|
+
height: HEADER_EXPANDED_HEIGHT,
|
|
229
232
|
}
|
|
230
233
|
});
|
|
231
234
|
|
|
@@ -233,118 +236,173 @@ export const ProductOptionsUI = (props: any) => {
|
|
|
233
236
|
<>
|
|
234
237
|
<ScrollView
|
|
235
238
|
style={styles.mainContainer}
|
|
236
|
-
contentContainerStyle={styles.scrollContainer}
|
|
237
239
|
onScroll={Animated.event(
|
|
238
240
|
[{ nativeEvent: { contentOffset: { y: scrollY } } }],
|
|
239
241
|
{ useNativeDriver: false })
|
|
240
242
|
}
|
|
241
243
|
scrollEventThrottle={16}
|
|
242
244
|
>
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
{
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
245
|
+
{!isDrawer ? (
|
|
246
|
+
<Animated.View style={[styles.header, { height: headerHeight }]}>
|
|
247
|
+
{!isDrawer && (
|
|
248
|
+
<Animated.View style={{ opacity: navBar1ContainerOpacity }}>
|
|
249
|
+
<NavBar
|
|
250
|
+
{...navBarProps}
|
|
251
|
+
titleColor={theme.colors.white}
|
|
252
|
+
btnStyle={{
|
|
253
|
+
width: 55,
|
|
254
|
+
height: 55,
|
|
255
|
+
overflow: 'scroll',
|
|
256
|
+
backgroundColor: 'black',
|
|
257
|
+
borderRadius: 100,
|
|
258
|
+
color: 'white',
|
|
259
|
+
opacity: 0.8,
|
|
260
|
+
left: 20,
|
|
261
|
+
}}
|
|
262
|
+
/>
|
|
263
|
+
</Animated.View>
|
|
264
|
+
)}
|
|
265
|
+
<Animated.View style={{ opacity: navBar2ContainerOpacity, position: 'absolute' }}>
|
|
266
|
+
<NavBar
|
|
267
|
+
{...navBarProps}
|
|
268
|
+
btnStyle={{
|
|
269
|
+
width: 55,
|
|
270
|
+
height: 55,
|
|
271
|
+
backgroundColor: 'transparent',
|
|
272
|
+
borderRadius: 100,
|
|
273
|
+
left: 20,
|
|
274
|
+
}}
|
|
275
|
+
/>
|
|
276
|
+
</Animated.View>
|
|
273
277
|
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
278
|
+
<Animated.View style={{
|
|
279
|
+
backgroundColor: 'white',
|
|
280
|
+
width: orientationState?.dimensions?.width,
|
|
281
|
+
opacity: collapsedBarContainerOpacity,
|
|
282
|
+
}}>
|
|
283
|
+
<View
|
|
284
|
+
style={{
|
|
285
|
+
flexDirection: 'row',
|
|
286
|
+
alignItems: 'center',
|
|
287
|
+
padding: 20,
|
|
288
|
+
paddingTop: 0,
|
|
289
|
+
paddingBottom: 10
|
|
290
|
+
}}
|
|
291
|
+
>
|
|
292
|
+
{product?.images ? (
|
|
293
|
+
<FastImage
|
|
294
|
+
style={{ height: 70, width: 70, borderRadius: 6 }}
|
|
295
|
+
source={{
|
|
296
|
+
uri: product?.images,
|
|
297
|
+
priority: FastImage.priority.normal,
|
|
298
|
+
// cache:FastImage.cacheControl.web
|
|
299
|
+
}}
|
|
300
|
+
resizeMode={FastImage.resizeMode.cover}
|
|
301
|
+
/>
|
|
302
|
+
) : (
|
|
303
|
+
<ImageBackground
|
|
304
|
+
style={{ height: 70, width: 70, borderRadius: 6 }}
|
|
305
|
+
source={theme.images.dummies.product}
|
|
306
|
+
imageStyle={{ borderRadius: 6 }}
|
|
307
|
+
resizeMode='cover'
|
|
308
|
+
/>
|
|
309
|
+
)}
|
|
310
|
+
<OText
|
|
311
|
+
size={orientationState?.dimensions?.width * 0.025}
|
|
312
|
+
weight="bold"
|
|
313
|
+
mLeft={20}
|
|
314
|
+
numberOfLines={2}
|
|
315
|
+
>
|
|
316
|
+
{product?.name}
|
|
317
|
+
</OText>
|
|
318
|
+
</View>
|
|
319
|
+
<View
|
|
320
|
+
style={{
|
|
321
|
+
position: 'absolute',
|
|
322
|
+
bottom: -2,
|
|
323
|
+
height: 1,
|
|
324
|
+
backgroundColor: 'white',
|
|
325
|
+
width: orientationState?.dimensions?.width,
|
|
326
|
+
...styles.shadow,
|
|
327
|
+
}}
|
|
294
328
|
/>
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
329
|
+
</Animated.View>
|
|
330
|
+
|
|
331
|
+
<Animated.View style={{
|
|
332
|
+
opacity: heroContainerOpacity,
|
|
333
|
+
position: 'absolute',
|
|
334
|
+
zIndex: -100,
|
|
335
|
+
transform: [{ translateY: heroTranslateY }],
|
|
336
|
+
}}>
|
|
337
|
+
<View
|
|
338
|
+
style={{
|
|
339
|
+
width: orientationState?.dimensions?.width,
|
|
340
|
+
height: HEADER_EXPANDED_HEIGHT,
|
|
341
|
+
position: 'absolute',
|
|
342
|
+
zIndex: 1,
|
|
343
|
+
backgroundColor: 'rgba(24, 28, 50, 0.4)',
|
|
344
|
+
}}
|
|
300
345
|
>
|
|
301
|
-
{product?.
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
346
|
+
{product?.images ? (
|
|
347
|
+
<FastImage
|
|
348
|
+
style={{ flex: 1, justifyContent: 'center' }}
|
|
349
|
+
source={{
|
|
350
|
+
uri: product?.images,
|
|
351
|
+
priority: FastImage.priority.normal,
|
|
352
|
+
// cache:FastImage.cacheControl.web
|
|
353
|
+
}}
|
|
354
|
+
resizeMode={FastImage.resizeMode.cover}
|
|
355
|
+
/>
|
|
356
|
+
) : (
|
|
357
|
+
<ImageBackground
|
|
358
|
+
style={{ flex: 1, justifyContent: 'center' }}
|
|
359
|
+
source={theme.images.dummies.product}
|
|
360
|
+
resizeMode='cover'
|
|
361
|
+
/>
|
|
362
|
+
)}
|
|
363
|
+
</View>
|
|
364
|
+
</Animated.View>
|
|
314
365
|
</Animated.View>
|
|
315
|
-
|
|
316
|
-
<
|
|
317
|
-
|
|
318
|
-
position: 'absolute',
|
|
319
|
-
zIndex: -100,
|
|
320
|
-
transform: [{ translateY: heroTranslateY }],
|
|
321
|
-
}}>
|
|
322
|
-
<View
|
|
366
|
+
) : (
|
|
367
|
+
<View style={{...styles.imageStyle}}>
|
|
368
|
+
<Animated.View
|
|
323
369
|
style={{
|
|
324
|
-
|
|
325
|
-
|
|
370
|
+
...styles.imageStyle,
|
|
371
|
+
opacity: heroContainerOpacity,
|
|
326
372
|
position: 'absolute',
|
|
327
|
-
zIndex:
|
|
328
|
-
|
|
373
|
+
zIndex: -100,
|
|
374
|
+
transform: [{ translateY: heroTranslateY }],
|
|
329
375
|
}}
|
|
330
376
|
>
|
|
331
|
-
<
|
|
377
|
+
<View style={styles.imageStyle}>
|
|
378
|
+
{product?.images ? (
|
|
379
|
+
<FastImage
|
|
380
|
+
style={{ flex: 1 }}
|
|
381
|
+
source={{
|
|
382
|
+
uri: product?.images,
|
|
383
|
+
priority: FastImage.priority.normal,
|
|
384
|
+
// cache:FastImage.cacheControl.web
|
|
385
|
+
}}
|
|
386
|
+
resizeMode={FastImage.resizeMode.cover}
|
|
387
|
+
/>
|
|
388
|
+
) : (
|
|
389
|
+
<ImageBackground
|
|
390
|
+
style={{ flex: 1, justifyContent: 'center' }}
|
|
391
|
+
source={theme.images.dummies.product}
|
|
392
|
+
resizeMode='cover'
|
|
393
|
+
/>
|
|
394
|
+
)}
|
|
395
|
+
</View>
|
|
396
|
+
</Animated.View>
|
|
397
|
+
</View>
|
|
398
|
+
)}
|
|
332
399
|
|
|
333
|
-
</View>
|
|
334
400
|
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
width: orientationState?.dimensions?.width * 0.75,
|
|
339
|
-
height: HEADER_EXPANDED_HEIGHT / 2,
|
|
340
|
-
position: 'relative',
|
|
341
|
-
top: HEADER_EXPANDED_HEIGHT / 3,
|
|
342
|
-
zIndex: 100,
|
|
343
|
-
padding: 20,
|
|
344
|
-
}}
|
|
345
|
-
>
|
|
401
|
+
{!loading && !error && product && (
|
|
402
|
+
<View style={{ paddingTop: isDrawer ? 20 : HEADER_EXPANDED_HEIGHT, paddingBottom: 80, paddingHorizontal: 16 }}>
|
|
403
|
+
<WrapContent isDrawer={isDrawer}>
|
|
346
404
|
<OText
|
|
347
|
-
|
|
405
|
+
style={{ marginTop: 20 }}
|
|
348
406
|
size={orientationState?.dimensions?.width * 0.038}
|
|
349
407
|
weight="bold"
|
|
350
408
|
mBottom={10}
|
|
@@ -353,33 +411,23 @@ export const ProductOptionsUI = (props: any) => {
|
|
|
353
411
|
{product?.name || productCart?.name}
|
|
354
412
|
</OText>
|
|
355
413
|
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
414
|
+
{(product?.description || productCart?.description) && (
|
|
415
|
+
<OText
|
|
416
|
+
numberOfLines={4}
|
|
417
|
+
>
|
|
418
|
+
{product?.description || productCart?.description}
|
|
419
|
+
</OText>
|
|
420
|
+
)}
|
|
421
|
+
|
|
422
|
+
{((product?.sku && product?.sku !== '-1' && product?.sku !== '1') ||
|
|
423
|
+
(productCart?.sku && productCart?.sku !== '-1' && productCart?.sku !== '1')
|
|
424
|
+
) && (
|
|
425
|
+
<ProductDescription>
|
|
426
|
+
<OText size={20}>{t('SKU', 'Sku')}</OText>
|
|
427
|
+
<OText>{product?.sku || productCart?.sku}</OText>
|
|
428
|
+
</ProductDescription>
|
|
429
|
+
)}
|
|
365
430
|
|
|
366
|
-
{/* {!isFromCheckout && (
|
|
367
|
-
<Spinner visible={loading} />
|
|
368
|
-
)} */}
|
|
369
|
-
{!loading && !error && product && (
|
|
370
|
-
<View style={{ paddingTop: isDrawer ? 10 : 20, paddingBottom: 80 }}>
|
|
371
|
-
<WrapContent isDrawer={isDrawer}>
|
|
372
|
-
<ProductDescription>
|
|
373
|
-
{(
|
|
374
|
-
(product?.sku && product?.sku !== '-1' && product?.sku !== '1') ||
|
|
375
|
-
(productCart?.sku && productCart?.sku !== '-1' && productCart?.sku !== '1')
|
|
376
|
-
) && (
|
|
377
|
-
<>
|
|
378
|
-
<OText size={20}>{t('SKU', 'Sku')}</OText>
|
|
379
|
-
<OText>{product?.sku || productCart?.sku}</OText>
|
|
380
|
-
</>
|
|
381
|
-
)}
|
|
382
|
-
</ProductDescription>
|
|
383
431
|
<ProductEditions>
|
|
384
432
|
{product?.ingredients.length > 0 && (
|
|
385
433
|
<View style={styles.optionContainer}>
|