ordering-ui-react-native 0.14.42 → 0.14.45
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 +1 -1
- package/themes/kiosk/src/components/Cart/index.tsx +14 -21
- package/themes/kiosk/src/components/CartItem/index.tsx +9 -7
- package/themes/kiosk/src/components/CustomerName/index.tsx +2 -1
- package/themes/kiosk/src/components/Intro/index.tsx +4 -4
- package/themes/kiosk/src/components/OptionCard/index.tsx +11 -6
- package/themes/kiosk/src/components/PaymentOptions/index.tsx +46 -44
- package/themes/original/src/components/BusinessItemAccordion/index.tsx +12 -9
- package/themes/original/src/components/BusinessItemAccordion/styles.tsx +3 -2
- package/themes/original/src/components/Help/index.tsx +1 -1
- package/themes/original/src/components/MessageListing/index.tsx +4 -2
- package/themes/original/src/types/index.tsx +2 -0
package/package.json
CHANGED
|
@@ -21,10 +21,10 @@ import { Cart as TypeCart } from '../../types';
|
|
|
21
21
|
import CartItem from '../CartItem';
|
|
22
22
|
import NavBar from '../NavBar';
|
|
23
23
|
import { CouponControl } from '../CouponControl';
|
|
24
|
-
import { LANDSCAPE, PORTRAIT, useDeviceOrientation} from "../../../../../src/hooks/DeviceOrientation";
|
|
24
|
+
import { LANDSCAPE, PORTRAIT, useDeviceOrientation } from "../../../../../src/hooks/DeviceOrientation";
|
|
25
25
|
import { useCartBottomSheet } from '../../providers/CartBottomSheetProvider';
|
|
26
26
|
import { Container } from '../../../../../src/layouts/Container';
|
|
27
|
-
|
|
27
|
+
import AntDesignIcon from 'react-native-vector-icons/AntDesign'
|
|
28
28
|
const CartUI = (props: any) => {
|
|
29
29
|
const {
|
|
30
30
|
cart,
|
|
@@ -35,7 +35,7 @@ const CartUI = (props: any) => {
|
|
|
35
35
|
removeProduct,
|
|
36
36
|
setIsCartsLoading,
|
|
37
37
|
navigation,
|
|
38
|
-
}
|
|
38
|
+
}: CartUIProps = props
|
|
39
39
|
|
|
40
40
|
const theme = useTheme()
|
|
41
41
|
const [, t] = useLanguage()
|
|
@@ -83,8 +83,8 @@ const CartUI = (props: any) => {
|
|
|
83
83
|
|
|
84
84
|
const handleChangeOrderType = () => {
|
|
85
85
|
navigation.push('DeliveryType', {
|
|
86
|
-
callback
|
|
87
|
-
goBack: () => {navigation.pop(1)},
|
|
86
|
+
callback: () => { navigation.pop(1) },
|
|
87
|
+
goBack: () => { navigation.pop(1) },
|
|
88
88
|
});
|
|
89
89
|
}
|
|
90
90
|
|
|
@@ -97,7 +97,7 @@ const CartUI = (props: any) => {
|
|
|
97
97
|
title={t('CONFIRM_YOUR_ORDER', 'Confirm your order')}
|
|
98
98
|
onActionLeft={goToBack}
|
|
99
99
|
style={{ height: orientationState?.dimensions?.height * 0.08 }}
|
|
100
|
-
btnStyle={{paddingLeft: 0}}
|
|
100
|
+
btnStyle={{ paddingLeft: 0 }}
|
|
101
101
|
rightComponent={(
|
|
102
102
|
<OButton
|
|
103
103
|
text={t('CANCEL_ORDER', 'Cancel order')}
|
|
@@ -183,6 +183,7 @@ const CartUI = (props: any) => {
|
|
|
183
183
|
</OText>
|
|
184
184
|
</OSTable>
|
|
185
185
|
{cart?.discount > 0 && cart?.total >= 0 && orientationState?.orientation == PORTRAIT && (
|
|
186
|
+
|
|
186
187
|
<OSTable
|
|
187
188
|
style={{
|
|
188
189
|
backgroundColor: theme.colors.success,
|
|
@@ -197,10 +198,7 @@ const CartUI = (props: any) => {
|
|
|
197
198
|
flexDirection: 'row',
|
|
198
199
|
}}
|
|
199
200
|
>
|
|
200
|
-
<
|
|
201
|
-
src={theme.images.general.check_decagram}
|
|
202
|
-
/>
|
|
203
|
-
|
|
201
|
+
<AntDesignIcon name='checkcircle' size={24} color='#00D27A' />
|
|
204
202
|
{cart?.discount_type === 1 ? (
|
|
205
203
|
<OText
|
|
206
204
|
mLeft={15}
|
|
@@ -219,8 +217,6 @@ const CartUI = (props: any) => {
|
|
|
219
217
|
</OText>
|
|
220
218
|
)}
|
|
221
219
|
</View>
|
|
222
|
-
|
|
223
|
-
|
|
224
220
|
<OText
|
|
225
221
|
size={16}
|
|
226
222
|
color={theme.colors.green}
|
|
@@ -252,9 +248,9 @@ const CartUI = (props: any) => {
|
|
|
252
248
|
{cart?.driver_tip_rate > 0 &&
|
|
253
249
|
parseInt(configs?.driver_tip_type?.value, 10) === 2 &&
|
|
254
250
|
!!!parseInt(configs?.driver_tip_use_custom?.value, 10) &&
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
251
|
+
(
|
|
252
|
+
`(${parseNumber(cart?.driver_tip_rate)}%)`
|
|
253
|
+
)}
|
|
258
254
|
</OText>
|
|
259
255
|
<OText>{parsePrice(cart?.driver_tip)}</OText>
|
|
260
256
|
</OSTable>
|
|
@@ -294,7 +290,7 @@ const CartUI = (props: any) => {
|
|
|
294
290
|
<>
|
|
295
291
|
<FloatingLayout isIos={Platform.OS === 'ios'}>
|
|
296
292
|
<CheckoutAction>
|
|
297
|
-
<View style={{display: 'flex', flexDirection: 'row'}}>
|
|
293
|
+
<View style={{ display: 'flex', flexDirection: 'row' }}>
|
|
298
294
|
{cart?.discount > 0 && cart?.total >= 0 && orientationState?.orientation == LANDSCAPE && (
|
|
299
295
|
<OSTable
|
|
300
296
|
style={{
|
|
@@ -311,10 +307,7 @@ const CartUI = (props: any) => {
|
|
|
311
307
|
flexDirection: 'row',
|
|
312
308
|
}}
|
|
313
309
|
>
|
|
314
|
-
<
|
|
315
|
-
src={theme.images.general.check_decagram}
|
|
316
|
-
/>
|
|
317
|
-
|
|
310
|
+
<AntDesignIcon name='checkcircle' size={24} color='#00D27A' />
|
|
318
311
|
{cart?.discount_type === 1 ? (
|
|
319
312
|
<OText
|
|
320
313
|
mLeft={15}
|
|
@@ -369,7 +362,7 @@ const CartUI = (props: any) => {
|
|
|
369
362
|
imgRightSrc={null}
|
|
370
363
|
textStyle={{ color: 'white', textAlign: 'center', flex: 1 }}
|
|
371
364
|
onClick={() => { navigation?.navigate('CustomerName', { cartUuid: cart?.uuid }) }}
|
|
372
|
-
style={{width: '100%', marginTop: 4}}
|
|
365
|
+
style={{ width: '100%', marginTop: 4 }}
|
|
373
366
|
/>
|
|
374
367
|
</View>
|
|
375
368
|
</View>
|
|
@@ -16,6 +16,7 @@ import { Product } from '../../types';
|
|
|
16
16
|
import QuantityControl from '../QuantityControl';
|
|
17
17
|
import { LANDSCAPE, useDeviceOrientation } from '../../../../../src/hooks/DeviceOrientation';
|
|
18
18
|
import { useTheme } from 'styled-components/native';
|
|
19
|
+
import FontAwesomeIcon from 'react-native-vector-icons/FontAwesome'
|
|
19
20
|
|
|
20
21
|
const CartItem = (props: CartItemProps) => {
|
|
21
22
|
const theme = useTheme()
|
|
@@ -97,7 +98,6 @@ const CartItem = (props: CartItemProps) => {
|
|
|
97
98
|
<OButton
|
|
98
99
|
bgColor="transparent"
|
|
99
100
|
borderColor="transparent"
|
|
100
|
-
imgLeftSrc={theme.images.general.edit}
|
|
101
101
|
text={t('EDIT', 'Edit')}
|
|
102
102
|
style={{ justifyContent: 'flex-start', paddingLeft: 0, maxWidth: 80 }}
|
|
103
103
|
textStyle={{
|
|
@@ -105,16 +105,18 @@ const CartItem = (props: CartItemProps) => {
|
|
|
105
105
|
marginLeft: 6,
|
|
106
106
|
}}
|
|
107
107
|
onClick={() => { onEditProduct ? onEditProduct(product) : null }}
|
|
108
|
+
iconProps={{ name: 'edit' }}
|
|
109
|
+
IconCustom={() => <FontAwesomeIcon name='edit' size={24} color={theme.colors.primary} />}
|
|
108
110
|
/>
|
|
109
111
|
<OIconButton
|
|
110
112
|
bgColor="transparent"
|
|
111
113
|
borderColor="transparent"
|
|
112
|
-
RenderIcon={isProductIngredients && (() =>
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
114
|
+
RenderIcon={isProductIngredients && (() =>
|
|
115
|
+
<EvilIcons
|
|
116
|
+
name={isActive ? 'chevron-up' : 'chevron-down'}
|
|
117
|
+
size={40}
|
|
118
|
+
color={theme.colors.primary}
|
|
119
|
+
/>
|
|
118
120
|
)}
|
|
119
121
|
style={{ justifyContent: 'flex-start', right: 40 }}
|
|
120
122
|
onClick={() => (!product?.valid_menu && isCartProduct)
|
|
@@ -72,12 +72,13 @@ const CustomerName = (props: Props): React.ReactElement => {
|
|
|
72
72
|
<OButton
|
|
73
73
|
text={t('SKIP', 'Skip')}
|
|
74
74
|
onClick={onProceedToPay}
|
|
75
|
-
textStyle={{color: theme.colors.
|
|
75
|
+
textStyle={{color: theme.colors.primary, fontSize: 20}}
|
|
76
76
|
parentStyle={{
|
|
77
77
|
height: orientationState?.orientation === PORTRAIT
|
|
78
78
|
? 50 : 100
|
|
79
79
|
}}
|
|
80
80
|
style={{
|
|
81
|
+
backgroundColor: theme.colors.white,
|
|
81
82
|
width: orientationState?.orientation === PORTRAIT
|
|
82
83
|
? orientationState?.dimensions.width - 40
|
|
83
84
|
: orientationState?.dimensions.width * 0.1,
|
|
@@ -8,7 +8,7 @@ import OImage from '../../components/shared/OImage';
|
|
|
8
8
|
import OButton from '../../components/shared/OButton';
|
|
9
9
|
import { LanguageSelector } from '../../components/LanguageSelector';
|
|
10
10
|
import { LogoutPopup } from '../../components/LogoutPopup';
|
|
11
|
-
import {PORTRAIT, LANDSCAPE, useDeviceOrientation} from "../../../../../src/hooks/DeviceOrientation";
|
|
11
|
+
import { PORTRAIT, LANDSCAPE, useDeviceOrientation } from "../../../../../src/hooks/DeviceOrientation";
|
|
12
12
|
|
|
13
13
|
const Intro = (props: any): React.ReactElement => {
|
|
14
14
|
const { navigation } = props;
|
|
@@ -87,7 +87,7 @@ const Intro = (props: any): React.ReactElement => {
|
|
|
87
87
|
source={theme.images.general.homeHeroLandscape}
|
|
88
88
|
width={orientationState?.dimensions?.width * 0.40}
|
|
89
89
|
height={orientationState?.dimensions?.height * 1.1}
|
|
90
|
-
style={{bottom: 100, right: 100}}
|
|
90
|
+
style={{ bottom: 100, right: 100 }}
|
|
91
91
|
resizeMode='cover'
|
|
92
92
|
/>
|
|
93
93
|
|
|
@@ -114,7 +114,7 @@ const Intro = (props: any): React.ReactElement => {
|
|
|
114
114
|
|
|
115
115
|
<OButton
|
|
116
116
|
style={styles.buttonLandStyle}
|
|
117
|
-
text={t('
|
|
117
|
+
text={t('TOUCH_ANYWHERE_TO_ORDER', 'Touch anywhere to order')}
|
|
118
118
|
parentStyle={{
|
|
119
119
|
alignItems: 'center',
|
|
120
120
|
width: orientationState?.dimensions?.width - _offset
|
|
@@ -138,7 +138,7 @@ const Intro = (props: any): React.ReactElement => {
|
|
|
138
138
|
|
|
139
139
|
const styles = StyleSheet.create({
|
|
140
140
|
buttonLandStyle: {
|
|
141
|
-
width:
|
|
141
|
+
width: 290,
|
|
142
142
|
marginBottom: 16
|
|
143
143
|
}
|
|
144
144
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { FunctionComponent } from 'react';
|
|
2
2
|
import { ImageSourcePropType, ImageStyle, TextStyle, ViewStyle, ActivityIndicator } from 'react-native';
|
|
3
3
|
import { TouchableOpacity } from 'react-native-gesture-handler';
|
|
4
4
|
import { useTheme } from 'styled-components/native';
|
|
@@ -28,11 +28,15 @@ const OptionCard = (props: Props) => {
|
|
|
28
28
|
<ActivityIndicator size='large' color='#ffffff' />
|
|
29
29
|
</ActivityIndicatorContainer>
|
|
30
30
|
)}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
31
|
+
{props.icon && (
|
|
32
|
+
<OIcon
|
|
33
|
+
src={props.icon}
|
|
34
|
+
style={{ marginBottom: 10, ...props?.iconStyle }}
|
|
35
|
+
/>
|
|
36
|
+
)}
|
|
37
|
+
{props.VectorIcon && (
|
|
38
|
+
<props.VectorIcon />
|
|
39
|
+
)}
|
|
36
40
|
<OText
|
|
37
41
|
weight="700"
|
|
38
42
|
color="white"
|
|
@@ -97,6 +101,7 @@ interface Props {
|
|
|
97
101
|
callToActionTextStyle?: TextStyle;
|
|
98
102
|
callToActionIcon?: ImageSourcePropType;
|
|
99
103
|
callToActionIconStyle?: ImageStyle;
|
|
104
|
+
VectorIcon?: FunctionComponent;
|
|
100
105
|
}
|
|
101
106
|
|
|
102
107
|
export default OptionCard;
|
|
@@ -19,6 +19,8 @@ import Spinner from 'react-native-loading-spinner-overlay';
|
|
|
19
19
|
import { LANDSCAPE, PORTRAIT, useDeviceOrientation } from '../../../../../src/hooks/DeviceOrientation';
|
|
20
20
|
import GridContainer from '../../layouts/GridContainer';
|
|
21
21
|
import { OModal, PaymentOptionStripe } from '../../../../../src';
|
|
22
|
+
import AntIconDesign from 'react-native-vector-icons/AntDesign'
|
|
23
|
+
import MaterialIcon from 'react-native-vector-icons/MaterialCommunityIcons'
|
|
22
24
|
|
|
23
25
|
const PaymentOptionsUI = (props: any) => {
|
|
24
26
|
const {
|
|
@@ -41,7 +43,7 @@ const PaymentOptionsUI = (props: any) => {
|
|
|
41
43
|
} = props;
|
|
42
44
|
|
|
43
45
|
const theme = useTheme();
|
|
44
|
-
const [, {showToast}] = useToast();
|
|
46
|
+
const [, { showToast }] = useToast();
|
|
45
47
|
const [, t] = useLanguage();
|
|
46
48
|
const [orientationState] = useDeviceOrientation();
|
|
47
49
|
const [userErrors, setUserErrors] = useState<any>([]);
|
|
@@ -134,52 +136,52 @@ const PaymentOptionsUI = (props: any) => {
|
|
|
134
136
|
CASH_ID:
|
|
135
137
|
cashIndex !== -1
|
|
136
138
|
? {
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
139
|
+
style: cardStyle,
|
|
140
|
+
title: t('CASH', 'Cash'),
|
|
141
|
+
description: t(
|
|
142
|
+
'GO_FOR_YOR_RECEIPT_AND_GO_TO_THE_FRONT_COUNTER',
|
|
143
|
+
'Pay with cash in the front counter',
|
|
144
|
+
),
|
|
145
|
+
bgImage: theme.images.general.cash,
|
|
146
|
+
callToActionText: t('LETS_GO', 'LETS_GO'),
|
|
147
|
+
VectorIcon: () => <AntIconDesign name='shoppingcart' size={28} color='white' style={{ marginBottom: 10 }} />,
|
|
148
|
+
onClick: () =>
|
|
149
|
+
onSelectPaymethod(supportedMethods[cashIndex], false),
|
|
150
|
+
...supportedMethods[cashIndex],
|
|
151
|
+
}
|
|
150
152
|
: null,
|
|
151
153
|
|
|
152
154
|
CARD_ON_DELIVERY_ID:
|
|
153
155
|
cardOnDeliveryIndex !== -1
|
|
154
156
|
? {
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
157
|
+
style: cardStyle,
|
|
158
|
+
title: t('CARD', supportedMethods[cardOnDeliveryIndex]?.name),
|
|
159
|
+
description: t(
|
|
160
|
+
'WE_ACCEPT_EVERY_DEBIT_OR_CREDIT_CARD',
|
|
161
|
+
'We accept every debit or credit card',
|
|
162
|
+
),
|
|
163
|
+
bgImage: theme.images.general.carddelivery,
|
|
164
|
+
callToActionText: t("LETS_GO", "Let's go"),
|
|
165
|
+
VectorIcon: () => <MaterialIcon name='pin-outline' size={28} color='white' style={{ marginBottom: 10 }} />,
|
|
166
|
+
onClick: () => onSelectPaymethod(supportedMethods[cardOnDeliveryIndex], false),
|
|
167
|
+
...supportedMethods[cardOnDeliveryIndex],
|
|
168
|
+
}
|
|
167
169
|
: null,
|
|
168
170
|
STRIPE:
|
|
169
171
|
stripeIndex !== -1
|
|
170
172
|
? {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
173
|
+
style: cardStyle,
|
|
174
|
+
title: t('STRIPE', supportedMethods[stripeIndex]?.name),
|
|
175
|
+
description: t('STRIPE', 'Stripe'),
|
|
176
|
+
bgImage: theme.images.general.carddelivery,
|
|
177
|
+
callToActionText: t('INSERT_INFO', 'Test info'),
|
|
178
|
+
VectorIcon: () => <MaterialIcon name='pin-outline' size={28} color='white' style={{ marginBottom: 10 }} />,
|
|
179
|
+
onClick: () => {
|
|
180
|
+
onSelectPaymethod(supportedMethods[stripeIndex], false);
|
|
181
|
+
setIsOpenModal(true)
|
|
182
|
+
},
|
|
183
|
+
...supportedMethods[stripeIndex],
|
|
184
|
+
}
|
|
183
185
|
: null,
|
|
184
186
|
};
|
|
185
187
|
|
|
@@ -193,11 +195,11 @@ const PaymentOptionsUI = (props: any) => {
|
|
|
193
195
|
<NavBar
|
|
194
196
|
title={t('PAYMENT_METHODS', 'Payment methods')}
|
|
195
197
|
onActionLeft={goToBack}
|
|
196
|
-
btnStyle={{paddingLeft: 0}}
|
|
198
|
+
btnStyle={{ paddingLeft: 0 }}
|
|
197
199
|
/>
|
|
198
200
|
|
|
199
201
|
<View
|
|
200
|
-
style={{marginVertical: orientationState?.dimensions?.height * 0.03}}>
|
|
202
|
+
style={{ marginVertical: orientationState?.dimensions?.height * 0.03 }}>
|
|
201
203
|
<OText size={orientationState?.dimensions?.width * 0.048}>
|
|
202
204
|
{t('HOW_WOULD_YOU', 'How would you')} {'\n'}
|
|
203
205
|
<OText
|
|
@@ -209,10 +211,10 @@ const PaymentOptionsUI = (props: any) => {
|
|
|
209
211
|
</View>
|
|
210
212
|
|
|
211
213
|
{supportedMethods?.length > 0 && (
|
|
212
|
-
<GridContainer style={{justifyContent: 'space-between'}}>
|
|
214
|
+
<GridContainer style={{ justifyContent: 'space-between' }}>
|
|
213
215
|
{propsOfItems.CARD_ON_DELIVERY_ID && (
|
|
214
|
-
<View style={{marginBottom: orientationState?.orientation === LANDSCAPE ? 20 : 0}}>
|
|
215
|
-
<OptionCard {...propsOfItems?.CARD_ON_DELIVERY_ID} styke/>
|
|
216
|
+
<View style={{ marginBottom: orientationState?.orientation === LANDSCAPE ? 20 : 0 }}>
|
|
217
|
+
<OptionCard {...propsOfItems?.CARD_ON_DELIVERY_ID} styke />
|
|
216
218
|
</View>
|
|
217
219
|
)}
|
|
218
220
|
|
|
@@ -249,7 +251,7 @@ const PaymentOptionsUI = (props: any) => {
|
|
|
249
251
|
)}
|
|
250
252
|
</GridContainer>
|
|
251
253
|
)}
|
|
252
|
-
<View style={{height: orientationState?.dimensions?.height * 0.05}} />
|
|
254
|
+
<View style={{ height: orientationState?.dimensions?.height * 0.05 }} />
|
|
253
255
|
<OModal
|
|
254
256
|
open={isOpenModal}
|
|
255
257
|
onClose={() => setIsOpenModal(false)}
|
|
@@ -139,17 +139,20 @@ export const BusinessItemAccordion = (props: any) => {
|
|
|
139
139
|
)}
|
|
140
140
|
</BIActions>
|
|
141
141
|
</BIHeader>
|
|
142
|
-
{!isActive && !isClosed && !!isProducts &&
|
|
142
|
+
{!isActive && !isClosed && !!isProducts && (
|
|
143
143
|
<PriceContainer>
|
|
144
144
|
<OText>{parsePrice(cart?.total)}</OText>
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
145
|
+
{cart?.valid_products && (
|
|
146
|
+
<OButton
|
|
147
|
+
onClick={handleClickCheckout}
|
|
148
|
+
textStyle={{ color: 'white', textAlign: 'center', flex: 1 }}
|
|
149
|
+
style={{ width: 160, flexDirection: 'row', justifyContent: 'center', borderRadius: 7.6, shadowOpacity: 0 }}
|
|
150
|
+
text={t('CHECKOUT', 'Checkout')}
|
|
151
|
+
bgColor={(cart?.subtotal < cart?.minimum || !cart?.valid_address) ? theme.colors.secundary : theme.colors.primary}
|
|
152
|
+
borderColor={theme.colors.primary}
|
|
153
|
+
isDisabled={checkoutButtonDisabled}
|
|
154
|
+
/>
|
|
155
|
+
)}
|
|
153
156
|
</PriceContainer>
|
|
154
157
|
)}
|
|
155
158
|
|
|
@@ -48,7 +48,7 @@ export const Help = (props: HelpParams) => {
|
|
|
48
48
|
|
|
49
49
|
<LastOrdersContainer>
|
|
50
50
|
<OText size={18} weight={600}>{t('LAST_ORDERS', 'Last Orders')}</OText>
|
|
51
|
-
<LastOrders
|
|
51
|
+
<LastOrders {...props} onRedirect={onRedirect} />
|
|
52
52
|
</LastOrdersContainer>
|
|
53
53
|
</>
|
|
54
54
|
)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { useState, useEffect } from 'react'
|
|
2
|
-
import { useLanguage, useOrder, ToastType, useToast, OrderList, OrderDetails as OrderDetailsConTableoller } from 'ordering-components/native'
|
|
2
|
+
import { useLanguage, useOrder, ToastType, useToast, OrderList, OrderDetails as OrderDetailsConTableoller, useBusiness } from 'ordering-components/native'
|
|
3
3
|
import { useTheme } from 'styled-components/native';
|
|
4
4
|
import { useFocusEffect } from '@react-navigation/native'
|
|
5
5
|
import { OText, OModal } from '../shared'
|
|
@@ -214,6 +214,7 @@ const OrderMessageUI = (props: any) => {
|
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
export const OrderListing = (props: OrdersOptionParams) => {
|
|
217
|
+
const [businessState] = useBusiness();
|
|
217
218
|
const OrderListingProps = {
|
|
218
219
|
...props,
|
|
219
220
|
UIComponent: OrdersOptionUI,
|
|
@@ -224,6 +225,7 @@ export const OrderListing = (props: OrdersOptionParams) => {
|
|
|
224
225
|
pageSize: 10,
|
|
225
226
|
controlType: 'infinity'
|
|
226
227
|
},
|
|
228
|
+
businessId: businessState?.business?.id,
|
|
227
229
|
profileMessages: true,
|
|
228
230
|
orderBy: 'last_direct_message_at',
|
|
229
231
|
orderDirection: 'asc'
|
|
@@ -287,6 +289,7 @@ export const MessageListing = (props: MessageListingParams) => {
|
|
|
287
289
|
setSelectedOrderId={setSelectedOrderId}
|
|
288
290
|
setOrderList={setOrderListStatus}
|
|
289
291
|
setOpenMessges={setOpenMessges}
|
|
292
|
+
franchiseId={props.franchiseId}
|
|
290
293
|
/>
|
|
291
294
|
{openMessages && seletedOrder && (
|
|
292
295
|
<OModal
|
|
@@ -304,4 +307,3 @@ export const MessageListing = (props: MessageListingParams) => {
|
|
|
304
307
|
</MessageListingWrapper>
|
|
305
308
|
)
|
|
306
309
|
}
|
|
307
|
-
|
|
@@ -253,6 +253,7 @@ export interface NotFoundSourceParams {
|
|
|
253
253
|
}
|
|
254
254
|
export interface OrdersOptionParams {
|
|
255
255
|
orderList?: any,
|
|
256
|
+
franchiseId?: any,
|
|
256
257
|
activeOrders?: boolean,
|
|
257
258
|
pagination?: any,
|
|
258
259
|
titleContent?: string,
|
|
@@ -482,4 +483,5 @@ export interface HelpAccountAndPaymentParams {
|
|
|
482
483
|
|
|
483
484
|
export interface MessageListingParams {
|
|
484
485
|
navigation: any;
|
|
486
|
+
franchiseId?: any;
|
|
485
487
|
}
|