ordering-ui-react-native 0.16.22 → 0.16.23-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 +7 -4
- package/src/DeliveryApp.tsx +43 -1
- package/src/components/ActiveOrders/index.tsx +61 -63
- package/src/components/ActiveOrders/styles.tsx +8 -14
- package/src/components/AddressForm/index.tsx +18 -2
- package/src/components/BusinessBasicInformation/index.tsx +11 -19
- package/src/components/BusinessController/index.tsx +10 -8
- package/src/components/BusinessInformation/index.tsx +33 -4
- package/src/components/BusinessInformation/styles.tsx +2 -2
- package/src/components/BusinessProductsList/index.tsx +10 -10
- package/src/components/BusinessesListing/index.tsx +1 -1
- package/src/components/Checkout/index.tsx +2 -1
- package/src/components/LanguageSelector/index.tsx +21 -16
- package/src/components/LoginForm/index.tsx +118 -30
- package/src/components/LoginForm/styles.tsx +6 -0
- package/src/components/Messages/index.tsx +2 -2
- package/src/components/NotificationSetting/index.tsx +85 -0
- package/src/components/OrderDetails/index.tsx +2 -20
- package/src/components/OrdersOption/index.tsx +54 -56
- package/src/components/PaymentOptions/index.tsx +335 -365
- package/src/components/PaymentOptionsWebView/index.tsx +120 -121
- package/src/components/ReviewDriver/index.tsx +1 -1
- package/src/components/ReviewOrder/index.tsx +2 -1
- package/src/components/ReviewProducts/index.tsx +11 -0
- package/src/components/SignupForm/index.tsx +143 -61
- package/src/components/SingleProductReview/index.tsx +8 -5
- package/src/components/StripeElementsForm/index.tsx +25 -16
- package/src/components/VerifyPhone/styles.tsx +1 -2
- package/src/components/shared/OBottomPopup.tsx +6 -2
- package/src/index.tsx +2 -0
- package/src/pages/BusinessesListing.tsx +7 -6
- package/src/pages/OrderDetails.tsx +1 -1
- package/src/pages/ReviewDriver.tsx +2 -2
- package/src/pages/ReviewOrder.tsx +2 -2
- package/src/theme.json +0 -1
- package/src/types/@fatnlazycat/react-native-recaptcha-v3/index.d.ts +1 -0
- package/src/types/index.tsx +13 -9
- package/src/utils/index.tsx +0 -1
- package/themes/business/index.tsx +4 -0
- package/themes/business/src/components/BusinessController/index.tsx +2 -2
- package/themes/business/src/components/Chat/index.tsx +42 -34
- package/themes/business/src/components/DriverMap/index.tsx +7 -5
- package/themes/business/src/components/DriverSchedule/index.tsx +71 -0
- package/themes/business/src/components/DriverSchedule/styles.tsx +6 -0
- package/themes/business/src/components/LoginForm/index.tsx +111 -74
- package/themes/business/src/components/MapView/index.tsx +12 -1
- package/themes/business/src/components/MessagesOption/index.tsx +11 -1
- package/themes/business/src/components/OrderDetails/Business.tsx +1 -1
- package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +25 -19
- package/themes/business/src/components/OrdersListManager/index.tsx +10 -3
- package/themes/business/src/components/OrdersOption/index.tsx +65 -21
- package/themes/business/src/components/OrdersOption/styles.tsx +5 -1
- package/themes/business/src/components/OrdersOptionBusiness/index.tsx +15 -1
- package/themes/business/src/components/OrdersOptionCity/index.tsx +15 -1
- package/themes/business/src/components/OrdersOptionDate/index.tsx +19 -6
- package/themes/business/src/components/OrdersOptionDelivery/index.tsx +15 -1
- package/themes/business/src/components/OrdersOptionDriver/index.tsx +15 -1
- package/themes/business/src/components/OrdersOptionPaymethod/index.tsx +15 -1
- package/themes/business/src/components/OrdersOptionStatus/index.tsx +10 -1
- package/themes/business/src/components/PreviousMessages/index.tsx +17 -18
- package/themes/business/src/components/PreviousOrders/index.tsx +21 -23
- package/themes/business/src/components/ProductItemAccordion/index.tsx +5 -4
- package/themes/business/src/components/ReviewCustomer/index.tsx +1 -1
- package/themes/business/src/components/ScheduleBlocked/index.tsx +53 -0
- package/themes/business/src/components/UserFormDetails/index.tsx +5 -2
- package/themes/business/src/components/UserProfileForm/index.tsx +28 -4
- package/themes/business/src/components/shared/ODropDown.tsx +42 -8
- package/themes/business/src/components/shared/ODropDownCalendar.tsx +36 -7
- package/themes/business/src/components/shared/OModal.tsx +40 -37
- package/themes/business/src/types/index.tsx +15 -9
- package/themes/business/src/utils/index.tsx +10 -0
- package/themes/doordash/src/components/BusinessesListing/index.tsx +1 -1
- package/themes/doordash/src/components/LoginForm/index.tsx +1 -2
- package/themes/instacart/src/components/BusinessesListing/index.tsx +1 -1
- package/themes/kiosk/src/components/Checkout/index.tsx +6 -0
- package/themes/kiosk/src/components/LoginForm/index.tsx +121 -10
- package/themes/kiosk/src/components/LoginForm/styles.tsx +5 -0
- package/themes/kiosk/src/components/NavBar/index.tsx +14 -14
- package/themes/kiosk/src/components/OptionCard/index.tsx +1 -1
- package/themes/kiosk/src/components/OrderTypeCardSelector/index.tsx +8 -10
- package/themes/kiosk/src/components/shared/OButton.tsx +5 -18
- package/themes/kiosk/src/types/index.d.ts +2 -0
- package/themes/original/index.tsx +12 -0
- package/themes/original/src/components/AddressForm/index.tsx +136 -133
- package/themes/original/src/components/AddressList/index.tsx +1 -1
- package/themes/original/src/components/AppleLogin/index.tsx +4 -4
- package/themes/original/src/components/BusinessBasicInformation/index.tsx +304 -160
- package/themes/original/src/components/BusinessBasicInformation/styles.tsx +6 -2
- package/themes/original/src/components/BusinessController/index.tsx +175 -110
- package/themes/original/src/components/BusinessItemAccordion/index.tsx +8 -6
- package/themes/original/src/components/BusinessListingSearch/BusinessControllerSkeletons/index.tsx +57 -0
- package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/index.tsx +59 -0
- package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/styles.tsx +13 -0
- package/themes/original/src/components/BusinessListingSearch/index.tsx +101 -125
- package/themes/original/src/components/BusinessListingSearch/styles.tsx +18 -13
- package/themes/original/src/components/BusinessProductsList/SubcategoriesComponent/index.tsx +87 -0
- package/themes/original/src/components/BusinessProductsList/SubcategoriesComponent/styles.tsx +12 -0
- package/themes/original/src/components/BusinessProductsList/index.tsx +49 -52
- package/themes/original/src/components/BusinessProductsList/styles.tsx +0 -3
- package/themes/original/src/components/BusinessProductsListing/index.tsx +287 -175
- package/themes/original/src/components/BusinessProductsListing/styles.tsx +22 -8
- package/themes/original/src/components/BusinessReviews/index.tsx +6 -1
- package/themes/original/src/components/BusinessTypeFilter/index.tsx +109 -40
- package/themes/original/src/components/BusinessTypeFilter/styles.tsx +2 -0
- package/themes/original/src/components/BusinessesListing/Layout/Appointment/index.tsx +561 -0
- package/themes/original/src/components/BusinessesListing/{styles.tsx → Layout/Appointment/styles.tsx} +24 -10
- package/themes/original/src/components/BusinessesListing/Layout/Original/index.tsx +676 -0
- package/themes/original/src/components/BusinessesListing/Layout/Original/styles.tsx +137 -0
- package/themes/original/src/components/BusinessesListing/index.tsx +105 -519
- package/themes/original/src/components/Cart/index.tsx +42 -10
- package/themes/original/src/components/Cart/styles.tsx +4 -0
- package/themes/original/src/components/CartContent/index.tsx +22 -16
- package/themes/original/src/components/Checkout/index.tsx +106 -66
- package/themes/original/src/components/Checkout/styles.tsx +0 -1
- package/themes/original/src/components/DriverTips/index.tsx +4 -4
- package/themes/original/src/components/DriverTips/styles.tsx +2 -1
- package/themes/original/src/components/Favorite/index.tsx +1 -0
- package/themes/original/src/components/FavoriteList/index.tsx +32 -2
- package/themes/original/src/components/FloatingButton/styles.tsx +1 -1
- package/themes/original/src/components/GPSButton/index.tsx +20 -19
- package/themes/original/src/components/GoogleMap/index.tsx +20 -12
- package/themes/original/src/components/HelpAccountAndPayment/index.tsx +8 -3
- package/themes/original/src/components/HelpGuide/index.tsx +8 -3
- package/themes/original/src/components/HelpOrder/index.tsx +8 -3
- package/themes/original/src/components/LanguageSelector/index.tsx +19 -14
- package/themes/original/src/components/LoginForm/Otp/index.tsx +3 -2
- package/themes/original/src/components/LoginForm/index.tsx +82 -44
- package/themes/original/src/components/Messages/index.tsx +17 -17
- package/themes/original/src/components/MomentSelector/index.tsx +197 -0
- package/themes/original/src/components/MomentSelector/styles.tsx +6 -0
- package/themes/original/src/components/MultiCheckout/index.tsx +6 -0
- package/themes/original/src/components/MultiOrdersDetails/index.tsx +20 -16
- package/themes/original/src/components/MyOrders/index.tsx +68 -6
- package/themes/original/src/components/NavBar/index.tsx +15 -9
- package/themes/original/src/components/NetworkError/index.tsx +5 -3
- package/themes/original/src/components/NotFoundSource/index.tsx +2 -1
- package/themes/original/src/components/Notifications/index.tsx +148 -0
- package/themes/original/src/components/Notifications/styles.tsx +17 -0
- package/themes/original/src/components/OrderDetails/OrderHistory.tsx +167 -0
- package/themes/original/src/components/OrderDetails/index.tsx +190 -35
- package/themes/original/src/components/OrderDetails/styles.tsx +15 -2
- package/themes/original/src/components/OrderItAgain/index.tsx +75 -0
- package/themes/original/src/components/OrderItAgain/styles.tsx +10 -0
- package/themes/original/src/components/OrderProgress/index.tsx +8 -2
- package/themes/original/src/components/OrderSummary/index.tsx +1 -34
- package/themes/original/src/components/OrderTypeSelector/index.tsx +85 -36
- package/themes/original/src/components/OrderTypeSelector/styles.tsx +19 -1
- package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/index.tsx +100 -106
- package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/index.tsx +17 -12
- package/themes/original/src/components/OrdersOption/index.tsx +71 -55
- package/themes/original/src/components/PaymentOptionWallet/index.tsx +56 -56
- package/themes/original/src/components/PaymentOptions/index.tsx +57 -37
- package/themes/original/src/components/PhoneInputNumber/index.tsx +4 -10
- package/themes/original/src/components/PlaceSpot/index.tsx +243 -47
- package/themes/original/src/components/PlaceSpot/styles.tsx +0 -2
- package/themes/original/src/components/PreviousOrders/index.tsx +3 -2
- package/themes/original/src/components/ProductForm/index.tsx +712 -655
- package/themes/original/src/components/ProductForm/styles.tsx +9 -7
- package/themes/original/src/components/ProductItemAccordion/index.tsx +198 -127
- package/themes/original/src/components/ProductOption/index.tsx +1 -1
- package/themes/original/src/components/ProfessionalFilter/index.tsx +129 -0
- package/themes/original/src/components/ProfessionalFilter/styles.tsx +0 -0
- package/themes/original/src/components/ProfessionalProfile/index.tsx +309 -0
- package/themes/original/src/components/ProfessionalProfile/styles.tsx +46 -0
- package/themes/original/src/components/ReviewDriver/index.tsx +6 -6
- package/themes/original/src/components/ReviewOrder/index.tsx +18 -3
- package/themes/original/src/components/ReviewProducts/index.tsx +1 -1
- package/themes/original/src/components/ReviewTrigger/index.tsx +118 -0
- package/themes/original/src/components/ReviewTrigger/styles.tsx +34 -0
- package/themes/original/src/components/SearchBar/index.tsx +5 -3
- package/themes/original/src/components/ServiceForm/index.tsx +631 -0
- package/themes/original/src/components/ServiceForm/styles.tsx +50 -0
- package/themes/original/src/components/SignupForm/index.tsx +350 -206
- package/themes/original/src/components/SingleOrderCard/index.tsx +214 -179
- package/themes/original/src/components/SingleProductCard/index.tsx +198 -104
- package/themes/original/src/components/SingleProductCard/styles.tsx +2 -2
- package/themes/original/src/components/SingleProductReview/index.tsx +38 -5
- package/themes/original/src/components/SingleProductReview/styles.tsx +12 -0
- package/themes/original/src/components/StripeElementsForm/index.tsx +15 -7
- package/themes/original/src/components/UpsellingProducts/index.tsx +14 -4
- package/themes/original/src/components/UserDetails/index.tsx +31 -17
- package/themes/original/src/components/UserFormDetails/index.tsx +74 -81
- package/themes/original/src/components/UserProfile/index.tsx +57 -29
- package/themes/original/src/components/UserProfile/styles.ts +17 -0
- package/themes/original/src/components/UserProfileForm/index.tsx +15 -10
- package/themes/original/src/components/WalletTransactions/index.tsx +76 -0
- package/themes/original/src/components/WalletTransactions/styles.tsx +13 -0
- package/themes/original/src/components/Wallets/index.tsx +174 -162
- package/themes/original/src/components/Wallets/styles.tsx +10 -8
- package/themes/original/src/components/shared/OBottomPopup.tsx +47 -14
- package/themes/original/src/components/shared/OButton.tsx +10 -3
- package/themes/original/src/components/shared/OIcon.tsx +8 -1
- package/themes/original/src/components/shared/OInput.tsx +3 -2
- package/themes/original/src/layouts/FloatingBottomContainer.tsx +5 -1
- package/themes/original/src/types/index.tsx +122 -30
- package/themes/original/src/utils/index.tsx +77 -0
- package/themes/uber-eats/src/components/BusinessesListing/index.tsx +1 -1
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
import React, { useEffect, useState } from 'react'
|
|
2
|
+
import { StyleSheet, View, Platform } from 'react-native'
|
|
3
|
+
import SelectDropdown from 'react-native-select-dropdown'
|
|
4
|
+
import { useTheme } from 'styled-components/native'
|
|
5
|
+
import {
|
|
6
|
+
MomentOption as MomentOptionController,
|
|
7
|
+
useConfig,
|
|
8
|
+
useUtils
|
|
9
|
+
} from 'ordering-components/native'
|
|
10
|
+
import { useSafeAreaInsets } from 'react-native-safe-area-context'
|
|
11
|
+
import IconAntDesign from 'react-native-vector-icons/AntDesign'
|
|
12
|
+
import { Container } from './styles'
|
|
13
|
+
import moment from 'moment'
|
|
14
|
+
|
|
15
|
+
const MomentSelectorUI = (props: any) => {
|
|
16
|
+
const {
|
|
17
|
+
datesList,
|
|
18
|
+
hoursList,
|
|
19
|
+
dateSelected,
|
|
20
|
+
timeSelected,
|
|
21
|
+
handleChangeDate,
|
|
22
|
+
handleChangeTime,
|
|
23
|
+
} = props
|
|
24
|
+
|
|
25
|
+
const theme = useTheme()
|
|
26
|
+
const { top } = useSafeAreaInsets()
|
|
27
|
+
const [{ configs }] = useConfig()
|
|
28
|
+
const [{ parseTime }] = useUtils()
|
|
29
|
+
|
|
30
|
+
const [customizedDateList, setCustomizedDateList] = useState([])
|
|
31
|
+
const [customizedTimeList, setCustomizedTimeList] = useState([])
|
|
32
|
+
|
|
33
|
+
const is12hours = configs?.dates_moment_format?.value?.includes('hh:mm')
|
|
34
|
+
|
|
35
|
+
const styles = StyleSheet.create({
|
|
36
|
+
selectOption: {
|
|
37
|
+
width: '100%',
|
|
38
|
+
backgroundColor: theme.colors.backgroundGray100,
|
|
39
|
+
paddingVertical: 5,
|
|
40
|
+
paddingHorizontal: 14,
|
|
41
|
+
flexDirection: 'row-reverse',
|
|
42
|
+
alignItems: 'center',
|
|
43
|
+
justifyContent: 'space-between',
|
|
44
|
+
height: 30
|
|
45
|
+
},
|
|
46
|
+
selectWrapper: {
|
|
47
|
+
flex: 1
|
|
48
|
+
}
|
|
49
|
+
})
|
|
50
|
+
|
|
51
|
+
useEffect(() => {
|
|
52
|
+
const updatedDatesList = datesList?.map((date: any) => {
|
|
53
|
+
return { value: moment(date).format('MMM DD, YYYY'), key: date }
|
|
54
|
+
})
|
|
55
|
+
setCustomizedDateList(updatedDatesList)
|
|
56
|
+
}, [datesList])
|
|
57
|
+
|
|
58
|
+
useEffect(() => {
|
|
59
|
+
if (hoursList?.length > 0) {
|
|
60
|
+
|
|
61
|
+
const updatedHoursList = hoursList?.map((hour: any) => {
|
|
62
|
+
const timeValue = is12hours ? (
|
|
63
|
+
hour?.startTime?.includes('12')
|
|
64
|
+
? `${hour.startTime}PM`
|
|
65
|
+
: parseTime(moment(hour.startTime, 'HH:mm'), { outputFormat: 'hh:mma' })
|
|
66
|
+
) : (
|
|
67
|
+
parseTime(moment(hour.startTime, 'HH:mm'), { outputFormat: 'HH:mm' })
|
|
68
|
+
)
|
|
69
|
+
return { value: timeValue, key: hour.startTime }
|
|
70
|
+
})
|
|
71
|
+
setCustomizedTimeList(updatedHoursList)
|
|
72
|
+
}
|
|
73
|
+
}, [hoursList])
|
|
74
|
+
|
|
75
|
+
const dropDownIcon = () => {
|
|
76
|
+
return (
|
|
77
|
+
<IconAntDesign
|
|
78
|
+
name='down'
|
|
79
|
+
color={theme.colors.textThird}
|
|
80
|
+
size={12}
|
|
81
|
+
/>
|
|
82
|
+
)
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return (
|
|
86
|
+
<Container>
|
|
87
|
+
<View style={styles.selectWrapper}>
|
|
88
|
+
<SelectDropdown
|
|
89
|
+
defaultValue={customizedDateList?.find((item: any) => item.key === dateSelected)}
|
|
90
|
+
data={customizedDateList}
|
|
91
|
+
onSelect={(selectedItem, index) => {
|
|
92
|
+
handleChangeDate(selectedItem?.key)
|
|
93
|
+
}}
|
|
94
|
+
buttonTextAfterSelection={(selectedItem, index) => {
|
|
95
|
+
return selectedItem?.value
|
|
96
|
+
}}
|
|
97
|
+
rowTextForSelection={(item, index) => {
|
|
98
|
+
return item.value
|
|
99
|
+
}}
|
|
100
|
+
buttonStyle={{borderTopLeftRadius: 7.6, borderBottomLeftRadius: 7.6, ...styles.selectOption}}
|
|
101
|
+
buttonTextStyle={{
|
|
102
|
+
color: theme.colors.disabled,
|
|
103
|
+
fontSize: 12,
|
|
104
|
+
textAlign: 'left',
|
|
105
|
+
marginHorizontal: 0
|
|
106
|
+
}}
|
|
107
|
+
dropdownStyle={{
|
|
108
|
+
borderRadius: 8,
|
|
109
|
+
borderColor: theme.colors.lightGray,
|
|
110
|
+
marginTop: Platform.OS === 'ios' ? 12 : -top
|
|
111
|
+
}}
|
|
112
|
+
rowStyle={{
|
|
113
|
+
borderBottomColor: theme.colors.backgroundGray100,
|
|
114
|
+
backgroundColor: theme.colors.backgroundGray100,
|
|
115
|
+
height: 30,
|
|
116
|
+
flexDirection: 'column',
|
|
117
|
+
alignItems: 'flex-start',
|
|
118
|
+
paddingTop: 8,
|
|
119
|
+
paddingHorizontal: 12
|
|
120
|
+
}}
|
|
121
|
+
rowTextStyle={{
|
|
122
|
+
color: theme.colors.disabled,
|
|
123
|
+
fontSize: 12,
|
|
124
|
+
marginHorizontal: 0
|
|
125
|
+
}}
|
|
126
|
+
renderDropdownIcon={() => dropDownIcon()}
|
|
127
|
+
dropdownOverlayColor='transparent'
|
|
128
|
+
/>
|
|
129
|
+
</View>
|
|
130
|
+
<View style={styles.selectWrapper}>
|
|
131
|
+
<SelectDropdown
|
|
132
|
+
defaultValue={customizedTimeList?.find((item: any) => item.key === timeSelected)}
|
|
133
|
+
data={customizedTimeList}
|
|
134
|
+
onSelect={(selectedItem, index) => {
|
|
135
|
+
handleChangeTime(selectedItem.key)
|
|
136
|
+
}}
|
|
137
|
+
buttonTextAfterSelection={(selectedItem, index) => {
|
|
138
|
+
return selectedItem.value
|
|
139
|
+
}}
|
|
140
|
+
rowTextForSelection={(item, index) => {
|
|
141
|
+
return item.value
|
|
142
|
+
}}
|
|
143
|
+
buttonStyle={{borderTopRightRadius: 7.6, borderBottomRightRadius: 7.6, ...styles.selectOption}}
|
|
144
|
+
buttonTextStyle={{
|
|
145
|
+
color: theme.colors.disabled,
|
|
146
|
+
fontSize: 12,
|
|
147
|
+
textAlign: 'left',
|
|
148
|
+
marginHorizontal: 0
|
|
149
|
+
}}
|
|
150
|
+
dropdownStyle={{
|
|
151
|
+
borderRadius: 8,
|
|
152
|
+
borderColor: theme.colors.lightGray,
|
|
153
|
+
marginTop: Platform.OS === 'ios' ? 12 : -top
|
|
154
|
+
}}
|
|
155
|
+
rowStyle={{
|
|
156
|
+
borderBottomColor: theme.colors.backgroundGray100,
|
|
157
|
+
backgroundColor: theme.colors.backgroundGray100,
|
|
158
|
+
height: 30,
|
|
159
|
+
flexDirection: 'column',
|
|
160
|
+
alignItems: 'flex-start',
|
|
161
|
+
paddingTop: 8,
|
|
162
|
+
paddingHorizontal: 14
|
|
163
|
+
}}
|
|
164
|
+
rowTextStyle={{
|
|
165
|
+
color: theme.colors.disabled,
|
|
166
|
+
fontSize: 12,
|
|
167
|
+
marginHorizontal: 0
|
|
168
|
+
}}
|
|
169
|
+
renderDropdownIcon={() => dropDownIcon()}
|
|
170
|
+
dropdownOverlayColor='transparent'
|
|
171
|
+
/>
|
|
172
|
+
</View>
|
|
173
|
+
</Container>
|
|
174
|
+
)
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export const MomentSelector = (props: any) => {
|
|
178
|
+
const [{ configs }] = useConfig()
|
|
179
|
+
|
|
180
|
+
const limitDays = parseInt(configs?.max_days_preorder?.value, 10)
|
|
181
|
+
|
|
182
|
+
const currentDate = new Date()
|
|
183
|
+
const time = limitDays > 1
|
|
184
|
+
? currentDate.getTime() + ((limitDays - 1) * 24 * 60 * 60 * 1000)
|
|
185
|
+
: limitDays === 1 ? currentDate.getTime() : currentDate.getTime() + (6 * 24 * 60 * 60 * 1000)
|
|
186
|
+
|
|
187
|
+
currentDate.setTime(time)
|
|
188
|
+
currentDate.setHours(23)
|
|
189
|
+
currentDate.setMinutes(59)
|
|
190
|
+
|
|
191
|
+
const businessPreorderProps = {
|
|
192
|
+
...props,
|
|
193
|
+
UIComponent: MomentSelectorUI,
|
|
194
|
+
maxDate: currentDate
|
|
195
|
+
}
|
|
196
|
+
return <MomentOptionController {...businessPreorderProps} />
|
|
197
|
+
}
|
|
@@ -79,6 +79,7 @@ const MultiCheckoutUI = (props: any) => {
|
|
|
79
79
|
const isPreOrder = configs?.preorder_status_enabled?.value === '1'
|
|
80
80
|
const maximumCarts = 5
|
|
81
81
|
const isDisablePlaceOrderButton = !(paymethodSelected?.paymethod_id || paymethodSelected?.wallet_id) || openCarts.length > maximumCarts
|
|
82
|
+
const walletCarts = (Object.values(carts)?.filter((cart: any) => cart?.products && cart?.products?.length && cart?.status !== 2 && cart?.valid_schedule && cart?.valid_products && cart?.valid_address && cart?.valid_maximum && cart?.valid_minimum && cart?.wallets) || null) || []
|
|
82
83
|
|
|
83
84
|
const [isUserDetailsEdit, setIsUserDetailsEdit] = useState(false);
|
|
84
85
|
const [phoneUpdate, setPhoneUpdate] = useState(false);
|
|
@@ -253,6 +254,11 @@ const MultiCheckoutUI = (props: any) => {
|
|
|
253
254
|
</OText>
|
|
254
255
|
</CCNotCarts>
|
|
255
256
|
)}
|
|
257
|
+
{walletCarts.length > 0 && (
|
|
258
|
+
<OText size={14} color={theme.colors.danger5} style={{ marginVertical: 20 }}>
|
|
259
|
+
{t('WARNING_PARTIAL_WALLET_CARTS', 'Important: One or more carts can`t be completed due a partial payment with cash/points wallet and requires to be paid individually')}
|
|
260
|
+
</OText>
|
|
261
|
+
)}
|
|
256
262
|
{openCarts.length > 0 && (
|
|
257
263
|
<ChCartsTotal>
|
|
258
264
|
<View style={{ flexDirection: 'row', justifyContent: 'space-between' }}>
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import React, { useEffect } from 'react'
|
|
2
|
-
import { useLanguage, useUtils, useToast,
|
|
3
|
-
import { View, StyleSheet, BackHandler } from 'react-native'
|
|
2
|
+
import { useLanguage, useUtils, useToast, ToastType, MultiOrdersDetails as MultiOrdersDetailsController } from 'ordering-components/native'
|
|
3
|
+
import { View, StyleSheet, BackHandler, TouchableOpacity } from 'react-native'
|
|
4
4
|
import { useTheme } from 'styled-components/native'
|
|
5
5
|
import { OText, OButton } from '../shared'
|
|
6
6
|
import { Container } from '../../layouts/Container'
|
|
7
7
|
import { Placeholder, PlaceholderLine, Fade } from 'rn-placeholder'
|
|
8
8
|
import { SingleOrderCard } from './SingleOrderCard'
|
|
9
|
+
import AntDesignIcon from 'react-native-vector-icons/AntDesign'
|
|
9
10
|
|
|
10
11
|
import {
|
|
11
12
|
OrdersDetailsContainer,
|
|
@@ -29,20 +30,20 @@ export const MultiOrdersDetailsUI = (props: any) => {
|
|
|
29
30
|
} = props
|
|
30
31
|
|
|
31
32
|
const theme = useTheme()
|
|
32
|
-
|
|
33
|
+
const styles = StyleSheet.create({
|
|
33
34
|
btnBackArrow: {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
borderWidth: 0,
|
|
36
|
+
backgroundColor: theme.colors.clear,
|
|
37
|
+
shadowColor: theme.colors.clear,
|
|
38
|
+
padding: 0,
|
|
38
39
|
marginLeft: -20
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
},
|
|
41
|
+
})
|
|
42
|
+
|
|
42
43
|
const { loading, orders, error } = props.ordersList
|
|
43
44
|
const [, t] = useLanguage()
|
|
44
45
|
const [{ parsePrice, parseNumber, parseDate }] = useUtils();
|
|
45
|
-
|
|
46
|
+
const [, { showToast }] = useToast();
|
|
46
47
|
|
|
47
48
|
const walletName: any = {
|
|
48
49
|
cash: {
|
|
@@ -60,7 +61,7 @@ export const MultiOrdersDetailsUI = (props: any) => {
|
|
|
60
61
|
}
|
|
61
62
|
navigation.navigate('BusinessList');
|
|
62
63
|
return true
|
|
63
|
-
|
|
64
|
+
}
|
|
64
65
|
|
|
65
66
|
const handleGoToOrderDetails = (uuid: any) => {
|
|
66
67
|
navigation.navigate('OrderDetails', { orderId: uuid })
|
|
@@ -68,7 +69,7 @@ export const MultiOrdersDetailsUI = (props: any) => {
|
|
|
68
69
|
|
|
69
70
|
useEffect(() => {
|
|
70
71
|
if (error) {
|
|
71
|
-
|
|
72
|
+
showToast(ToastType.Error, error)
|
|
72
73
|
}
|
|
73
74
|
}, [error])
|
|
74
75
|
|
|
@@ -83,11 +84,14 @@ export const MultiOrdersDetailsUI = (props: any) => {
|
|
|
83
84
|
<OrdersDetailsContainer keyboardShouldPersistTaps="handled" contentContainerStyle={{ paddingHorizontal: 40 }}>
|
|
84
85
|
<View style={{ flexDirection: 'row' }}>
|
|
85
86
|
<OButton
|
|
86
|
-
imgLeftSrc={theme.images.general.arrow_left}
|
|
87
87
|
imgRightSrc={null}
|
|
88
88
|
style={styles.btnBackArrow}
|
|
89
89
|
onClick={() => handleArrowBack()}
|
|
90
|
-
|
|
90
|
+
icon={AntDesignIcon}
|
|
91
|
+
iconProps={{
|
|
92
|
+
name: 'arrowleft',
|
|
93
|
+
size: 26
|
|
94
|
+
}}
|
|
91
95
|
/>
|
|
92
96
|
</View>
|
|
93
97
|
<Header>
|
|
@@ -202,7 +206,7 @@ export const MultiOrdersDetailsUI = (props: any) => {
|
|
|
202
206
|
</Row>
|
|
203
207
|
<Row>
|
|
204
208
|
<OText size={12} lineHeight={18} weight={'400'} color={theme.colors.textNormal}>
|
|
205
|
-
|
|
209
|
+
{t('ESTIMATED_TAX_TO_BE_COLLECTED', 'Estimated tax to be collected')}:
|
|
206
210
|
</OText>
|
|
207
211
|
<OText size={12} lineHeight={18} weight={'400'} color={theme.colors.textNormal}>
|
|
208
212
|
{parsePrice(ordersSummary?.tax)}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import React, { useState, useEffect } from 'react'
|
|
2
2
|
import { useLanguage } from 'ordering-components/native';
|
|
3
|
-
import { View, StyleSheet, RefreshControl } from 'react-native';
|
|
3
|
+
import { View, StyleSheet, RefreshControl, Platform } from 'react-native';
|
|
4
|
+
import AntDesignIcon from 'react-native-vector-icons/AntDesign'
|
|
4
5
|
|
|
5
6
|
import { OrdersOption } from '../OrdersOption'
|
|
6
|
-
import { HeaderTitle, OText } from '../shared'
|
|
7
|
+
import { HeaderTitle, OButton, OText } from '../shared'
|
|
7
8
|
import { ScrollView } from 'react-native-gesture-handler';
|
|
8
9
|
import { Tab } from './styles'
|
|
9
10
|
import { useTheme } from 'styled-components/native';
|
|
@@ -11,6 +12,7 @@ import { Container } from '../../layouts/Container';
|
|
|
11
12
|
|
|
12
13
|
export const MyOrders = (props: any) => {
|
|
13
14
|
const {
|
|
15
|
+
navigation,
|
|
14
16
|
hideOrders,
|
|
15
17
|
businessesSearchList
|
|
16
18
|
} = props
|
|
@@ -33,6 +35,9 @@ export const MyOrders = (props: any) => {
|
|
|
33
35
|
{ key: 'business', value: t('BUSINESS', 'Business') },
|
|
34
36
|
{ key: 'products', value: t('PRODUCTS', 'Products') }
|
|
35
37
|
]
|
|
38
|
+
const isChewLayout = theme?.business_view?.components?.header?.components?.layout?.type === 'chew'
|
|
39
|
+
|
|
40
|
+
const goToBack = () => navigation?.canGoBack() && navigation.goBack()
|
|
36
41
|
|
|
37
42
|
const handleOnRefresh = () => {
|
|
38
43
|
setRefreshOrders(true);
|
|
@@ -67,7 +72,47 @@ export const MyOrders = (props: any) => {
|
|
|
67
72
|
onRefresh={() => handleOnRefresh()}
|
|
68
73
|
/>
|
|
69
74
|
}>
|
|
70
|
-
{
|
|
75
|
+
{isChewLayout && (
|
|
76
|
+
<View style={{
|
|
77
|
+
width: '100%',
|
|
78
|
+
display: 'flex',
|
|
79
|
+
flexDirection: 'row',
|
|
80
|
+
alignItems: 'center',
|
|
81
|
+
paddingHorizontal: 40
|
|
82
|
+
}}>
|
|
83
|
+
<OText
|
|
84
|
+
size={24}
|
|
85
|
+
style={{
|
|
86
|
+
marginTop: Platform.OS === 'android' ? 50 : 30,
|
|
87
|
+
paddingHorizontal: 20,
|
|
88
|
+
textTransform: 'capitalize'
|
|
89
|
+
}}
|
|
90
|
+
>
|
|
91
|
+
<OButton
|
|
92
|
+
imgLeftStyle={{ width: 18 }}
|
|
93
|
+
imgRightSrc={null}
|
|
94
|
+
style={{
|
|
95
|
+
borderWidth: 0,
|
|
96
|
+
width: 26,
|
|
97
|
+
height: 26,
|
|
98
|
+
backgroundColor: '#FFF',
|
|
99
|
+
borderColor: '#FFF',
|
|
100
|
+
shadowColor: '#FFF',
|
|
101
|
+
paddingLeft: 0,
|
|
102
|
+
paddingRight: 0,
|
|
103
|
+
}}
|
|
104
|
+
onClick={goToBack}
|
|
105
|
+
icon={AntDesignIcon}
|
|
106
|
+
iconProps={{
|
|
107
|
+
name: 'arrowleft',
|
|
108
|
+
size: 26
|
|
109
|
+
}}
|
|
110
|
+
/>
|
|
111
|
+
{t('MY_ORDERS', 'My Orders')}
|
|
112
|
+
</OText>
|
|
113
|
+
</View>
|
|
114
|
+
)}
|
|
115
|
+
{!hideOrders && !isChewLayout && (
|
|
71
116
|
<HeaderTitle text={t('MY_ORDERS', 'My Orders')} />
|
|
72
117
|
)}
|
|
73
118
|
{!allEmpty && (
|
|
@@ -119,14 +164,31 @@ export const MyOrders = (props: any) => {
|
|
|
119
164
|
</View>
|
|
120
165
|
</>
|
|
121
166
|
)}
|
|
122
|
-
{
|
|
167
|
+
{selectedOption === 'business' && (
|
|
168
|
+
<OrdersOption
|
|
169
|
+
{...props}
|
|
170
|
+
isBusiness
|
|
171
|
+
titleContent={t('PREVIOUSLY_ORDERED', 'Previously ordered')}
|
|
172
|
+
hideOrders
|
|
173
|
+
horizontal
|
|
174
|
+
activeOrders
|
|
175
|
+
pastOrders
|
|
176
|
+
preOrders
|
|
177
|
+
businessesSearchList={businessesSearchList}
|
|
178
|
+
setIsEmptyBusinesses={setIsEmptyBusinesses}
|
|
179
|
+
businessOrderIds={businessOrderIds}
|
|
180
|
+
setBusinessOrderIds={setBusinessOrderIds}
|
|
181
|
+
ordersLength={ordersLength}
|
|
182
|
+
setOrdersLength={setOrdersLength}
|
|
183
|
+
/>
|
|
184
|
+
)}
|
|
185
|
+
{selectedOption === 'products' && (
|
|
123
186
|
<OrdersOption
|
|
124
187
|
{...props}
|
|
188
|
+
isProducts
|
|
125
189
|
titleContent={t('PREVIOUSLY_ORDERED', 'Previously ordered')}
|
|
126
190
|
hideOrders
|
|
127
191
|
horizontal
|
|
128
|
-
isBusiness={selectedOption === 'business'}
|
|
129
|
-
isProducts={selectedOption === 'products'}
|
|
130
192
|
activeOrders
|
|
131
193
|
pastOrders
|
|
132
194
|
preOrders
|
|
@@ -2,13 +2,14 @@ import * as React from 'react'
|
|
|
2
2
|
import styled, { useTheme } from 'styled-components/native'
|
|
3
3
|
import { OButton, OIcon, OText } from '../shared'
|
|
4
4
|
import { Platform, TextStyle, ViewStyle, I18nManager, TouchableOpacity } from 'react-native'
|
|
5
|
+
import AntDesignIcon from 'react-native-vector-icons/AntDesign'
|
|
5
6
|
|
|
6
7
|
const TitleWrapper = styled.View`
|
|
7
8
|
flex-direction: column;
|
|
8
9
|
padding-horizontal: 10px;
|
|
9
10
|
`
|
|
10
11
|
const TitleTopWrapper = styled.View`
|
|
11
|
-
flex
|
|
12
|
+
flex: 1;
|
|
12
13
|
flex-direction: row;
|
|
13
14
|
align-items: center;
|
|
14
15
|
`
|
|
@@ -39,7 +40,8 @@ interface Props {
|
|
|
39
40
|
style?: ViewStyle,
|
|
40
41
|
titleWrapStyle?: ViewStyle,
|
|
41
42
|
paddingTop?: number,
|
|
42
|
-
isVertical?: boolean
|
|
43
|
+
isVertical?: boolean,
|
|
44
|
+
noMargin?: any
|
|
43
45
|
}
|
|
44
46
|
|
|
45
47
|
const NavBar = (props: Props) => {
|
|
@@ -61,11 +63,16 @@ const NavBar = (props: Props) => {
|
|
|
61
63
|
return (
|
|
62
64
|
<Wrapper style={{ paddingTop: props.paddingTop, ...{ flexDirection: props.isVertical ? 'column' : 'row', alignItems: props.isVertical ? 'flex-start' : 'center' }, ...props.style }}>
|
|
63
65
|
<OButton
|
|
64
|
-
imgLeftSrc={props.leftImg
|
|
65
|
-
imgLeftStyle={{width: 18}}
|
|
66
|
+
imgLeftSrc={props.leftImg}
|
|
67
|
+
imgLeftStyle={{ width: 18 }}
|
|
66
68
|
imgRightSrc={null}
|
|
67
69
|
style={{ ...btnBackArrow, ...props.btnStyle, ...props.isVertical ? (I18nManager.isRTL ? { paddingRight: 0 } : { paddingLeft: 0 }) : {} }}
|
|
68
70
|
onClick={props?.onActionLeft}
|
|
71
|
+
icon={AntDesignIcon}
|
|
72
|
+
iconProps={{
|
|
73
|
+
name: 'arrowleft',
|
|
74
|
+
size: 26
|
|
75
|
+
}}
|
|
69
76
|
/>
|
|
70
77
|
<TitleTopWrapper>
|
|
71
78
|
{props.withIcon
|
|
@@ -90,10 +97,9 @@ const NavBar = (props: Props) => {
|
|
|
90
97
|
style={
|
|
91
98
|
{
|
|
92
99
|
textAlign: props.titleAlign ? props.titleAlign : 'center',
|
|
93
|
-
marginRight: props.showCall ? 0 : 40,
|
|
100
|
+
marginRight: (props.showCall || !!props.noMargin) ? 0 : 40,
|
|
94
101
|
color: props.titleColor || theme.colors.textNormal,
|
|
95
102
|
paddingHorizontal: props.titleAlign == 'left' ? 12 : 0,
|
|
96
|
-
width: '100%',
|
|
97
103
|
...props.titleStyle,
|
|
98
104
|
}
|
|
99
105
|
}
|
|
@@ -126,9 +132,9 @@ NavBar.defaultProps = {
|
|
|
126
132
|
textAlign: 'center'
|
|
127
133
|
};
|
|
128
134
|
|
|
129
|
-
const areEqual=(prevProps: { route?: any; }, nextProps: { route?: any; })=>{
|
|
130
|
-
|
|
131
|
-
|
|
135
|
+
const areEqual = (prevProps: { route?: any; }, nextProps: { route?: any; }) => {
|
|
136
|
+
return prevProps.route === nextProps.route
|
|
137
|
+
return true
|
|
132
138
|
}
|
|
133
139
|
|
|
134
140
|
export default React.memo(NavBar, areEqual);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
|
-
import { useLanguage } from 'ordering-components/native'
|
|
2
|
+
import { useLanguage, useOrderingTheme } from 'ordering-components/native'
|
|
3
3
|
import { Dimensions } from 'react-native'
|
|
4
4
|
import RNRestart from 'react-native-restart'
|
|
5
5
|
import { OText, OIcon, OButton } from '../shared'
|
|
@@ -16,7 +16,8 @@ export const NetworkError = (props: NoNetworkParams) => {
|
|
|
16
16
|
} = props
|
|
17
17
|
const theme = useTheme()
|
|
18
18
|
const [, t] = useLanguage()
|
|
19
|
-
|
|
19
|
+
const [orderingTheme] = useOrderingTheme()
|
|
20
|
+
const urlimage = orderingTheme?.theme?.no_internet?.components?.image
|
|
20
21
|
const noNetworkImage = image || theme.images.general.noNetwork
|
|
21
22
|
const deviceWidth = Dimensions.get('screen').width
|
|
22
23
|
|
|
@@ -38,7 +39,8 @@ export const NetworkError = (props: NoNetworkParams) => {
|
|
|
38
39
|
</OText>
|
|
39
40
|
<ImageContainer>
|
|
40
41
|
<OIcon
|
|
41
|
-
src={noNetworkImage}
|
|
42
|
+
src={!urlimage && noNetworkImage}
|
|
43
|
+
url={urlimage}
|
|
42
44
|
width={(deviceWidth - 80) * 0.9}
|
|
43
45
|
height={(deviceWidth - 80) * 0.8}
|
|
44
46
|
/>
|
|
@@ -20,12 +20,13 @@ export const NotFoundSource = (props: NotFoundSourceParams) => {
|
|
|
20
20
|
const theme = useTheme();
|
|
21
21
|
|
|
22
22
|
const errorImage = image || theme.images.general.notFound
|
|
23
|
+
const isUrl = typeof errorImage === 'string' && errorImage.includes('http')
|
|
23
24
|
|
|
24
25
|
return (
|
|
25
26
|
<NotFound>
|
|
26
27
|
{errorImage && (
|
|
27
28
|
<NotFoundImage>
|
|
28
|
-
<OIcon src={errorImage} width={260} height={220} />
|
|
29
|
+
<OIcon url={isUrl && errorImage} src={!isUrl && errorImage} width={260} height={220} />
|
|
29
30
|
</NotFoundImage>
|
|
30
31
|
)}
|
|
31
32
|
{content && conditioned && !errorImage && <OText color={theme.colors.disabled} size={18} style={{ textAlign: 'center' }}>{content}</OText>}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import React, { useEffect } from 'react'
|
|
2
|
+
import {
|
|
3
|
+
UserFormDetails as NotificationsController,
|
|
4
|
+
useLanguage,
|
|
5
|
+
useSession,
|
|
6
|
+
useOrderingTheme,
|
|
7
|
+
useToast,
|
|
8
|
+
ToastType,
|
|
9
|
+
} from 'ordering-components/native'
|
|
10
|
+
import { NotificationsGroupSwitchWrapper, SwitchWrapper } from './styles'
|
|
11
|
+
import { Platform, StyleSheet, View } from 'react-native'
|
|
12
|
+
import { useState } from 'react'
|
|
13
|
+
import { useTheme } from 'styled-components/native';
|
|
14
|
+
import Spinner from 'react-native-loading-spinner-overlay';
|
|
15
|
+
import ToggleSwitch from 'toggle-switch-react-native'
|
|
16
|
+
import { Container } from '../../layouts/Container'
|
|
17
|
+
import NavBar from '../NavBar'
|
|
18
|
+
import { OText } from '../shared'
|
|
19
|
+
|
|
20
|
+
const NotificationsUI = (props: any) => {
|
|
21
|
+
const {
|
|
22
|
+
navigation,
|
|
23
|
+
singleNotifications,
|
|
24
|
+
handleChangePromotions,
|
|
25
|
+
userData
|
|
26
|
+
} = props
|
|
27
|
+
|
|
28
|
+
const theme = useTheme();
|
|
29
|
+
const [{ user: userSession }] = useSession()
|
|
30
|
+
const [, t] = useLanguage();
|
|
31
|
+
const [, { showToast }] = useToast();
|
|
32
|
+
const [orderingTheme] = useOrderingTheme()
|
|
33
|
+
|
|
34
|
+
const user = userData || userSession
|
|
35
|
+
|
|
36
|
+
const [notificationsList, setNotificationsList] = useState({
|
|
37
|
+
email: singleNotifications?.result?.result
|
|
38
|
+
? !!singleNotifications?.result?.result?.settings?.email?.newsletter
|
|
39
|
+
: !!(singleNotifications?.changes?.settings?.email?.newsletter ?? (user && user?.settings?.email?.newsletter)),
|
|
40
|
+
sms: singleNotifications?.result?.result
|
|
41
|
+
? !!singleNotifications?.result?.result?.settings?.sms?.newsletter
|
|
42
|
+
: !!(singleNotifications?.changes?.settings?.sms?.newsletter ?? (user && user?.settings?.sms?.newsletter)),
|
|
43
|
+
notification: singleNotifications?.result?.result
|
|
44
|
+
? !!singleNotifications?.result?.result?.settings?.notification?.newsletter
|
|
45
|
+
: !!(singleNotifications?.changes?.settings?.notification?.newsletter ?? (user && user?.settings?.notification?.newsletter))
|
|
46
|
+
})
|
|
47
|
+
|
|
48
|
+
const goToBack = () => navigation?.canGoBack() && navigation.goBack()
|
|
49
|
+
const showCustomerPromotions = !orderingTheme?.theme?.profile?.components?.promotions?.hidden
|
|
50
|
+
const showNotifications = !orderingTheme?.theme?.profile?.components?.notification_settings?.hidden
|
|
51
|
+
|
|
52
|
+
const handleEditNotifications = (key: any, value: any) => {
|
|
53
|
+
setNotificationsList({
|
|
54
|
+
...notificationsList,
|
|
55
|
+
[key]: value
|
|
56
|
+
})
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
useEffect(() => {
|
|
60
|
+
if (singleNotifications.result.result && !singleNotifications.loading) {
|
|
61
|
+
if (!singleNotifications.result?.error) {
|
|
62
|
+
showToast(ToastType.Success, t('UPDATE_SUCCESSFULLY', 'Update successfully'));
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}, [singleNotifications.result])
|
|
66
|
+
|
|
67
|
+
useEffect(() => {
|
|
68
|
+
const isSingle = true
|
|
69
|
+
handleChangePromotions(notificationsList, isSingle)
|
|
70
|
+
}, [notificationsList])
|
|
71
|
+
|
|
72
|
+
return (
|
|
73
|
+
<Container noPadding>
|
|
74
|
+
<NavBar
|
|
75
|
+
title={t('NOTIFICATIONS', 'Notifications')}
|
|
76
|
+
titleAlign={'center'}
|
|
77
|
+
onActionLeft={goToBack}
|
|
78
|
+
showCall={false}
|
|
79
|
+
style={{ paddingHorizontal: 40, paddingVertical: Platform.OS === 'ios' ? 0 : 20, marginTop: Platform.OS === 'ios' ? 0 : 30 }}
|
|
80
|
+
/>
|
|
81
|
+
{showCustomerPromotions && showNotifications && (
|
|
82
|
+
<>
|
|
83
|
+
<Spinner visible={singleNotifications?.loading} />
|
|
84
|
+
<View style={{ ...styles.pagePadding }}>
|
|
85
|
+
<NotificationsGroupSwitchWrapper>
|
|
86
|
+
<OText style={{ ...styles.title }}>{t('MARKETING_NOTIFICATIONS', 'Marketing Notifications')}</OText>
|
|
87
|
+
<SwitchWrapper>
|
|
88
|
+
<OText>{t('EMAILS', 'Emails')}</OText>
|
|
89
|
+
<ToggleSwitch
|
|
90
|
+
isOn={notificationsList?.email}
|
|
91
|
+
onColor={theme.colors.primary}
|
|
92
|
+
size="small"
|
|
93
|
+
disabled={singleNotifications?.loading}
|
|
94
|
+
offColor={theme.colors.disabled}
|
|
95
|
+
animationSpeed={400}
|
|
96
|
+
onToggle={() => handleEditNotifications('email', !notificationsList?.email)}
|
|
97
|
+
/>
|
|
98
|
+
</SwitchWrapper>
|
|
99
|
+
<SwitchWrapper>
|
|
100
|
+
<OText>{t('SMS', 'Sms')}</OText>
|
|
101
|
+
<ToggleSwitch
|
|
102
|
+
isOn={notificationsList?.sms}
|
|
103
|
+
onColor={theme.colors.primary}
|
|
104
|
+
size="small"
|
|
105
|
+
disabled={singleNotifications?.loading}
|
|
106
|
+
offColor={theme.colors.disabled}
|
|
107
|
+
animationSpeed={400}
|
|
108
|
+
onToggle={() => handleEditNotifications('sms', !notificationsList?.sms)}
|
|
109
|
+
/>
|
|
110
|
+
</SwitchWrapper>
|
|
111
|
+
<SwitchWrapper>
|
|
112
|
+
<OText>{t('PUSH_NOTIFICATIONS', 'Push Notifications')}</OText>
|
|
113
|
+
<ToggleSwitch
|
|
114
|
+
isOn={notificationsList?.notification}
|
|
115
|
+
onColor={theme.colors.primary}
|
|
116
|
+
size="small"
|
|
117
|
+
disabled={singleNotifications?.loading}
|
|
118
|
+
offColor={theme.colors.disabled}
|
|
119
|
+
animationSpeed={400}
|
|
120
|
+
onToggle={() => handleEditNotifications('notification', !notificationsList?.notification)}
|
|
121
|
+
/>
|
|
122
|
+
</SwitchWrapper>
|
|
123
|
+
</NotificationsGroupSwitchWrapper>
|
|
124
|
+
</View>
|
|
125
|
+
</>
|
|
126
|
+
)}
|
|
127
|
+
</Container>
|
|
128
|
+
)
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const styles = StyleSheet.create({
|
|
132
|
+
title: {
|
|
133
|
+
marginBottom: 24,
|
|
134
|
+
fontWeight: 'bold',
|
|
135
|
+
},
|
|
136
|
+
pagePadding: {
|
|
137
|
+
paddingLeft: 40,
|
|
138
|
+
paddingRight: 40
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
|
|
142
|
+
export const NotificationsList = (props: any) => {
|
|
143
|
+
const notificationsListProps = {
|
|
144
|
+
...props,
|
|
145
|
+
UIComponent: NotificationsUI
|
|
146
|
+
}
|
|
147
|
+
return <NotificationsController {...notificationsListProps} />
|
|
148
|
+
}
|