ordering-ui-react-native 0.17.66 → 0.17.67-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 +8 -7
- 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/OrderCreating/index.tsx +1 -21
- package/src/components/PaymentOptionsWebView/index.tsx +29 -8
- package/src/components/PhoneInputNumber/index.tsx +6 -2
- package/src/components/StripeMethodForm/index.tsx +136 -102
- package/src/components/VerifyPhone/styles.tsx +1 -2
- package/src/components/shared/OToast.tsx +2 -1
- package/src/types/index.tsx +5 -0
- package/src/utils/index.tsx +5 -0
- package/themes/business/index.tsx +2 -0
- package/themes/business/src/components/AcceptOrRejectOrder/index.tsx +270 -245
- package/themes/business/src/components/AcceptOrRejectOrder/styles.tsx +6 -4
- package/themes/business/src/components/BusinessController/index.tsx +0 -1
- package/themes/business/src/components/Chat/index.tsx +123 -111
- package/themes/business/src/components/DriverMap/index.tsx +17 -6
- package/themes/business/src/components/DriverSchedule/index.tsx +42 -5
- package/themes/business/src/components/GoogleMap/index.tsx +58 -57
- package/themes/business/src/components/LoginForm/Otp/index.tsx +31 -3
- package/themes/business/src/components/LoginForm/index.tsx +15 -22
- package/themes/business/src/components/MapView/index.tsx +10 -10
- package/themes/business/src/components/NewOrderNotification/index.tsx +35 -21
- package/themes/business/src/components/NotFoundSource/index.tsx +2 -2
- package/themes/business/src/components/OrderDetails/Business.tsx +1 -1
- package/themes/business/src/components/OrderDetails/Delivery.tsx +191 -6
- package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +133 -65
- package/themes/business/src/components/OrderDetails/OrderHeaderComponent.tsx +64 -63
- package/themes/business/src/components/OrderDetailsLogistic/index.tsx +195 -0
- package/themes/business/src/components/OrderDetailsLogistic/styles.tsx +5 -0
- package/themes/business/src/components/OrderMessage/index.tsx +19 -18
- package/themes/business/src/components/OrderSummary/index.tsx +114 -123
- package/themes/business/src/components/OrdersOption/index.tsx +32 -75
- package/themes/business/src/components/PreviousOrders/OrderItem.tsx +249 -0
- package/themes/business/src/components/PreviousOrders/OrdersGroupedItem.tsx +115 -0
- package/themes/business/src/components/PreviousOrders/index.tsx +444 -242
- package/themes/business/src/components/PreviousOrders/styles.tsx +31 -3
- package/themes/business/src/components/ProductItemAccordion/index.tsx +27 -3
- package/themes/business/src/components/ReviewCustomer/index.tsx +30 -15
- package/themes/business/src/components/StoresList/index.tsx +3 -4
- package/themes/business/src/components/UserProfileForm/index.tsx +11 -13
- package/themes/business/src/components/shared/OLink.tsx +33 -13
- package/themes/business/src/components/shared/OModal.tsx +16 -9
- package/themes/business/src/components/shared/OText.tsx +8 -2
- package/themes/business/src/types/index.tsx +28 -12
- package/themes/business/src/utils/index.tsx +29 -2
- package/themes/doordash/src/components/BusinessesListing/index.tsx +1 -1
- package/themes/doordash/src/components/LoginForm/index.tsx +1 -2
- package/themes/instacart/src/components/BusinessesListing/index.tsx +1 -1
- package/themes/kiosk/src/components/Checkout/index.tsx +6 -0
- package/themes/kiosk/src/components/Intro/index.tsx +16 -1
- package/themes/kiosk/src/components/LoginForm/index.tsx +7 -9
- 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/PhoneInputNumber/index.tsx +2 -2
- package/themes/kiosk/src/components/shared/OButton.tsx +5 -18
- package/themes/original/index.tsx +4 -0
- package/themes/original/src/components/AddressDetails/index.tsx +19 -3
- package/themes/original/src/components/AddressForm/index.tsx +61 -39
- package/themes/original/src/components/AddressList/index.tsx +27 -22
- package/themes/original/src/components/AddressList/styles.tsx +4 -2
- package/themes/original/src/components/AnalyticsSegment/index.tsx +193 -10
- package/themes/original/src/components/AppleLogin/index.tsx +4 -4
- package/themes/original/src/components/AppleLogin/styles.tsx +3 -1
- package/themes/original/src/components/BusinessBasicInformation/index.tsx +153 -96
- package/themes/original/src/components/BusinessBasicInformation/styles.tsx +10 -12
- package/themes/original/src/components/BusinessController/index.tsx +94 -66
- package/themes/original/src/components/BusinessController/styles.tsx +22 -3
- package/themes/original/src/components/BusinessFeaturedController/index.tsx +21 -54
- package/themes/original/src/components/BusinessFeaturedController/styles.tsx +8 -0
- package/themes/original/src/components/BusinessInformation/index.tsx +142 -109
- package/themes/original/src/components/BusinessItemAccordion/index.tsx +15 -20
- package/themes/original/src/components/BusinessListingSearch/index.tsx +349 -339
- package/themes/original/src/components/BusinessListingSearch/styles.tsx +0 -18
- package/themes/original/src/components/BusinessPreorder/index.tsx +103 -19
- package/themes/original/src/components/BusinessProductsCategories/index.tsx +1 -2
- package/themes/original/src/components/BusinessProductsList/index.tsx +15 -7
- package/themes/original/src/components/BusinessProductsList/styles.tsx +8 -3
- package/themes/original/src/components/BusinessProductsListing/UpsellingRedirect.tsx +1 -1
- package/themes/original/src/components/BusinessProductsListing/index.tsx +684 -555
- package/themes/original/src/components/BusinessProductsListing/styles.tsx +2 -2
- package/themes/original/src/components/BusinessReviews/index.tsx +3 -1
- package/themes/original/src/components/BusinessesListing/Layout/Appointment/index.tsx +1 -1
- package/themes/original/src/components/BusinessesListing/Layout/Original/index.tsx +69 -38
- package/themes/original/src/components/BusinessesListing/Layout/Original/styles.tsx +0 -1
- package/themes/original/src/components/BusinessesListing/index.tsx +0 -1
- package/themes/original/src/components/Cart/index.tsx +77 -50
- package/themes/original/src/components/CartContent/index.tsx +117 -20
- package/themes/original/src/components/CartContent/styles.tsx +17 -7
- package/themes/original/src/components/Checkout/index.tsx +356 -124
- package/themes/original/src/components/CitiesControl/index.tsx +1 -1
- package/themes/original/src/components/CouponControl/index.tsx +10 -3
- package/themes/original/src/components/DriverTips/index.tsx +52 -34
- package/themes/original/src/components/FacebookLogin/styles.tsx +3 -1
- package/themes/original/src/components/Favorite/index.tsx +8 -9
- package/themes/original/src/components/Favorite/styles.tsx +1 -1
- package/themes/original/src/components/FavoriteList/index.tsx +1 -35
- package/themes/original/src/components/FloatingButton/index.tsx +1 -2
- package/themes/original/src/components/FloatingButton/styles.tsx +1 -1
- package/themes/original/src/components/GPSButton/index.tsx +6 -4
- package/themes/original/src/components/GiftCard/GiftCardUI/index.tsx +96 -0
- package/themes/original/src/components/GiftCard/GiftCardUI/styles.tsx +5 -0
- package/themes/original/src/components/GiftCard/PurchaseGiftCard/index.tsx +100 -0
- package/themes/original/src/components/GiftCard/PurchaseGiftCard/styles.tsx +8 -0
- package/themes/original/src/components/GiftCard/RedeemGiftCard/index.tsx +191 -0
- package/themes/original/src/components/GiftCard/RedeemGiftCard/styles.tsx +8 -0
- package/themes/original/src/components/GiftCard/SendGiftCard/index.tsx +165 -0
- package/themes/original/src/components/GiftCard/SendGiftCard/styles.tsx +9 -0
- package/themes/original/src/components/GoogleLogin/styles.tsx +1 -1
- package/themes/original/src/components/GoogleMap/index.tsx +60 -5
- package/themes/original/src/components/Help/index.tsx +8 -8
- package/themes/original/src/components/HelpAccountAndPayment/index.tsx +10 -31
- package/themes/original/src/components/HelpAccountAndPayment/styles.tsx +5 -3
- package/themes/original/src/components/HelpGuide/index.tsx +6 -6
- package/themes/original/src/components/HelpGuide/styles.tsx +6 -0
- package/themes/original/src/components/HelpOrder/index.tsx +6 -15
- package/themes/original/src/components/HelpOrder/styles.tsx +8 -1
- package/themes/original/src/components/Home/index.tsx +13 -4
- package/themes/original/src/components/LastOrder/index.tsx +1 -34
- package/themes/original/src/components/LoginForm/Otp/index.tsx +91 -31
- package/themes/original/src/components/LoginForm/Otp/styles.tsx +0 -1
- package/themes/original/src/components/LoginForm/index.tsx +64 -34
- package/themes/original/src/components/LottieAnimation/index.tsx +89 -55
- package/themes/original/src/components/MessageListing/index.tsx +16 -42
- package/themes/original/src/components/Messages/index.tsx +29 -7
- package/themes/original/src/components/MomentOption/index.tsx +195 -90
- package/themes/original/src/components/MomentSelector/index.tsx +1 -1
- package/themes/original/src/components/MultiCart/index.tsx +50 -0
- package/themes/original/src/components/MultiCartsPaymethodsAndWallets/index.tsx +162 -51
- package/themes/original/src/components/MultiCheckout/index.tsx +330 -99
- package/themes/original/src/components/MultiCheckout/styles.tsx +3 -1
- package/themes/original/src/components/MultiOrdersDetails/SingleOrderCard.tsx +37 -224
- package/themes/original/src/components/MultiOrdersDetails/index.tsx +68 -21
- package/themes/original/src/components/MultiOrdersDetails/styles.tsx +1 -1
- package/themes/original/src/components/MyOrders/index.tsx +40 -29
- package/themes/original/src/components/NavBar/index.tsx +20 -17
- package/themes/original/src/components/NotFoundSource/index.tsx +14 -10
- package/themes/original/src/components/Notifications/index.tsx +46 -50
- package/themes/original/src/components/Notifications/styles.tsx +6 -3
- package/themes/original/src/components/OrderDetails/OrderEta.tsx +76 -0
- package/themes/original/src/components/OrderDetails/OrderHistory.tsx +21 -5
- package/themes/original/src/components/OrderDetails/index.tsx +191 -363
- package/themes/original/src/components/OrderDetails/styles.tsx +0 -1
- package/themes/original/src/components/OrderItAgain/index.tsx +3 -1
- package/themes/original/src/components/OrderProgress/index.tsx +30 -56
- package/themes/original/src/components/OrderSummary/index.tsx +88 -59
- package/themes/original/src/components/OrderTypeSelector/index.tsx +2 -1
- package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/index.tsx +14 -14
- package/themes/original/src/components/OrdersOption/index.tsx +78 -67
- package/themes/original/src/components/OrdersOption/styles.tsx +1 -1
- package/themes/original/src/components/PageBanner/index.tsx +98 -38
- package/themes/original/src/components/PageBanner/styles.tsx +0 -10
- package/themes/original/src/components/PaymentOptionCard/index.tsx +180 -0
- package/themes/original/src/components/PaymentOptionStripe/styles.tsx +1 -1
- package/themes/original/src/components/PaymentOptionWallet/index.tsx +56 -56
- package/themes/original/src/components/PaymentOptions/index.tsx +78 -35
- package/themes/original/src/components/PhoneInputNumber/index.tsx +3 -3
- package/themes/original/src/components/ProductForm/index.tsx +105 -30
- package/themes/original/src/components/ProductForm/styles.tsx +5 -5
- package/themes/original/src/components/ProductItemAccordion/index.tsx +14 -11
- package/themes/original/src/components/ProductOptionSubOption/index.tsx +20 -18
- package/themes/original/src/components/ProductOptionSubOption/styles.tsx +5 -9
- package/themes/original/src/components/ProfessionalFilter/SingleProfessionalCard/index.tsx +108 -0
- package/themes/original/src/components/ProfessionalFilter/index.tsx +20 -50
- package/themes/original/src/components/ProfessionalProfile/index.tsx +36 -7
- package/themes/original/src/components/Promotions/index.tsx +5 -4
- package/themes/original/src/components/Promotions/styles.tsx +3 -1
- package/themes/original/src/components/ReviewOrder/index.tsx +26 -9
- package/themes/original/src/components/ReviewOrder/styles.tsx +7 -0
- package/themes/original/src/components/ReviewProducts/index.tsx +16 -7
- package/themes/original/src/components/ReviewTrigger/index.tsx +27 -9
- package/themes/original/src/components/ReviewTrigger/styles.tsx +8 -1
- package/themes/original/src/components/ScheduleAccordion/index.tsx +68 -0
- package/themes/original/src/components/ScheduleAccordion/styles.tsx +14 -0
- package/themes/original/src/components/ServiceForm/index.tsx +66 -17
- package/themes/original/src/components/Sessions/index.tsx +11 -8
- package/themes/original/src/components/Sessions/styles.tsx +5 -0
- package/themes/original/src/components/SignupForm/index.tsx +43 -27
- package/themes/original/src/components/SingleOrderCard/index.tsx +130 -56
- package/themes/original/src/components/SingleOrderCard/styles.tsx +11 -2
- package/themes/original/src/components/SingleProductCard/index.tsx +72 -31
- package/themes/original/src/components/SingleProductCard/styles.tsx +20 -4
- package/themes/original/src/components/SingleProductReview/styles.tsx +1 -1
- package/themes/original/src/components/StripeCardsList/index.tsx +49 -5
- package/themes/original/src/components/StripeElementsForm/index.tsx +48 -34
- package/themes/original/src/components/StripeElementsForm/naked.tsx +12 -1
- package/themes/original/src/components/UpsellingProducts/index.tsx +238 -224
- package/themes/original/src/components/UpsellingProducts/styles.tsx +12 -1
- package/themes/original/src/components/UserDetails/index.tsx +3 -1
- package/themes/original/src/components/UserFormDetails/index.tsx +76 -7
- package/themes/original/src/components/UserFormDetails/styles.tsx +1 -1
- package/themes/original/src/components/UserProfile/index.tsx +88 -79
- package/themes/original/src/components/UserProfileForm/index.tsx +27 -29
- package/themes/original/src/components/UserProfileForm/styles.tsx +7 -0
- package/themes/original/src/components/UserVerification/index.tsx +52 -49
- package/themes/original/src/components/WalletTransactionItem/index.tsx +2 -2
- package/themes/original/src/components/WalletTransactions/index.tsx +3 -3
- package/themes/original/src/components/Wallets/index.tsx +66 -30
- package/themes/original/src/components/Wallets/styles.tsx +3 -4
- package/themes/original/src/components/shared/OButton.tsx +6 -2
- package/themes/original/src/components/shared/OInput.tsx +6 -1
- package/themes/original/src/components/shared/OModal.tsx +3 -3
- package/themes/original/src/types/index.tsx +42 -10
- package/themes/original/src/utils/index.tsx +273 -1
- package/themes/uber-eats/src/components/BusinessesListing/index.tsx +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React, { useState } from 'react'
|
|
1
|
+
import React, { useState, useCallback } from 'react'
|
|
2
2
|
|
|
3
|
-
import { Platform, StyleSheet, View } from 'react-native';
|
|
3
|
+
import { Platform, StyleSheet, View, TouchableOpacity, ScrollView } from 'react-native';
|
|
4
4
|
|
|
5
5
|
import { OButton, OText, OLink, OModal } from '../shared'
|
|
6
6
|
import {
|
|
@@ -16,18 +16,23 @@ import {
|
|
|
16
16
|
|
|
17
17
|
import { ProductItemAccordion } from '../ProductItemAccordion';
|
|
18
18
|
|
|
19
|
-
import { verifyDecimals } from '../../utils';
|
|
19
|
+
import { verifyDecimals, calculateDistance, transformDistance } from '../../utils';
|
|
20
20
|
|
|
21
21
|
import {
|
|
22
22
|
useLanguage,
|
|
23
23
|
useUtils,
|
|
24
24
|
useConfig,
|
|
25
|
+
useSession
|
|
25
26
|
} from 'ordering-components/native';
|
|
26
27
|
import { useTheme } from 'styled-components/native';
|
|
27
28
|
import { ReviewCustomer } from '../ReviewCustomer'
|
|
28
29
|
|
|
29
30
|
import MaterialIcon from 'react-native-vector-icons/MaterialCommunityIcons'
|
|
30
31
|
|
|
32
|
+
import { DeviceOrientationMethods } from '../../../../../src/hooks/DeviceOrientation'
|
|
33
|
+
|
|
34
|
+
const { useDeviceOrientation } = DeviceOrientationMethods
|
|
35
|
+
|
|
31
36
|
interface OrderContent {
|
|
32
37
|
order: any,
|
|
33
38
|
logisticOrderStatus?: Array<number>,
|
|
@@ -38,12 +43,26 @@ interface OrderContent {
|
|
|
38
43
|
export const OrderContentComponent = (props: OrderContent) => {
|
|
39
44
|
const [, t] = useLanguage();
|
|
40
45
|
const theme = useTheme()
|
|
41
|
-
|
|
46
|
+
const [{ user }] = useSession()
|
|
42
47
|
const { order, logisticOrderStatus, isOrderGroup, lastOrder } = props;
|
|
43
48
|
const [{ parsePrice, parseNumber }] = useUtils();
|
|
44
49
|
const [{ configs }] = useConfig();
|
|
50
|
+
const [orientationState] = useDeviceOrientation();
|
|
51
|
+
const distanceUnit = configs?.distance_unit?.value
|
|
52
|
+
|
|
53
|
+
const WIDTH_SCREEN = orientationState?.dimensions?.width
|
|
54
|
+
|
|
45
55
|
const [openReviewModal, setOpenReviewModal] = useState(false)
|
|
46
56
|
|
|
57
|
+
const [isReadMore, setIsReadMore] = useState({
|
|
58
|
+
customerAddress: false,
|
|
59
|
+
businessAddressNotes: false
|
|
60
|
+
})
|
|
61
|
+
const [lengthMore, setLengthMore] = useState({
|
|
62
|
+
customerAddress: false,
|
|
63
|
+
businessAddressNotes: false
|
|
64
|
+
})
|
|
65
|
+
|
|
47
66
|
const pastOrderStatuses = [1, 2, 5, 6, 10, 11, 12, 16, 17]
|
|
48
67
|
|
|
49
68
|
const walletName: any = {
|
|
@@ -91,10 +110,25 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
91
110
|
return order?.taxes?.filter((tax: any) => tax?.type === 1)?.reduce((carry: number, tax: any) => carry + (tax?.summary?.tax_after_discount ?? tax?.summary?.tax), 0)
|
|
92
111
|
}
|
|
93
112
|
|
|
113
|
+
const containsOnlyNumbers = (str: string) => {
|
|
114
|
+
return /^\d+$/.test(str);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
const onTextLayout = useCallback((e: any, item: string) => {
|
|
118
|
+
if (item === 'customerAddress') {
|
|
119
|
+
const customerAddressMore = (e.nativeEvent.lines.length == 2 && e.nativeEvent.lines[1].width > WIDTH_SCREEN * .76) || e.nativeEvent.lines.length > 2
|
|
120
|
+
setLengthMore(prev => ({ ...prev, customerAddress: customerAddressMore }))
|
|
121
|
+
}
|
|
122
|
+
if (item === 'businessAddressNotes') {
|
|
123
|
+
const businessAddressNotesMore = (e.nativeEvent.lines.length == 3 && e.nativeEvent.lines[2].width > WIDTH_SCREEN * .76) || e.nativeEvent.lines.length > 3
|
|
124
|
+
setLengthMore(prev => ({ ...prev, businessAddressNotes: businessAddressNotesMore }))
|
|
125
|
+
}
|
|
126
|
+
}, []);
|
|
127
|
+
|
|
94
128
|
return (
|
|
95
129
|
<OrderContent isOrderGroup={isOrderGroup} lastOrder={lastOrder}>
|
|
96
130
|
{isOrderGroup && (
|
|
97
|
-
<OText size={18}>{t('ORDER', 'Order')} #{
|
|
131
|
+
<OText size={18}>{t('ORDER', 'Order')} #{order?.id}</OText>
|
|
98
132
|
)}
|
|
99
133
|
|
|
100
134
|
{order?.metafields?.length > 0 && (
|
|
@@ -148,7 +182,7 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
148
182
|
<View style={styles.linkWithIcons}>
|
|
149
183
|
<OLink
|
|
150
184
|
PressStyle={styles.linkWithIcons}
|
|
151
|
-
url={`tel:${order?.business?.cellphone}`}
|
|
185
|
+
url={`tel:${containsOnlyNumbers(order?.business?.cellphone) ? order?.business?.cellphone : 'invalid'}`}
|
|
152
186
|
shorcut={`${order?.business?.cellphone}`}
|
|
153
187
|
TextStyle={styles.textLink}
|
|
154
188
|
/>
|
|
@@ -159,7 +193,7 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
159
193
|
<View style={styles.linkWithIcons}>
|
|
160
194
|
<OLink
|
|
161
195
|
PressStyle={styles.linkWithIcons}
|
|
162
|
-
url={`tel:${order?.business?.phone}`}
|
|
196
|
+
url={`tel:${containsOnlyNumbers(order?.business?.cellphone) ? order?.business?.phone : 'invalid'}`}
|
|
163
197
|
shorcut={order?.business?.phone}
|
|
164
198
|
TextStyle={styles.textLink}
|
|
165
199
|
/>
|
|
@@ -176,24 +210,40 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
176
210
|
ios: `maps:0,0?q=${order?.business?.address}`,
|
|
177
211
|
android: `geo:0,0?q=${order?.business?.address}`,
|
|
178
212
|
})}
|
|
213
|
+
numberOfLines={2}
|
|
179
214
|
shorcut={order?.business?.address}
|
|
180
215
|
TextStyle={styles.textLink}
|
|
181
216
|
/>
|
|
182
217
|
</View>
|
|
183
218
|
)}
|
|
184
|
-
|
|
219
|
+
{!!order?.business?.location && order?.customer?.location && (
|
|
220
|
+
<OText>
|
|
221
|
+
{t('DISTANCE_TO_THE_BUSINESS', 'Distance to the business')}: {transformDistance(calculateDistance(order?.business?.location, { latitude: order?.customer?.location?.lat, longitude: order?.customer?.location?.lng }), distanceUnit)} {t(distanceUnit.toUpperCase(), distanceUnit)}
|
|
222
|
+
</OText>
|
|
223
|
+
)}
|
|
185
224
|
{!!order?.business?.address_notes && (
|
|
186
|
-
|
|
187
|
-
<
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
225
|
+
<>
|
|
226
|
+
<View style={styles.linkWithIcons}>
|
|
227
|
+
<OLink
|
|
228
|
+
PressStyle={styles.linkWithIcons}
|
|
229
|
+
url={Platform.select({
|
|
230
|
+
ios: `maps:0,0?q=${order?.business?.address_notes}`,
|
|
231
|
+
android: `geo:0,0?q=${order?.business?.address_notes}`,
|
|
232
|
+
})}
|
|
233
|
+
shorcut={order?.business?.address_notes}
|
|
234
|
+
TextStyle={styles.textLink}
|
|
235
|
+
onTextLayout={e => onTextLayout(e, 'businessAddressNotes')}
|
|
236
|
+
numberOfLines={isReadMore.businessAddressNotes ? 20 : 3}
|
|
237
|
+
/>
|
|
238
|
+
</View>
|
|
239
|
+
{lengthMore.businessAddressNotes && (
|
|
240
|
+
<TouchableOpacity
|
|
241
|
+
onPress={() => setIsReadMore({ ...isReadMore, businessAddressNotes: !isReadMore.businessAddressNotes })}
|
|
242
|
+
>
|
|
243
|
+
<OText size={12} color={theme.colors.statusOrderBlue}>{isReadMore.businessAddressNotes ? t('SHOW_LESS', 'Show less') : t('READ_MORE', 'Read more')}</OText>
|
|
244
|
+
</TouchableOpacity>
|
|
245
|
+
)}
|
|
246
|
+
</>
|
|
197
247
|
)}
|
|
198
248
|
</OrderBusiness>
|
|
199
249
|
|
|
@@ -274,7 +324,7 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
274
324
|
<View style={styles.linkWithIcons}>
|
|
275
325
|
<OLink
|
|
276
326
|
PressStyle={styles.linkWithIcons}
|
|
277
|
-
url={`tel:${!!order?.customer?.country_phone_code ? '+' + order?.customer?.country_phone_code : ''} ${order?.customer?.cellphone}`}
|
|
327
|
+
url={`tel:${!!order?.customer?.country_phone_code ? '+' + order?.customer?.country_phone_code : ''} ${containsOnlyNumbers(order?.customer?.cellphone) ? order?.customer?.cellphone : 'invalid'}`}
|
|
278
328
|
shorcut={`${!!order?.customer?.country_phone_code ? '+' + order?.customer?.country_phone_code : ''} ${order?.customer?.cellphone}`}
|
|
279
329
|
TextStyle={styles.textLink}
|
|
280
330
|
/>
|
|
@@ -285,7 +335,7 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
285
335
|
<View style={styles.linkWithIcons}>
|
|
286
336
|
<OLink
|
|
287
337
|
PressStyle={styles.linkWithIcons}
|
|
288
|
-
url={`tel:${order?.customer?.phone}`}
|
|
338
|
+
url={`tel:${containsOnlyNumbers(order?.customer?.phone) ? order?.customer?.phone : 'invalid'}`}
|
|
289
339
|
shorcut={order?.customer?.phone}
|
|
290
340
|
TextStyle={styles.textLink}
|
|
291
341
|
/>
|
|
@@ -293,17 +343,28 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
293
343
|
)}
|
|
294
344
|
|
|
295
345
|
{!!order?.customer?.address && (
|
|
296
|
-
|
|
297
|
-
<
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
346
|
+
<>
|
|
347
|
+
<View style={styles.linkWithIcons}>
|
|
348
|
+
<OLink
|
|
349
|
+
PressStyle={{ ...styles.linkWithIcons, marginBottom: 0 }}
|
|
350
|
+
url={Platform.select({
|
|
351
|
+
ios: `maps:0,0?q=${order?.customer?.address}`,
|
|
352
|
+
android: `geo:0,0?q=${order?.customer?.address}`,
|
|
353
|
+
})}
|
|
354
|
+
onTextLayout={e => onTextLayout(e, 'customerAddress')}
|
|
355
|
+
numberOfLines={isReadMore.customerAddress ? 20 : 2}
|
|
356
|
+
shorcut={order?.customer?.address}
|
|
357
|
+
TextStyle={styles.textLink}
|
|
358
|
+
/>
|
|
359
|
+
</View>
|
|
360
|
+
{lengthMore.customerAddress && (
|
|
361
|
+
<TouchableOpacity
|
|
362
|
+
onPress={() => setIsReadMore({ ...isReadMore, customerAddress: !isReadMore.customerAddress })}
|
|
363
|
+
>
|
|
364
|
+
<OText size={12} color={theme.colors.statusOrderBlue}>{isReadMore.customerAddress ? t('SHOW_LESS', 'Show less') : t('READ_MORE', 'Read more')}</OText>
|
|
365
|
+
</TouchableOpacity>
|
|
366
|
+
)}
|
|
367
|
+
</>
|
|
307
368
|
)}
|
|
308
369
|
|
|
309
370
|
{!!order?.customer?.internal_number && (
|
|
@@ -313,9 +374,15 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
313
374
|
)}
|
|
314
375
|
|
|
315
376
|
{!!order?.customer?.address_notes && (
|
|
316
|
-
<
|
|
317
|
-
{
|
|
318
|
-
|
|
377
|
+
<ScrollView
|
|
378
|
+
showsVerticalScrollIndicator={false}
|
|
379
|
+
showsHorizontalScrollIndicator={false}
|
|
380
|
+
horizontal
|
|
381
|
+
>
|
|
382
|
+
<OText numberOfLines={1} mBottom={4} ellipsizeMode="tail">
|
|
383
|
+
{order?.customer?.address_notes}
|
|
384
|
+
</OText>
|
|
385
|
+
</ScrollView>
|
|
319
386
|
)}
|
|
320
387
|
|
|
321
388
|
{!!order?.customer?.zipcode && (
|
|
@@ -333,7 +400,7 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
333
400
|
<View style={{ marginTop: 10 }}>
|
|
334
401
|
{order?.delivery_option !== undefined && order?.delivery_type === 1 && (
|
|
335
402
|
<OText>
|
|
336
|
-
{order?.delivery_option?.name}
|
|
403
|
+
{t(order?.delivery_option?.name?.toUpperCase()?.replace(/ /g, '_'), order?.delivery_option?.name)}
|
|
337
404
|
</OText>
|
|
338
405
|
)}
|
|
339
406
|
{!!order?.comment && (
|
|
@@ -378,7 +445,7 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
378
445
|
<Table>
|
|
379
446
|
<OText mBottom={4}>{t('SUBTOTAL', 'Subtotal')}</OText>
|
|
380
447
|
<OText mBottom={4}>
|
|
381
|
-
{parsePrice(((order?.summary?.subtotal ?? order?.subtotal) + getIncludedTaxes()), { currency: order?.currency})}
|
|
448
|
+
{parsePrice(((order?.summary?.subtotal ?? order?.subtotal) + getIncludedTaxes()), { currency: order?.currency })}
|
|
382
449
|
</OText>
|
|
383
450
|
</Table>
|
|
384
451
|
{(order?.summary?.discount > 0 ?? order?.discount > 0) && order?.offers?.length === 0 && (
|
|
@@ -391,7 +458,7 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
391
458
|
) : (
|
|
392
459
|
<OText mBottom={4}>{t('DISCOUNT', theme?.defaultLanguages?.DISCOUNT || 'Discount')}</OText>
|
|
393
460
|
)}
|
|
394
|
-
<OText>- {parsePrice(order?.summary?.discount ?? order?.discount, { currency: order?.currency})}</OText>
|
|
461
|
+
<OText>- {parsePrice(order?.summary?.discount ?? order?.discount, { currency: order?.currency })}</OText>
|
|
395
462
|
</Table>
|
|
396
463
|
)}
|
|
397
464
|
{
|
|
@@ -399,13 +466,13 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
399
466
|
<Table key={offer.id}>
|
|
400
467
|
<OSRow>
|
|
401
468
|
<OText mBottom={4}>
|
|
402
|
-
{offer.name}
|
|
469
|
+
{t(offer.name?.toUpperCase()?.replace(/ /g, '_'), offer.name)}
|
|
403
470
|
{offer.rate_type === 1 && (
|
|
404
471
|
<OText>{`(${verifyDecimals(offer?.rate, parsePrice)}%)`}</OText>
|
|
405
472
|
)}
|
|
406
473
|
</OText>
|
|
407
474
|
</OSRow>
|
|
408
|
-
<OText mBottom={4}>- {parsePrice(offer?.summary?.discount, { currency: order?.currency})}</OText>
|
|
475
|
+
<OText mBottom={4}>- {parsePrice(offer?.summary?.discount, { currency: order?.currency })}</OText>
|
|
409
476
|
</Table>
|
|
410
477
|
))
|
|
411
478
|
}
|
|
@@ -413,9 +480,9 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
413
480
|
<Table>
|
|
414
481
|
<OText mBottom={4}>{t('SUBTOTAL_WITH_DISCOUNT', 'Subtotal with discount')}</OText>
|
|
415
482
|
{order?.tax_type === 1 ? (
|
|
416
|
-
<OText mBottom={4}>{parsePrice((order?.summary?.subtotal_with_discount + getIncludedTaxesDiscounts() ?? 0), { currency: order?.currency})}</OText>
|
|
483
|
+
<OText mBottom={4}>{parsePrice((order?.summary?.subtotal_with_discount + getIncludedTaxesDiscounts() ?? 0), { currency: order?.currency })}</OText>
|
|
417
484
|
) : (
|
|
418
|
-
<OText mBottom={4}>{parsePrice(order?.summary?.subtotal_with_discount ?? 0, { currency: order?.currency})}</OText>
|
|
485
|
+
<OText mBottom={4}>{parsePrice(order?.summary?.subtotal_with_discount ?? 0, { currency: order?.currency })}</OText>
|
|
419
486
|
)}
|
|
420
487
|
</Table>
|
|
421
488
|
)}
|
|
@@ -425,7 +492,7 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
425
492
|
{t('TAX', 'Tax')} {`(${verifyDecimals(order?.tax, parseNumber)}%)`}
|
|
426
493
|
</OText>
|
|
427
494
|
<OText mBottom={4}>
|
|
428
|
-
{parsePrice(order?.summary?.tax ?? 0, { currency: order?.currency})}
|
|
495
|
+
{parsePrice(order?.summary?.tax ?? 0, { currency: order?.currency })}
|
|
429
496
|
</OText>
|
|
430
497
|
</Table>
|
|
431
498
|
)}
|
|
@@ -436,7 +503,7 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
436
503
|
{t('SERVICE_FEE', 'Service fee')}
|
|
437
504
|
{`(${verifyDecimals(order?.service_fee, parseNumber)}%)`}
|
|
438
505
|
</OText>
|
|
439
|
-
<OText mBottom={4}>{parsePrice(order?.summary?.service_fee ?? 0, { currency: order?.currency})}</OText>
|
|
506
|
+
<OText mBottom={4}>{parsePrice(order?.summary?.service_fee ?? 0, { currency: order?.currency })}</OText>
|
|
440
507
|
</Table>
|
|
441
508
|
)
|
|
442
509
|
}
|
|
@@ -445,11 +512,11 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
445
512
|
<Table key={tax.id}>
|
|
446
513
|
<OSRow>
|
|
447
514
|
<OText mBottom={4}>
|
|
448
|
-
{tax
|
|
515
|
+
{t(tax?.name?.toUpperCase()?.replace(/ /g, '_'), tax?.name) || t('INHERIT_FROM_BUSINESS', 'Inherit from business')}
|
|
449
516
|
{`(${verifyDecimals(tax?.rate, parseNumber)}%)`}{' '}
|
|
450
517
|
</OText>
|
|
451
518
|
</OSRow>
|
|
452
|
-
<OText mBottom={4}>{parsePrice(tax?.summary?.tax_after_discount ?? tax?.summary?.tax ?? 0, { currency: order?.currency})}</OText>
|
|
519
|
+
<OText mBottom={4}>{parsePrice(tax?.summary?.tax_after_discount ?? tax?.summary?.tax ?? 0, { currency: order?.currency })}</OText>
|
|
453
520
|
</Table>
|
|
454
521
|
))
|
|
455
522
|
}
|
|
@@ -458,11 +525,11 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
458
525
|
<Table key={fee.id}>
|
|
459
526
|
<OSRow>
|
|
460
527
|
<OText mBottom={4}>
|
|
461
|
-
{fee
|
|
462
|
-
({fee?.fixed > 0 && `${parsePrice(fee?.fixed, { currency: order?.currency})} + `}{fee.percentage}%){' '}
|
|
528
|
+
{t(fee?.name?.toUpperCase()?.replace(/ /g, '_'), fee?.name) || t('INHERIT_FROM_BUSINESS', 'Inherit from business')}
|
|
529
|
+
({fee?.fixed > 0 && `${parsePrice(fee?.fixed, { currency: order?.currency })} + `}{fee.percentage}%){' '}
|
|
463
530
|
</OText>
|
|
464
531
|
</OSRow>
|
|
465
|
-
<OText mBottom={4}>{parsePrice(fee?.summary?.fixed + (fee?.summary?.percentage_after_discount ?? fee?.summary?.percentage) ?? 0, { currency: order?.currency})}</OText>
|
|
532
|
+
<OText mBottom={4}>{parsePrice(fee?.summary?.fixed + (fee?.summary?.percentage_after_discount ?? fee?.summary?.percentage) ?? 0, { currency: order?.currency })}</OText>
|
|
466
533
|
</Table>
|
|
467
534
|
))
|
|
468
535
|
}
|
|
@@ -471,25 +538,25 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
471
538
|
<Table key={offer.id}>
|
|
472
539
|
<OSRow>
|
|
473
540
|
<OText mBottom={4}>
|
|
474
|
-
{offer.name}
|
|
541
|
+
{t(offer.name?.toUpperCase()?.replace(/ /g, '_'), offer.name)}
|
|
475
542
|
{offer.rate_type === 1 && (
|
|
476
543
|
<OText>{`(${verifyDecimals(offer?.rate, parsePrice)}%)`}</OText>
|
|
477
544
|
)}
|
|
478
545
|
</OText>
|
|
479
546
|
</OSRow>
|
|
480
|
-
<OText mBottom={4}>- {parsePrice(offer?.summary?.discount, { currency: order?.currency})}</OText>
|
|
547
|
+
<OText mBottom={4}>- {parsePrice(offer?.summary?.discount, { currency: order?.currency })}</OText>
|
|
481
548
|
</Table>
|
|
482
549
|
))
|
|
483
550
|
}
|
|
484
551
|
{
|
|
485
|
-
order?.summary?.delivery_price
|
|
552
|
+
typeof order?.summary?.delivery_price === 'number' && (
|
|
486
553
|
<Table>
|
|
487
554
|
<OText mBottom={4}>
|
|
488
555
|
{t('DELIVERY_FEE', 'Delivery Fee')}
|
|
489
556
|
</OText>
|
|
490
557
|
|
|
491
558
|
<OText mBottom={4}>
|
|
492
|
-
{parsePrice(order?.summary?.delivery_price, { currency: order?.currency})}
|
|
559
|
+
{parsePrice(order?.summary?.delivery_price, { currency: order?.currency })}
|
|
493
560
|
</OText>
|
|
494
561
|
</Table>
|
|
495
562
|
)
|
|
@@ -499,28 +566,27 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
499
566
|
<Table key={offer.id}>
|
|
500
567
|
<OSRow>
|
|
501
568
|
<OText mBottom={4}>
|
|
502
|
-
{offer.name}
|
|
569
|
+
{t(offer.name?.toUpperCase()?.replace(/ /g, '_'), offer.name)}
|
|
503
570
|
{offer.rate_type === 1 && (
|
|
504
571
|
<OText>{`(${verifyDecimals(offer?.rate, parsePrice)}%)`}</OText>
|
|
505
572
|
)}
|
|
506
573
|
</OText>
|
|
507
574
|
</OSRow>
|
|
508
|
-
<OText mBottom={4}>- {parsePrice(offer?.summary?.discount, { currency: order?.currency})}</OText>
|
|
575
|
+
<OText mBottom={4}>- {parsePrice(offer?.summary?.discount, { currency: order?.currency })}</OText>
|
|
509
576
|
</Table>
|
|
510
577
|
))
|
|
511
578
|
}
|
|
512
|
-
{order?.summary?.driver_tip > 0 && (
|
|
579
|
+
{(order?.summary?.driver_tip > 0 || order?.driver_tip > 0) && (
|
|
513
580
|
<Table>
|
|
514
581
|
<OText mBottom={4}>
|
|
515
582
|
{t('DRIVER_TIP', 'Driver tip')}
|
|
516
|
-
{order?.
|
|
517
|
-
parseInt(configs?.driver_tip_type?.value, 10) === 2 &&
|
|
583
|
+
{order?.driver_tip > 0 && parseInt(configs?.driver_tip_type?.value, 10) === 2 &&
|
|
518
584
|
!parseInt(configs?.driver_tip_use_custom?.value, 10) &&
|
|
519
585
|
(
|
|
520
|
-
`(${verifyDecimals(order?.
|
|
586
|
+
`(${verifyDecimals(order?.driver_tip, parseNumber)}%)`
|
|
521
587
|
)}
|
|
522
588
|
</OText>
|
|
523
|
-
<OText mBottom={4}>{parsePrice(order?.summary?.driver_tip ?? order?.totalDriverTip, { currency: order?.currency})}</OText>
|
|
589
|
+
<OText mBottom={4}>{parsePrice(order?.summary?.driver_tip ?? order?.totalDriverTip, { currency: order?.currency })}</OText>
|
|
524
590
|
</Table>
|
|
525
591
|
)}
|
|
526
592
|
|
|
@@ -534,7 +600,7 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
534
600
|
mBottom={4}
|
|
535
601
|
style={styles.textBold}
|
|
536
602
|
color={theme.colors.primary}>
|
|
537
|
-
{parsePrice(order?.summary?.total ?? order?.total, { currency: order?.currency})}
|
|
603
|
+
{parsePrice(order?.summary?.total ?? order?.total, { currency: order?.currency })}
|
|
538
604
|
</OText>
|
|
539
605
|
</Table>
|
|
540
606
|
</Total>
|
|
@@ -568,16 +634,18 @@ export const OrderContentComponent = (props: OrderContent) => {
|
|
|
568
634
|
<OText>
|
|
569
635
|
{event?.wallet_event
|
|
570
636
|
? walletName[event?.wallet_event?.wallet?.type]?.name
|
|
571
|
-
: event?.paymethod?.name}
|
|
637
|
+
: t(event?.paymethod?.name?.toUpperCase()?.replace(/ /g, '_'), event?.paymethod?.name)}
|
|
572
638
|
</OText>
|
|
573
|
-
{event?.data?.charge_id && (
|
|
639
|
+
{/* {event?.data?.charge_id && (
|
|
574
640
|
<OText>
|
|
575
641
|
{`${t('CODE', 'Code')}: ${event?.data?.charge_id}`}
|
|
576
642
|
</OText>
|
|
577
|
-
)}
|
|
643
|
+
)} */}
|
|
578
644
|
</View>
|
|
579
645
|
<OText>
|
|
580
|
-
|
|
646
|
+
{(event?.paymethod?.gateway === 'cash' && order?.cash)
|
|
647
|
+
? parsePrice(order?.cash, { currency: order?.currency })
|
|
648
|
+
: `-${parsePrice(event?.amount, { currency: order?.currency })}`}
|
|
581
649
|
</OText>
|
|
582
650
|
</View>
|
|
583
651
|
))}
|
|
@@ -9,12 +9,15 @@ import {
|
|
|
9
9
|
|
|
10
10
|
//Components
|
|
11
11
|
import {
|
|
12
|
+
OIcon,
|
|
12
13
|
OIconButton,
|
|
13
14
|
OText,
|
|
14
15
|
} from '../shared'
|
|
15
16
|
|
|
16
17
|
import { useTheme } from 'styled-components/native';
|
|
17
|
-
import { StyleSheet, View } from 'react-native';
|
|
18
|
+
import { StyleSheet, TouchableOpacity, View } from 'react-native';
|
|
19
|
+
import SimpleLineIcons from 'react-native-vector-icons/SimpleLineIcons'
|
|
20
|
+
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'
|
|
18
21
|
|
|
19
22
|
import {
|
|
20
23
|
useLanguage,
|
|
@@ -54,6 +57,19 @@ export const OrderHeaderComponent = (props: OrderHeader) => {
|
|
|
54
57
|
height: 40,
|
|
55
58
|
padding: 10,
|
|
56
59
|
alignItems: 'flex-end',
|
|
60
|
+
color: theme.colors.textGray,
|
|
61
|
+
},
|
|
62
|
+
btnBackArrow: {
|
|
63
|
+
borderWidth: 0,
|
|
64
|
+
width: 32,
|
|
65
|
+
height: 32,
|
|
66
|
+
tintColor: theme.colors.textGray,
|
|
67
|
+
backgroundColor: theme.colors.clear,
|
|
68
|
+
borderColor: theme.colors.clear,
|
|
69
|
+
shadowColor: theme.colors.clear,
|
|
70
|
+
paddingLeft: 0,
|
|
71
|
+
paddingRight: 0,
|
|
72
|
+
marginTop: 10
|
|
57
73
|
},
|
|
58
74
|
})
|
|
59
75
|
|
|
@@ -108,42 +124,32 @@ export const OrderHeaderComponent = (props: OrderHeader) => {
|
|
|
108
124
|
<>
|
|
109
125
|
{!props.isCustomView && (
|
|
110
126
|
<Header>
|
|
111
|
-
<
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
borderColor={theme.colors.clear}
|
|
115
|
-
style={{ ...styles.icons, justifyContent: 'flex-end' }}
|
|
116
|
-
onClick={() => handleArrowBack()}
|
|
117
|
-
/>
|
|
118
|
-
|
|
127
|
+
<TouchableOpacity onPress={() => handleArrowBack()} style={styles.btnBackArrow}>
|
|
128
|
+
<OIcon src={theme.images.general.arrow_left} color={theme.colors.textGray} />
|
|
129
|
+
</TouchableOpacity>
|
|
119
130
|
{(!order?.isLogistic || (!logisticOrderStatus?.includes(order?.status) && !order?.order_group)) && (
|
|
120
131
|
<Actions>
|
|
121
132
|
{getOrderStatus(order?.status, t)?.value !==
|
|
122
133
|
t('PENDING', 'Pending') && (
|
|
123
134
|
<>
|
|
124
|
-
<
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
}}
|
|
143
|
-
borderColor={theme.colors.clear}
|
|
144
|
-
style={styles.icons}
|
|
145
|
-
onClick={() => handleViewSummaryOrder?.()}
|
|
146
|
-
/>
|
|
135
|
+
<TouchableOpacity onPress={() => handleCopyClipboard?.()}>
|
|
136
|
+
<MaterialCommunityIcons
|
|
137
|
+
name='content-copy'
|
|
138
|
+
color={theme.colors.textGray}
|
|
139
|
+
size={20}
|
|
140
|
+
style={styles.icons}
|
|
141
|
+
/>
|
|
142
|
+
</TouchableOpacity>
|
|
143
|
+
{!!handleViewSummaryOrder && (
|
|
144
|
+
<TouchableOpacity onPress={() => handleViewSummaryOrder?.()}>
|
|
145
|
+
<SimpleLineIcons
|
|
146
|
+
name='printer'
|
|
147
|
+
color={theme.colors.textGray}
|
|
148
|
+
size={20}
|
|
149
|
+
style={styles.icons}
|
|
150
|
+
/>
|
|
151
|
+
</TouchableOpacity>
|
|
152
|
+
)}
|
|
147
153
|
</>
|
|
148
154
|
)}
|
|
149
155
|
<OIconButton
|
|
@@ -151,7 +157,7 @@ export const OrderHeaderComponent = (props: OrderHeader) => {
|
|
|
151
157
|
iconStyle={{
|
|
152
158
|
width: 20,
|
|
153
159
|
height: 20,
|
|
154
|
-
tintColor: theme.colors.
|
|
160
|
+
tintColor: theme.colors.textGray,
|
|
155
161
|
}}
|
|
156
162
|
borderColor={theme.colors.clear}
|
|
157
163
|
style={styles.icons}
|
|
@@ -163,7 +169,7 @@ export const OrderHeaderComponent = (props: OrderHeader) => {
|
|
|
163
169
|
iconStyle={{
|
|
164
170
|
width: 20,
|
|
165
171
|
height: 20,
|
|
166
|
-
tintColor: theme.colors.
|
|
172
|
+
tintColor: theme.colors.textGray,
|
|
167
173
|
}}
|
|
168
174
|
borderColor={theme.colors.clear}
|
|
169
175
|
style={styles.icons}
|
|
@@ -193,29 +199,24 @@ export const OrderHeaderComponent = (props: OrderHeader) => {
|
|
|
193
199
|
{getOrderStatus(order?.status, t)?.value !==
|
|
194
200
|
t('PENDING', 'Pending') && (
|
|
195
201
|
<>
|
|
196
|
-
<
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
}}
|
|
215
|
-
borderColor={theme.colors.clear}
|
|
216
|
-
style={styles.icons}
|
|
217
|
-
onClick={() => handleViewSummaryOrder?.()}
|
|
218
|
-
/>
|
|
202
|
+
<TouchableOpacity onPress={() => handleCopyClipboard?.()}>
|
|
203
|
+
<MaterialCommunityIcons
|
|
204
|
+
name='content-copy'
|
|
205
|
+
color={theme.colors.textGray}
|
|
206
|
+
size={20}
|
|
207
|
+
style={styles.icons}
|
|
208
|
+
/>
|
|
209
|
+
</TouchableOpacity>
|
|
210
|
+
{!!handleViewSummaryOrder && (
|
|
211
|
+
<TouchableOpacity onPress={() => handleViewSummaryOrder?.()}>
|
|
212
|
+
<SimpleLineIcons
|
|
213
|
+
name='printer'
|
|
214
|
+
color={theme.colors.textGray}
|
|
215
|
+
size={20}
|
|
216
|
+
style={styles.icons}
|
|
217
|
+
/>
|
|
218
|
+
</TouchableOpacity>
|
|
219
|
+
)}
|
|
219
220
|
</>
|
|
220
221
|
)}
|
|
221
222
|
<OIconButton
|
|
@@ -223,7 +224,7 @@ export const OrderHeaderComponent = (props: OrderHeader) => {
|
|
|
223
224
|
iconStyle={{
|
|
224
225
|
width: 20,
|
|
225
226
|
height: 20,
|
|
226
|
-
tintColor: theme.colors.
|
|
227
|
+
tintColor: theme.colors.textGray,
|
|
227
228
|
}}
|
|
228
229
|
borderColor={theme.colors.clear}
|
|
229
230
|
style={styles.icons}
|
|
@@ -235,7 +236,7 @@ export const OrderHeaderComponent = (props: OrderHeader) => {
|
|
|
235
236
|
iconStyle={{
|
|
236
237
|
width: 20,
|
|
237
238
|
height: 20,
|
|
238
|
-
tintColor: theme.colors.
|
|
239
|
+
tintColor: theme.colors.textGray,
|
|
239
240
|
}}
|
|
240
241
|
borderColor={theme.colors.clear}
|
|
241
242
|
style={styles.icons}
|
|
@@ -262,7 +263,7 @@ export const OrderHeaderComponent = (props: OrderHeader) => {
|
|
|
262
263
|
)}
|
|
263
264
|
</>
|
|
264
265
|
</OText>
|
|
265
|
-
{!order?.isLogistic && order?.delivery_type && (!order?.order_group_id || !logisticOrderStatus?.includes(order?.status)) && (
|
|
266
|
+
{!order?.isLogistic && !!order?.delivery_type && (!order?.order_group_id || !logisticOrderStatus?.includes(order?.status)) && (
|
|
266
267
|
<>
|
|
267
268
|
<OText size={13}>
|
|
268
269
|
<OText size={13} weight='bold'>{`${t('ORDER_TYPE', 'Order Type')}: `}</OText>
|
|
@@ -271,7 +272,7 @@ export const OrderHeaderComponent = (props: OrderHeader) => {
|
|
|
271
272
|
{order?.delivery_option && (
|
|
272
273
|
<OText size={13}>
|
|
273
274
|
<OText size={13} weight='bold'>{`${t('DELIVERY_PREFERENCE', 'Delivery Preference')}: `}</OText>
|
|
274
|
-
{order?.delivery_option?.name}
|
|
275
|
+
{t(order?.delivery_option?.name?.toUpperCase()?.replace(/ /g, '_'), order?.delivery_option?.name)}
|
|
275
276
|
</OText>
|
|
276
277
|
)}
|
|
277
278
|
{order?.payment_events?.length > 0 && (
|
|
@@ -286,8 +287,8 @@ export const OrderHeaderComponent = (props: OrderHeader) => {
|
|
|
286
287
|
? `${walletName[event?.wallet_event?.wallet?.type]?.name} - `
|
|
287
288
|
: walletName[event?.wallet_event?.wallet?.type]?.name
|
|
288
289
|
: idx < order?.payment_events?.length - 1
|
|
289
|
-
? `${event?.paymethod?.name} - `
|
|
290
|
-
: event?.paymethod?.name
|
|
290
|
+
? `${t(event?.paymethod?.name?.toUpperCase()?.replace(/ /g, '_'), event?.paymethod?.name)} - `
|
|
291
|
+
: t(event?.paymethod?.name?.toUpperCase()?.replace(/ /g, '_'), event?.paymethod?.name)
|
|
291
292
|
})}
|
|
292
293
|
</OText>
|
|
293
294
|
</View>
|