ordering-ui-react-native 0.15.43 → 0.15.44-release
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -3
- package/src/DeliveryApp.tsx +43 -1
- package/src/components/AddressForm/index.tsx +18 -2
- package/src/components/BusinessController/index.tsx +8 -2
- package/src/components/BusinessTypeFilter/index.tsx +3 -1
- package/src/components/BusinessesListing/index.tsx +1 -1
- package/src/components/Checkout/index.tsx +23 -2
- package/src/components/DriverTips/index.tsx +11 -6
- package/src/components/LanguageSelector/index.tsx +7 -2
- package/src/components/LoginForm/index.tsx +3 -1
- package/src/components/OrderDetails/index.tsx +9 -23
- package/src/components/PaymentOptions/index.tsx +1 -1
- package/src/components/PaymentOptionsWebView/index.tsx +123 -124
- package/src/components/SignupForm/index.tsx +3 -1
- package/src/components/SingleProductCard/index.tsx +16 -4
- package/src/components/StripeMethodForm/index.tsx +1 -2
- package/src/components/UpsellingProducts/index.tsx +1 -1
- package/src/components/UserProfileForm/index.tsx +63 -6
- package/src/components/UserProfileForm/styles.tsx +8 -0
- package/src/components/VerifyPhone/styles.tsx +1 -2
- package/src/components/shared/OModal.tsx +1 -1
- package/src/hooks/useCountdownTimer.tsx +26 -0
- package/src/navigators/CheckoutNavigator.tsx +6 -0
- package/src/navigators/HomeNavigator.tsx +12 -0
- package/src/pages/BusinessesListing.tsx +1 -1
- package/src/pages/MultiCheckout.tsx +31 -0
- package/src/pages/MultiOrdersDetails.tsx +27 -0
- package/src/pages/Sessions.tsx +22 -0
- package/src/theme.json +0 -1
- package/src/types/index.tsx +5 -2
- package/src/utils/index.tsx +68 -1
- package/themes/business/src/components/AcceptOrRejectOrder/index.tsx +103 -15
- package/themes/business/src/components/AcceptOrRejectOrder/styles.tsx +6 -0
- package/themes/business/src/components/Chat/index.tsx +42 -90
- package/themes/business/src/components/DriverMap/index.tsx +6 -5
- package/themes/business/src/components/Home/index.tsx +128 -55
- package/themes/business/src/components/Home/styles.tsx +8 -1
- package/themes/business/src/components/LoginForm/index.tsx +89 -2
- package/themes/business/src/components/LoginForm/styles.tsx +6 -0
- package/themes/business/src/components/LogoutButton/index.tsx +1 -1
- package/themes/business/src/components/NewOrderNotification/index.tsx +79 -105
- package/themes/business/src/components/OrderDetails/Business.tsx +1 -1
- package/themes/business/src/components/OrderDetails/Delivery.tsx +35 -18
- package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +159 -91
- package/themes/business/src/components/OrderDetails/OrderHeaderComponent.tsx +6 -0
- package/themes/business/src/components/OrderDetails/styles.tsx +7 -0
- package/themes/business/src/components/OrdersListManager/index.tsx +1 -1
- package/themes/business/src/components/OrdersOption/index.tsx +5 -2
- package/themes/business/src/components/PreviousOrders/index.tsx +10 -9
- package/themes/business/src/components/ProductItemAccordion/index.tsx +2 -2
- package/themes/business/src/components/shared/OModal.tsx +1 -1
- package/themes/business/src/types/index.tsx +5 -1
- 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/BusinessMenu/index.tsx +39 -28
- package/themes/kiosk/src/components/BusinessesListing/index.tsx +2 -3
- package/themes/kiosk/src/components/Cart/index.tsx +99 -26
- package/themes/kiosk/src/components/Cart/styles.tsx +6 -0
- package/themes/kiosk/src/components/CartBottomSheet/index.tsx +9 -2
- package/themes/kiosk/src/components/CartContent/index.tsx +0 -11
- package/themes/kiosk/src/components/CartItem/index.tsx +4 -3
- package/themes/kiosk/src/components/CategoriesMenu/index.tsx +107 -62
- package/themes/kiosk/src/components/Checkout/index.tsx +40 -22
- package/themes/kiosk/src/components/CustomerName/index.tsx +0 -6
- package/themes/kiosk/src/components/DrawerView/index.tsx +1 -0
- package/themes/kiosk/src/components/DrawerView/styles.tsx +2 -2
- package/themes/kiosk/src/components/NavBar/index.tsx +29 -20
- package/themes/kiosk/src/components/OptionCard/index.tsx +1 -1
- package/themes/kiosk/src/components/OrderDetails/index.tsx +165 -65
- package/themes/kiosk/src/components/OrderDetails/styles.tsx +5 -0
- package/themes/kiosk/src/components/OrderTypeCardSelector/index.tsx +9 -11
- package/themes/kiosk/src/components/PaymentOptions/index.tsx +56 -54
- package/themes/kiosk/src/components/ProductForm/index.tsx +8 -9
- package/themes/kiosk/src/components/ProductItemAccordion/index.tsx +2 -2
- package/themes/kiosk/src/components/ProductOption/index.tsx +1 -1
- package/themes/kiosk/src/components/ProductOptionSubOption/index.tsx +3 -1
- package/themes/kiosk/src/components/UpsellingProducts/index.tsx +16 -5
- package/themes/kiosk/src/components/shared/OButton.tsx +5 -18
- package/themes/kiosk/src/types/index.d.ts +3 -0
- package/themes/original/index.tsx +180 -3
- package/themes/original/src/components/ActiveOrders/index.tsx +15 -132
- package/themes/original/src/components/ActiveOrders/styles.tsx +0 -54
- package/themes/original/src/components/AddressForm/index.tsx +1 -1
- package/themes/original/src/components/AddressList/index.tsx +30 -18
- package/themes/original/src/components/AppleLogin/index.tsx +117 -78
- package/themes/original/src/components/BusinessBasicInformation/index.tsx +70 -41
- package/themes/original/src/components/BusinessController/index.tsx +50 -12
- package/themes/original/src/components/BusinessController/styles.tsx +27 -0
- package/themes/original/src/components/BusinessFeaturedController/index.tsx +20 -1
- package/themes/original/src/components/BusinessFeaturedController/styles.tsx +23 -0
- package/themes/original/src/components/BusinessItemAccordion/index.tsx +8 -5
- package/themes/original/src/components/BusinessItemAccordion/styles.tsx +3 -1
- package/themes/original/src/components/BusinessListingSearch/index.tsx +196 -58
- package/themes/original/src/components/BusinessListingSearch/styles.tsx +22 -2
- package/themes/original/src/components/BusinessPreorder/index.tsx +2 -2
- package/themes/original/src/components/BusinessProductsCategories/index.tsx +8 -6
- package/themes/original/src/components/BusinessProductsList/CategoryDescription/index.tsx +44 -0
- package/themes/original/src/components/BusinessProductsList/index.tsx +120 -36
- package/themes/original/src/components/BusinessProductsList/styles.tsx +12 -4
- package/themes/original/src/components/BusinessProductsListing/index.tsx +116 -26
- package/themes/original/src/components/BusinessProductsListing/styles.tsx +22 -0
- package/themes/original/src/components/BusinessReviews/index.tsx +4 -25
- package/themes/original/src/components/BusinessTypeFilter/index.tsx +1 -2
- package/themes/original/src/components/BusinessesListing/index.tsx +127 -66
- package/themes/original/src/components/BusinessesListing/styles.tsx +11 -3
- package/themes/original/src/components/Cart/index.tsx +60 -43
- package/themes/original/src/components/Checkout/index.tsx +50 -33
- package/themes/original/src/components/DriverTips/index.tsx +17 -12
- package/themes/original/src/components/Favorite/index.tsx +91 -0
- package/themes/original/src/components/Favorite/styles.tsx +22 -0
- package/themes/original/src/components/FavoriteList/index.tsx +287 -0
- package/themes/original/src/components/FavoriteList/styles.tsx +5 -0
- package/themes/original/src/components/ForgotPasswordForm/index.tsx +84 -4
- package/themes/original/src/components/GPSButton/index.tsx +15 -8
- package/themes/original/src/components/GoogleMap/index.tsx +1 -0
- package/themes/original/src/components/Help/index.tsx +21 -4
- package/themes/original/src/components/HighestRatedBusinesses/index.tsx +18 -1
- package/themes/original/src/components/Home/index.tsx +1 -1
- package/themes/original/src/components/LastOrders/index.tsx +12 -1
- package/themes/original/src/components/LoginForm/Otp/index.tsx +90 -0
- package/themes/original/src/components/LoginForm/Otp/styles.tsx +7 -0
- package/themes/original/src/components/LoginForm/index.tsx +394 -155
- package/themes/original/src/components/LoginForm/styles.tsx +7 -4
- package/themes/original/src/components/LogoutButton/index.tsx +7 -1
- package/themes/original/src/components/MessageListing/index.tsx +10 -1
- package/themes/original/src/components/Messages/index.tsx +1 -1
- package/themes/original/src/components/MomentOption/index.tsx +10 -1
- package/themes/original/src/components/MomentOption/styles.tsx +1 -1
- package/themes/original/src/components/MultiCartsPaymethodsAndWallets/index.tsx +243 -0
- package/themes/original/src/components/MultiCartsPaymethodsAndWallets/styles.tsx +46 -0
- package/themes/original/src/components/MultiCheckout/index.tsx +298 -0
- package/themes/original/src/components/MultiCheckout/styles.tsx +59 -0
- package/themes/original/src/components/MultiOrdersDetails/SingleOrderCard.tsx +372 -0
- package/themes/original/src/components/MultiOrdersDetails/index.tsx +258 -0
- package/themes/original/src/components/MultiOrdersDetails/styles.tsx +50 -0
- package/themes/original/src/components/MyOrders/index.tsx +120 -32
- package/themes/original/src/components/MyOrders/styles.tsx +8 -1
- package/themes/original/src/components/OrderDetails/index.tsx +64 -44
- package/themes/original/src/components/OrderDetails/styles.tsx +1 -2
- package/themes/original/src/components/OrderProgress/index.tsx +3 -3
- package/themes/original/src/components/OrderProgress/styles.tsx +1 -0
- package/themes/original/src/components/OrderSummary/index.tsx +3 -3
- package/themes/original/src/components/OrderTypeSelector/index.tsx +4 -2
- package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/index.tsx +153 -0
- package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/styles.tsx +6 -0
- package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/index.tsx +53 -0
- package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/styles.tsx +6 -0
- package/themes/original/src/components/OrdersOption/index.tsx +133 -41
- package/themes/original/src/components/OrdersOption/styles.tsx +4 -7
- package/themes/original/src/components/PaymentOptionCash/index.tsx +2 -2
- package/themes/original/src/components/PaymentOptionWallet/index.tsx +22 -24
- package/themes/original/src/components/PaymentOptionWallet/styles.tsx +1 -1
- package/themes/original/src/components/PaymentOptions/index.tsx +19 -15
- package/themes/original/src/components/PhoneInputNumber/index.tsx +1 -1
- package/themes/original/src/components/PreviousOrders/index.tsx +18 -145
- package/themes/original/src/components/ProductForm/index.tsx +74 -66
- package/themes/original/src/components/ProductForm/styles.tsx +0 -1
- package/themes/original/src/components/ProductItemAccordion/index.tsx +2 -2
- package/themes/original/src/components/ProductOptionSubOption/index.tsx +18 -12
- package/themes/original/src/components/Promotions/index.tsx +250 -0
- package/themes/original/src/components/Promotions/styles.tsx +60 -0
- package/themes/original/src/components/SearchBar/index.tsx +10 -4
- package/themes/original/src/components/Sessions/index.tsx +160 -0
- package/themes/original/src/components/Sessions/styles.tsx +15 -0
- package/themes/original/src/components/SignupForm/index.tsx +79 -6
- package/themes/original/src/components/SingleOrderCard/index.tsx +282 -0
- package/themes/original/src/components/SingleOrderCard/styles.tsx +54 -0
- package/themes/original/src/components/SingleProductCard/index.tsx +59 -17
- package/themes/original/src/components/StripeElementsForm/index.tsx +10 -2
- package/themes/original/src/components/StripeElementsForm/naked.tsx +2 -2
- package/themes/original/src/components/TaxInformation/index.tsx +10 -4
- package/themes/original/src/components/UpsellingProducts/index.tsx +86 -74
- package/themes/original/src/components/UserDetails/index.tsx +5 -96
- package/themes/original/src/components/UserFormDetails/index.tsx +34 -24
- package/themes/original/src/components/UserProfile/index.tsx +59 -5
- package/themes/original/src/components/UserProfileForm/index.tsx +20 -18
- package/themes/original/src/components/UserVerification/index.tsx +178 -192
- package/themes/original/src/components/VerifyPhone/index.tsx +10 -7
- package/themes/original/src/components/VerifyPhone/styles.tsx +2 -1
- package/themes/original/src/components/Wallets/index.tsx +76 -9
- package/themes/original/src/components/Wallets/styles.tsx +21 -0
- package/themes/original/src/components/shared/HeaderTitle.tsx +2 -1
- package/themes/original/src/components/shared/OModal.tsx +4 -2
- package/themes/original/src/config/constants.tsx +6 -6
- package/themes/original/src/types/index.tsx +132 -9
- package/themes/original/src/utils/index.tsx +19 -2
- package/themes/single-business/src/components/AddressList/index.tsx +1 -1
- package/themes/single-business/src/components/OrderTypeSelector/index.tsx +1 -1
- package/themes/single-business/src/components/UserProfile/index.tsx +1 -1
- package/themes/uber-eats/src/components/BusinessesListing/index.tsx +1 -1
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
import React, { useState } from 'react'
|
|
2
|
+
import { PromotionsController, useLanguage, useUtils } from 'ordering-components/native'
|
|
3
|
+
import {
|
|
4
|
+
PromotionsContainer,
|
|
5
|
+
SingleOfferContainer,
|
|
6
|
+
OfferInformation,
|
|
7
|
+
SearchBarContainer,
|
|
8
|
+
SingleBusinessOffer,
|
|
9
|
+
AvailableBusinesses,
|
|
10
|
+
OfferData,
|
|
11
|
+
Code,
|
|
12
|
+
BusinessInfo
|
|
13
|
+
} from './styles'
|
|
14
|
+
import { SearchBar } from '../SearchBar'
|
|
15
|
+
import NavBar from '../NavBar'
|
|
16
|
+
import { useTheme } from 'styled-components/native';
|
|
17
|
+
import { OButton, OIcon, OModal, OText } from '../shared'
|
|
18
|
+
import { Placeholder, PlaceholderLine } from 'rn-placeholder'
|
|
19
|
+
import { NotFoundSource } from '../NotFoundSource'
|
|
20
|
+
import { View, StyleSheet, ScrollView, Platform, RefreshControl } from 'react-native'
|
|
21
|
+
import FastImage from 'react-native-fast-image'
|
|
22
|
+
import { PromotionParams } from '../../types'
|
|
23
|
+
import { Container } from '../../layouts/Container'
|
|
24
|
+
|
|
25
|
+
const PromotionsUI = (props: PromotionParams) => {
|
|
26
|
+
const {
|
|
27
|
+
navigation,
|
|
28
|
+
offersState,
|
|
29
|
+
handleSearchValue,
|
|
30
|
+
searchValue,
|
|
31
|
+
loadOffers,
|
|
32
|
+
offerSelected,
|
|
33
|
+
setOfferSelected
|
|
34
|
+
} = props
|
|
35
|
+
|
|
36
|
+
const theme = useTheme();
|
|
37
|
+
|
|
38
|
+
const styles = StyleSheet.create({
|
|
39
|
+
productStyle: {
|
|
40
|
+
width: 75,
|
|
41
|
+
height: 75,
|
|
42
|
+
borderRadius: 7.6
|
|
43
|
+
},
|
|
44
|
+
buttonStyle: {
|
|
45
|
+
width: 55,
|
|
46
|
+
height: 25,
|
|
47
|
+
paddingLeft: 0,
|
|
48
|
+
paddingRight: 0
|
|
49
|
+
},
|
|
50
|
+
offerTitle: {
|
|
51
|
+
fontSize: 12
|
|
52
|
+
},
|
|
53
|
+
offerDescription: {
|
|
54
|
+
color: '#909BA9',
|
|
55
|
+
fontSize: 10
|
|
56
|
+
},
|
|
57
|
+
offerExtraInfo: {
|
|
58
|
+
fontSize: 10
|
|
59
|
+
},
|
|
60
|
+
modalButtonStyle: {
|
|
61
|
+
width: 100,
|
|
62
|
+
height: 35,
|
|
63
|
+
paddingLeft: 0,
|
|
64
|
+
paddingRight: 0,
|
|
65
|
+
borderRadius: 7.6
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
const [, t] = useLanguage()
|
|
70
|
+
const [{ parseDate, parsePrice, optimizeImage }] = useUtils()
|
|
71
|
+
const [openModal, setOpenModal] = useState(false)
|
|
72
|
+
const [refreshing] = useState(false);
|
|
73
|
+
|
|
74
|
+
const handleClickOffer = (offer: any) => {
|
|
75
|
+
setOpenModal(true)
|
|
76
|
+
setOfferSelected(offer)
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
const handleBusinessClick = (store: any) => {
|
|
80
|
+
setOpenModal(false)
|
|
81
|
+
navigation.navigate('Business', { store: store.slug })
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
const handleOnRefresh = () => {
|
|
85
|
+
if (!offersState.loading) {
|
|
86
|
+
loadOffers();
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
const filteredOffers = offersState?.offers?.filter((offer: any) => offer.name.toLowerCase().includes(searchValue.toLowerCase()))
|
|
91
|
+
const targetString = offerSelected?.target === 1
|
|
92
|
+
? t('SUBTOTAL', 'Subtotal')
|
|
93
|
+
: offerSelected?.target === 2
|
|
94
|
+
? t('DELIVERY_FEE', 'Delivery fee')
|
|
95
|
+
: t('SERVICE_FEE', 'Service fee')
|
|
96
|
+
|
|
97
|
+
return (
|
|
98
|
+
<Container
|
|
99
|
+
noPadding
|
|
100
|
+
refreshControl={
|
|
101
|
+
<RefreshControl
|
|
102
|
+
refreshing={refreshing}
|
|
103
|
+
onRefresh={() => handleOnRefresh()}
|
|
104
|
+
/>
|
|
105
|
+
}
|
|
106
|
+
>
|
|
107
|
+
<NavBar
|
|
108
|
+
title={t('PROMOTIONS', 'Promotions')}
|
|
109
|
+
titleAlign={'center'}
|
|
110
|
+
onActionLeft={() => navigation.goBack()}
|
|
111
|
+
showCall={false}
|
|
112
|
+
style={{ paddingVertical: Platform.OS === 'ios' ? 0 : 20, marginLeft: 20 }}
|
|
113
|
+
/>
|
|
114
|
+
<PromotionsContainer>
|
|
115
|
+
<SearchBarContainer>
|
|
116
|
+
<SearchBar
|
|
117
|
+
placeholder={t('SEARCH_OFFERS', 'Search offers')}
|
|
118
|
+
onSearch={handleSearchValue}
|
|
119
|
+
/>
|
|
120
|
+
</SearchBarContainer>
|
|
121
|
+
|
|
122
|
+
{offersState?.loading && (
|
|
123
|
+
<>
|
|
124
|
+
{[...Array(5).keys()].map((key, i) => (
|
|
125
|
+
<Placeholder key={i} style={{ flexDirection: 'row', marginBottom: 20 }}>
|
|
126
|
+
<PlaceholderLine height={10} width={45} />
|
|
127
|
+
<PlaceholderLine height={10} width={60} />
|
|
128
|
+
<PlaceholderLine height={10} width={75} />
|
|
129
|
+
</Placeholder>
|
|
130
|
+
))}
|
|
131
|
+
</>
|
|
132
|
+
)}
|
|
133
|
+
{((!offersState?.loading && filteredOffers?.length === 0) || offersState?.error) && (
|
|
134
|
+
<NotFoundSource
|
|
135
|
+
content={offersState?.error || t('NOT_FOUND_OFFERS', 'Not found offers')}
|
|
136
|
+
/>
|
|
137
|
+
)}
|
|
138
|
+
<ScrollView>
|
|
139
|
+
{!offersState?.loading && offersState.offers?.length > 0 && filteredOffers?.map((offer: any) => (
|
|
140
|
+
<SingleOfferContainer key={offer.id}>
|
|
141
|
+
<OfferInformation>
|
|
142
|
+
<OText style={styles.offerTitle} numberOfLines={2}>{offer?.name}</OText>
|
|
143
|
+
{!!offer?.description && (
|
|
144
|
+
<OText style={styles.offerDescription} numberOfLines={2}>{offer?.description}</OText>
|
|
145
|
+
)}
|
|
146
|
+
<OText style={styles.offerExtraInfo}>
|
|
147
|
+
{t('EXPIRES', 'Expires')} {parseDate(offer?.end, { outputFormat: 'MMM DD, YYYY' })}
|
|
148
|
+
</OText>
|
|
149
|
+
<AvailableBusinesses>
|
|
150
|
+
<OText style={styles.offerExtraInfo} numberOfLines={1}>
|
|
151
|
+
{t('APPLY_FOR', 'Apply for')}:
|
|
152
|
+
{offer.businesses.map((business: any, i: number) => (
|
|
153
|
+
<React.Fragment key={i}>{' '}{business?.name}{i + 1 < offer.businesses?.length ? ',' : ''}</React.Fragment>
|
|
154
|
+
))}
|
|
155
|
+
</OText>
|
|
156
|
+
</AvailableBusinesses>
|
|
157
|
+
</OfferInformation>
|
|
158
|
+
<OButton
|
|
159
|
+
onClick={() => handleClickOffer(offer)}
|
|
160
|
+
text={t('VIEW', 'View')}
|
|
161
|
+
style={styles.buttonStyle}
|
|
162
|
+
textStyle={{ fontSize: 10, color: '#fff', flexWrap: 'nowrap' }}
|
|
163
|
+
/>
|
|
164
|
+
</SingleOfferContainer>
|
|
165
|
+
))}
|
|
166
|
+
</ScrollView>
|
|
167
|
+
<OModal
|
|
168
|
+
open={openModal}
|
|
169
|
+
onClose={() => setOpenModal(false)}
|
|
170
|
+
entireModal
|
|
171
|
+
|
|
172
|
+
title={``}
|
|
173
|
+
>
|
|
174
|
+
<View style={{ padding: 20 }}>
|
|
175
|
+
<OText style={{ alignSelf: 'center', fontWeight: '700' }} mBottom={20}>
|
|
176
|
+
{offerSelected?.name} / {t('VALUE_OF_OFFER', 'Value of offer')}: {offerSelected?.rate_type === 1 ? `${offerSelected?.rate}%` : `${parsePrice(offerSelected?.rate)}`}
|
|
177
|
+
</OText>
|
|
178
|
+
<OfferData>
|
|
179
|
+
{offerSelected?.type === 2 && (
|
|
180
|
+
<Code>
|
|
181
|
+
<OText>{t('YOUR_CODE', 'Your code')}</OText>
|
|
182
|
+
<OText color={theme.colors.primary}>{offerSelected.coupon}</OText>
|
|
183
|
+
</Code>
|
|
184
|
+
)}
|
|
185
|
+
<OText>{t('APPLIES_TO', 'Applies to')}: {targetString}</OText>
|
|
186
|
+
{offerSelected?.auto && (
|
|
187
|
+
<OText>{t('OFFER_AUTOMATIC', 'This offer applies automatic')}</OText>
|
|
188
|
+
)}
|
|
189
|
+
{!!offerSelected?.minimum && (
|
|
190
|
+
<OText>{t('MINIMUM_PURCHASE_FOR_OFFER', 'Minimum purchase for use this offer')}: {parsePrice(offerSelected?.minimum)}</OText>
|
|
191
|
+
)}
|
|
192
|
+
{!!offerSelected?.max_discount && (
|
|
193
|
+
<OText>{t('MAX_DISCOUNT_ALLOWED', 'Max discount allowed')}: {parsePrice(offerSelected?.max_discount)}</OText>
|
|
194
|
+
)}
|
|
195
|
+
{!!offerSelected?.description && (
|
|
196
|
+
<OText>{offerSelected?.description}</OText>
|
|
197
|
+
)}
|
|
198
|
+
</OfferData>
|
|
199
|
+
<OText style={{ marginTop: 10, marginBottom: 10 }}>
|
|
200
|
+
{t('AVAILABLE_BUSINESSES_FOR_OFFER', 'Available businesses for this offer')}:
|
|
201
|
+
</OText>
|
|
202
|
+
<ScrollView style={{ height: '75%' }}>
|
|
203
|
+
{offerSelected?.businesses?.map((business: any) => {
|
|
204
|
+
return (
|
|
205
|
+
<SingleBusinessOffer key={business.id}>
|
|
206
|
+
{business?.logo ? (
|
|
207
|
+
<FastImage
|
|
208
|
+
style={styles.productStyle}
|
|
209
|
+
source={{
|
|
210
|
+
uri: optimizeImage(business?.logo, 'h_250,c_limit'),
|
|
211
|
+
priority: FastImage.priority.normal,
|
|
212
|
+
}}
|
|
213
|
+
resizeMode={FastImage.resizeMode.cover}
|
|
214
|
+
/>
|
|
215
|
+
) : (
|
|
216
|
+
<OIcon
|
|
217
|
+
src={theme?.images?.dummies?.product}
|
|
218
|
+
style={styles.productStyle}
|
|
219
|
+
/>
|
|
220
|
+
)}
|
|
221
|
+
<BusinessInfo>
|
|
222
|
+
<OText style={{ maxWidth: '60%' }}>{business.name}</OText>
|
|
223
|
+
<OButton
|
|
224
|
+
onClick={() => handleBusinessClick(business)}
|
|
225
|
+
text={t('GO_TO_BUSINESSS', 'Go to business')}
|
|
226
|
+
style={styles.modalButtonStyle}
|
|
227
|
+
textStyle={{ fontSize: 10, color: '#fff' }}
|
|
228
|
+
/>
|
|
229
|
+
</BusinessInfo>
|
|
230
|
+
</SingleBusinessOffer>
|
|
231
|
+
)
|
|
232
|
+
})}
|
|
233
|
+
</ScrollView>
|
|
234
|
+
</View>
|
|
235
|
+
</OModal>
|
|
236
|
+
</PromotionsContainer>
|
|
237
|
+
</Container>
|
|
238
|
+
)
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export const Promotions = (props: PromotionParams) => {
|
|
242
|
+
const PromotionsProps = {
|
|
243
|
+
...props,
|
|
244
|
+
UIComponent: PromotionsUI
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
return (
|
|
248
|
+
<PromotionsController {...PromotionsProps} />
|
|
249
|
+
)
|
|
250
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import styled, { css } from 'styled-components/native'
|
|
2
|
+
|
|
3
|
+
export const PromotionsContainer = styled.View`
|
|
4
|
+
width: 100%;
|
|
5
|
+
padding-left: 40px;
|
|
6
|
+
padding-right: 40px;
|
|
7
|
+
`
|
|
8
|
+
|
|
9
|
+
export const SingleOfferContainer = styled.View`
|
|
10
|
+
flex-direction: row;
|
|
11
|
+
width: 100%;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
align-items: center;
|
|
14
|
+
margin-bottom: 20px;
|
|
15
|
+
|
|
16
|
+
`
|
|
17
|
+
|
|
18
|
+
export const OfferInformation = styled.View`
|
|
19
|
+
justify-content: space-between;
|
|
20
|
+
max-width: 75%;
|
|
21
|
+
`
|
|
22
|
+
|
|
23
|
+
export const SearchBarContainer = styled.View`
|
|
24
|
+
display: flex;
|
|
25
|
+
width: 100%;
|
|
26
|
+
justify-content: flex-start;
|
|
27
|
+
margin-bottom: 20px;
|
|
28
|
+
`
|
|
29
|
+
|
|
30
|
+
export const SingleBusinessOffer = styled.View`
|
|
31
|
+
flex-direction: row;
|
|
32
|
+
`
|
|
33
|
+
|
|
34
|
+
export const AvailableBusinesses = styled.View`
|
|
35
|
+
flex-direction: row;
|
|
36
|
+
overflow: hidden;
|
|
37
|
+
`
|
|
38
|
+
|
|
39
|
+
export const OfferData = styled.View`
|
|
40
|
+
display: flex;
|
|
41
|
+
align-items: center;
|
|
42
|
+
flex-direction: column;
|
|
43
|
+
`
|
|
44
|
+
|
|
45
|
+
export const Code = styled.View`
|
|
46
|
+
display: flex;
|
|
47
|
+
flex-direction: column;
|
|
48
|
+
align-items: center;
|
|
49
|
+
margin-bottom: 10px;
|
|
50
|
+
`
|
|
51
|
+
|
|
52
|
+
export const ValueOfOffer = styled.View``
|
|
53
|
+
|
|
54
|
+
export const BusinessInfo = styled.View`
|
|
55
|
+
flex: 1;
|
|
56
|
+
flex-direction: row;
|
|
57
|
+
justify-content: space-between;
|
|
58
|
+
align-items: center;
|
|
59
|
+
margin-left: 10px;
|
|
60
|
+
`
|
|
@@ -20,7 +20,12 @@ export const SearchBar = (props: any) => {
|
|
|
20
20
|
inputStyle,
|
|
21
21
|
onPress,
|
|
22
22
|
isDisabled,
|
|
23
|
-
iconCustomRight
|
|
23
|
+
iconCustomRight,
|
|
24
|
+
onSubmitEditing,
|
|
25
|
+
blurOnSubmit,
|
|
26
|
+
inputContainerStyles,
|
|
27
|
+
containerStyles,
|
|
28
|
+
hideIcon
|
|
24
29
|
} = props
|
|
25
30
|
|
|
26
31
|
const theme = useTheme();
|
|
@@ -75,19 +80,20 @@ export const SearchBar = (props: any) => {
|
|
|
75
80
|
}
|
|
76
81
|
|
|
77
82
|
return (
|
|
78
|
-
<Pressable style={[styles.container, { height: height }]}>
|
|
83
|
+
<Pressable style={[styles.container, containerStyles, { height: height }]}>
|
|
79
84
|
<OInput
|
|
80
85
|
value={searchValue}
|
|
81
86
|
onChange={onChangeSearch}
|
|
82
|
-
style={styles.inputStyle}
|
|
87
|
+
style={{...styles.inputStyle, ...inputContainerStyles}}
|
|
83
88
|
placeholder={placeholder}
|
|
84
|
-
icon={theme.images.general.search}
|
|
89
|
+
icon={!hideIcon && theme.images.general.search}
|
|
85
90
|
isDisabled={isDisabled}
|
|
86
91
|
iconStyle={{ width: 12 }}
|
|
87
92
|
returnKeyType='done'
|
|
88
93
|
inputStyle={{padding: 0, paddingTop: Platform.OS == 'android' ? 2 : 0, ...inputStyle}}
|
|
89
94
|
onPress={() => onPress && onPress()}
|
|
90
95
|
iconCustomRight={iconCustomRight}
|
|
96
|
+
onSubmitEditing={() => onSubmitEditing && onSubmitEditing()}
|
|
91
97
|
/>
|
|
92
98
|
{isCancelButtonShow && (
|
|
93
99
|
<OButton
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import React, { useState } from 'react'
|
|
2
|
+
import { View, TouchableOpacity } from 'react-native'
|
|
3
|
+
import { useLanguage, useSession, useUtils, Sessions as SessionsController } from 'ordering-components/native'
|
|
4
|
+
import NavBar from '../NavBar'
|
|
5
|
+
import { SessionsParams } from '../../types'
|
|
6
|
+
import { OAlert } from '../../../../../src/components/shared'
|
|
7
|
+
import { OButton, OIcon, OText } from '../shared'
|
|
8
|
+
import { useTheme } from 'styled-components/native'
|
|
9
|
+
import { Fade, Placeholder, PlaceholderLine } from 'rn-placeholder'
|
|
10
|
+
import AntIcon from 'react-native-vector-icons/AntDesign'
|
|
11
|
+
|
|
12
|
+
import {
|
|
13
|
+
SessionsWrapper,
|
|
14
|
+
SessionItem,
|
|
15
|
+
DurationWrapper
|
|
16
|
+
} from './styles'
|
|
17
|
+
|
|
18
|
+
export const SessionsUI = (props: SessionsParams) => {
|
|
19
|
+
const {
|
|
20
|
+
navigation,
|
|
21
|
+
sessionsList,
|
|
22
|
+
actionState,
|
|
23
|
+
handleDeleteSession,
|
|
24
|
+
handleDeleteAllSessions
|
|
25
|
+
} = props
|
|
26
|
+
|
|
27
|
+
const [, t] = useLanguage()
|
|
28
|
+
const [{ user }] = useSession()
|
|
29
|
+
const [{ parseDate }] = useUtils()
|
|
30
|
+
const theme = useTheme()
|
|
31
|
+
const [confirm, setConfirm] = useState<any>({ open: false, content: null, handleOnAccept: null, id: null, title: null })
|
|
32
|
+
const goToBack = () => navigation?.canGoBack() && navigation.goBack()
|
|
33
|
+
|
|
34
|
+
const onDeleteSession = (session: any) => {
|
|
35
|
+
setConfirm({
|
|
36
|
+
open: true,
|
|
37
|
+
title: t('WEB_APPNAME', 'Ordering'),
|
|
38
|
+
content: [t('QUESTION_DELETE_SESSION', 'Are you sure to delete this session?')],
|
|
39
|
+
handleOnAccept: () => {
|
|
40
|
+
handleDeleteSession(session)
|
|
41
|
+
setConfirm({ ...confirm, open: false })
|
|
42
|
+
}
|
|
43
|
+
})
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const onDeleteAllSessions = (isOldUser: any, deleteCurrent: any) => {
|
|
47
|
+
setConfirm({
|
|
48
|
+
open: true,
|
|
49
|
+
title: t('WEB_APPNAME', 'Ordering'),
|
|
50
|
+
content:
|
|
51
|
+
isOldUser
|
|
52
|
+
? [t('QUESTION_ENABLE_ALL_SESSIONS', 'Are you sure to enable all sessions?')]
|
|
53
|
+
: deleteCurrent
|
|
54
|
+
? [t('QUESTION_DELETE_ALL_SESSIONS', 'Are you sure that you want to delete all sessions?')]
|
|
55
|
+
: [t('QUESTION_DELETE_ALL_SESSIONS_EXCEPT_CURRENT', 'Are you sure that you want to delete all sessions except current?')],
|
|
56
|
+
handleOnAccept: () => {
|
|
57
|
+
handleDeleteAllSessions(deleteCurrent)
|
|
58
|
+
setConfirm({ ...confirm, open: false })
|
|
59
|
+
}
|
|
60
|
+
})
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
return (
|
|
64
|
+
<>
|
|
65
|
+
<NavBar
|
|
66
|
+
title={t('SESSIONS', 'Sessions')}
|
|
67
|
+
titleAlign={'center'}
|
|
68
|
+
onActionLeft={goToBack}
|
|
69
|
+
showCall={false}
|
|
70
|
+
paddingTop={10}
|
|
71
|
+
btnStyle={{ paddingLeft: 0 }}
|
|
72
|
+
/>
|
|
73
|
+
{user?.session_strategy === 'jwt_session' ? (
|
|
74
|
+
<>
|
|
75
|
+
{sessionsList.loading ? (
|
|
76
|
+
[...Array(5).keys()].map(i => (
|
|
77
|
+
<SessionItem key={i}>
|
|
78
|
+
<Placeholder Animation={Fade}>
|
|
79
|
+
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
80
|
+
<View style={{ flex: 1}}>
|
|
81
|
+
<PlaceholderLine width={40} />
|
|
82
|
+
<PlaceholderLine width={40} />
|
|
83
|
+
</View>
|
|
84
|
+
<PlaceholderLine width={5}/>
|
|
85
|
+
</View>
|
|
86
|
+
</Placeholder>
|
|
87
|
+
</SessionItem>
|
|
88
|
+
))
|
|
89
|
+
) : (
|
|
90
|
+
sessionsList.sessions.length > 0 ? (
|
|
91
|
+
<SessionsWrapper>
|
|
92
|
+
{sessionsList.sessions.map((session: any) => (
|
|
93
|
+
<SessionItem key={session.id}>
|
|
94
|
+
<DurationWrapper>
|
|
95
|
+
<OText>{parseDate(session.created_at)}</OText>
|
|
96
|
+
<OText>{parseDate(session.valid_thru)}</OText>
|
|
97
|
+
</DurationWrapper>
|
|
98
|
+
{session.current && (
|
|
99
|
+
<OText mLeft={15} style={{ flex: 1 }}>({t('CURRENT', 'Current')})</OText>
|
|
100
|
+
)}
|
|
101
|
+
<TouchableOpacity
|
|
102
|
+
onPress={() => onDeleteSession(session)}
|
|
103
|
+
>
|
|
104
|
+
<AntIcon name='close' size={16} color={theme.colors.red} />
|
|
105
|
+
</TouchableOpacity>
|
|
106
|
+
</SessionItem>
|
|
107
|
+
))}
|
|
108
|
+
<OButton
|
|
109
|
+
text={t('DELETE_ALL_SESSIONS', 'Delete all sessions')}
|
|
110
|
+
isDisabled={actionState.loading}
|
|
111
|
+
textStyle={{ color: theme.colors.white, fontSize: 14 }}
|
|
112
|
+
onClick={() => onDeleteAllSessions(false, true)}
|
|
113
|
+
style={{ borderRadius: 7.6, marginTop: 30 }}
|
|
114
|
+
/>
|
|
115
|
+
<OButton
|
|
116
|
+
text={t('DELETE_ALL_SESSIONS_EXCEPT_CURRENT', 'Delete all sessions except current')}
|
|
117
|
+
isDisabled={actionState.loading}
|
|
118
|
+
textStyle={{ color: theme.colors.white, fontSize: 14 }}
|
|
119
|
+
onClick={() => onDeleteAllSessions(false, false)}
|
|
120
|
+
style={{ borderRadius: 7.6, marginTop: 20 }}
|
|
121
|
+
/>
|
|
122
|
+
</SessionsWrapper>
|
|
123
|
+
) : (
|
|
124
|
+
<OText>{t('YOU_DONT_HAVE_ANY_SESSIONS', 'You don\'t have any sessions')}</OText>
|
|
125
|
+
)
|
|
126
|
+
)}
|
|
127
|
+
</>
|
|
128
|
+
) : (
|
|
129
|
+
<View>
|
|
130
|
+
<OText>
|
|
131
|
+
{t('YOU_DONT_HAVE_ENABLED_THE_SESSIONS', 'You don\'t have enabled the sessions, please active them to have a better control of your sessions.')}
|
|
132
|
+
</OText>
|
|
133
|
+
<OButton
|
|
134
|
+
text={t('ACTIVE_SESSIONS', 'Active sessions')}
|
|
135
|
+
isDisabled={actionState.loading}
|
|
136
|
+
textStyle={{ color: theme.colors.white, fontSize: 14 }}
|
|
137
|
+
onClick={() => onDeleteAllSessions(true, false)}
|
|
138
|
+
style={{ borderRadius: 7.6, marginTop: 20 }}
|
|
139
|
+
/>
|
|
140
|
+
</View>
|
|
141
|
+
)}
|
|
142
|
+
<OAlert
|
|
143
|
+
open={confirm.open}
|
|
144
|
+
title={confirm.title}
|
|
145
|
+
content={confirm.content}
|
|
146
|
+
onAccept={confirm.handleOnAccept}
|
|
147
|
+
onCancel={() => setConfirm({ ...confirm, open: false, title: null })}
|
|
148
|
+
onClose={() => setConfirm({ ...confirm, open: false, title: null })}
|
|
149
|
+
/>
|
|
150
|
+
</>
|
|
151
|
+
)
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export const Sessions = (props: SessionsParams) => {
|
|
155
|
+
const sessionsProps = {
|
|
156
|
+
...props,
|
|
157
|
+
UIComponent: SessionsUI
|
|
158
|
+
}
|
|
159
|
+
return <SessionsController {...sessionsProps} />
|
|
160
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import styled from 'styled-components/native'
|
|
2
|
+
|
|
3
|
+
export const SessionsWrapper = styled.View`
|
|
4
|
+
`
|
|
5
|
+
export const SessionItem = styled.View`
|
|
6
|
+
flex-direction: row;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: space-between;
|
|
9
|
+
padding-vertical: 15px;
|
|
10
|
+
border-bottom-color: ${(props: any) => props.theme.colors.lightGray};
|
|
11
|
+
border-bottom-width: 1px;
|
|
12
|
+
`
|
|
13
|
+
export const DurationWrapper = styled.View`
|
|
14
|
+
/* flex-direction: row; */
|
|
15
|
+
`
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import React, { useEffect, useRef, useState } from 'react';
|
|
2
|
-
import { View, Pressable, StyleSheet, Linking, Platform } from 'react-native';
|
|
2
|
+
import { View, Pressable, StyleSheet, Linking, Platform, TouchableOpacity } from 'react-native';
|
|
3
3
|
import { useForm, Controller } from 'react-hook-form';
|
|
4
4
|
import Spinner from 'react-native-loading-spinner-overlay';
|
|
5
5
|
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
|
|
6
6
|
import CheckBox from '@react-native-community/checkbox';
|
|
7
7
|
import { PhoneInputNumber } from '../PhoneInputNumber';
|
|
8
8
|
import { FacebookLogin } from '../FacebookLogin';
|
|
9
|
+
import Recaptcha from 'react-native-recaptcha-that-works'
|
|
9
10
|
|
|
10
11
|
import {
|
|
11
12
|
SignupForm as SignUpController,
|
|
@@ -23,6 +24,7 @@ import {
|
|
|
23
24
|
LoginWith as SignupWith,
|
|
24
25
|
OTab,
|
|
25
26
|
OTabs,
|
|
27
|
+
RecaptchaButton
|
|
26
28
|
} from '../LoginForm/styles';
|
|
27
29
|
|
|
28
30
|
import NavBar from '../NavBar';
|
|
@@ -63,7 +65,9 @@ const SignupFormUI = (props: SignupParams) => {
|
|
|
63
65
|
handleSendVerifyCode,
|
|
64
66
|
handleCheckPhoneCode,
|
|
65
67
|
notificationState,
|
|
66
|
-
handleChangePromotions
|
|
68
|
+
handleChangePromotions,
|
|
69
|
+
enableReCaptcha,
|
|
70
|
+
handleReCaptcha
|
|
67
71
|
} = props;
|
|
68
72
|
|
|
69
73
|
const theme = useTheme();
|
|
@@ -117,6 +121,8 @@ const SignupFormUI = (props: SignupParams) => {
|
|
|
117
121
|
cellphone: null,
|
|
118
122
|
},
|
|
119
123
|
});
|
|
124
|
+
const [recaptchaConfig, setRecaptchaConfig] = useState<any>({})
|
|
125
|
+
const [recaptchaVerified, setRecaptchaVerified] = useState(false)
|
|
120
126
|
|
|
121
127
|
const nameRef = useRef<any>(null);
|
|
122
128
|
const lastnameRef = useRef<any>(null);
|
|
@@ -125,8 +131,12 @@ const SignupFormUI = (props: SignupParams) => {
|
|
|
125
131
|
const emailRef = useRef<any>(null);
|
|
126
132
|
const phoneRef = useRef<any>(null);
|
|
127
133
|
const passwordRef = useRef<any>(null);
|
|
134
|
+
const recaptchaRef = useRef<any>({});
|
|
128
135
|
|
|
129
|
-
|
|
136
|
+
const showInputPhoneNumber = (validationFields?.fields?.checkout?.cellphone?.enabled ?? false) || configs?.verification_phone_required?.value === '1'
|
|
137
|
+
const googleLoginEnabled = configs?.google_login_enabled?.value === '1' || !configs?.google_login_enabled?.enabled
|
|
138
|
+
const facebookLoginEnabled = configs?.facebook_login_enabled?.value === '1' || !configs?.facebook_login_enabled?.enabled
|
|
139
|
+
const appleLoginEnabled = configs?.apple_login_enabled?.value === '1' || !configs?.apple_login_enabled?.enabled
|
|
130
140
|
|
|
131
141
|
const handleRefs = (ref: any, code: string) => {
|
|
132
142
|
switch (code) {
|
|
@@ -286,6 +296,33 @@ const SignupFormUI = (props: SignupParams) => {
|
|
|
286
296
|
}
|
|
287
297
|
}
|
|
288
298
|
|
|
299
|
+
const handleOpenRecaptcha = () => {
|
|
300
|
+
setRecaptchaVerified(false)
|
|
301
|
+
if (!recaptchaConfig?.siteKey) {
|
|
302
|
+
showToast(ToastType.Error, t('NO_RECAPTCHA_SITE_KEY', 'The config doesn\'t have recaptcha site key'));
|
|
303
|
+
return
|
|
304
|
+
}
|
|
305
|
+
if (!recaptchaConfig?.baseUrl) {
|
|
306
|
+
showToast(ToastType.Error, t('NO_RECAPTCHA_BASE_URL', 'The config doesn\'t have recaptcha base url'));
|
|
307
|
+
return
|
|
308
|
+
}
|
|
309
|
+
recaptchaRef.current.open()
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
const onRecaptchaVerify = (token: any) => {
|
|
313
|
+
setRecaptchaVerified(true)
|
|
314
|
+
handleReCaptcha(token)
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
useEffect(() => {
|
|
318
|
+
if (configs && Object.keys(configs).length > 0 && enableReCaptcha) {
|
|
319
|
+
setRecaptchaConfig({
|
|
320
|
+
siteKey: configs?.security_recaptcha_site_key?.value || null,
|
|
321
|
+
baseUrl: configs?.security_recaptcha_base_url?.value || null
|
|
322
|
+
})
|
|
323
|
+
}
|
|
324
|
+
}, [configs, enableReCaptcha])
|
|
325
|
+
|
|
289
326
|
useEffect(() => {
|
|
290
327
|
if (!formState.loading && formState.result?.error) {
|
|
291
328
|
formState.result?.result &&
|
|
@@ -467,6 +504,39 @@ const SignupFormUI = (props: SignupParams) => {
|
|
|
467
504
|
</View>
|
|
468
505
|
)}
|
|
469
506
|
|
|
507
|
+
{enableReCaptcha && (
|
|
508
|
+
<>
|
|
509
|
+
<TouchableOpacity
|
|
510
|
+
onPress={handleOpenRecaptcha}
|
|
511
|
+
style={{ marginHorizontal: 4, marginBottom: 10 }}
|
|
512
|
+
>
|
|
513
|
+
<RecaptchaButton>
|
|
514
|
+
{recaptchaVerified ? (
|
|
515
|
+
<MaterialCommunityIcons
|
|
516
|
+
name="checkbox-marked"
|
|
517
|
+
size={23}
|
|
518
|
+
color={theme.colors.primary}
|
|
519
|
+
/>
|
|
520
|
+
) : (
|
|
521
|
+
<MaterialCommunityIcons
|
|
522
|
+
name="checkbox-blank-outline"
|
|
523
|
+
size={23}
|
|
524
|
+
color={theme.colors.disabled}
|
|
525
|
+
/>
|
|
526
|
+
)}
|
|
527
|
+
<OText size={14} mLeft={8}>{t('VERIFY_ReCAPTCHA', 'Verify reCAPTCHA')}</OText>
|
|
528
|
+
</RecaptchaButton>
|
|
529
|
+
</TouchableOpacity>
|
|
530
|
+
<Recaptcha
|
|
531
|
+
ref={recaptchaRef}
|
|
532
|
+
siteKey={recaptchaConfig?.siteKey}
|
|
533
|
+
baseUrl={recaptchaConfig?.baseUrl}
|
|
534
|
+
onVerify={onRecaptchaVerify}
|
|
535
|
+
onExpire={() => setRecaptchaVerified(false)}
|
|
536
|
+
/>
|
|
537
|
+
</>
|
|
538
|
+
)}
|
|
539
|
+
|
|
470
540
|
<View style={{ flexDirection: 'row', alignItems: 'center', marginBottom: 20 }}>
|
|
471
541
|
<Controller
|
|
472
542
|
control={control}
|
|
@@ -684,7 +754,9 @@ const SignupFormUI = (props: SignupParams) => {
|
|
|
684
754
|
<ButtonsWrapper>
|
|
685
755
|
<SocialButtons>
|
|
686
756
|
{(configs?.facebook_login?.value === 'true' || configs?.facebook_login?.value === '1') &&
|
|
687
|
-
configs?.facebook_id?.value &&
|
|
757
|
+
configs?.facebook_id?.value &&
|
|
758
|
+
facebookLoginEnabled &&
|
|
759
|
+
(
|
|
688
760
|
<FacebookLogin
|
|
689
761
|
notificationState={notificationState}
|
|
690
762
|
handleErrors={(err: any) => showToast(ToastType.Error, err)}
|
|
@@ -692,7 +764,7 @@ const SignupFormUI = (props: SignupParams) => {
|
|
|
692
764
|
handleSuccessFacebookLogin={handleSuccessFacebook}
|
|
693
765
|
/>
|
|
694
766
|
)}
|
|
695
|
-
{(configs?.google_login_client_id?.value !== '' && configs?.google_login_client_id?.value !== null) && (
|
|
767
|
+
{(configs?.google_login_client_id?.value !== '' && configs?.google_login_client_id?.value !== null) && googleLoginEnabled && (
|
|
696
768
|
<GoogleLogin
|
|
697
769
|
notificationState={notificationState}
|
|
698
770
|
webClientId={configs?.google_login_client_id?.value}
|
|
@@ -701,7 +773,7 @@ const SignupFormUI = (props: SignupParams) => {
|
|
|
701
773
|
handleSuccessGoogleLogin={handleSuccessFacebook}
|
|
702
774
|
/>
|
|
703
775
|
)}
|
|
704
|
-
{(configs?.apple_login_client_id?.value !== '' && configs?.apple_login_client_id?.value !== null) && (
|
|
776
|
+
{(configs?.apple_login_client_id?.value !== '' && configs?.apple_login_client_id?.value !== null) && appleLoginEnabled && (
|
|
705
777
|
<AppleLogin
|
|
706
778
|
notificationState={notificationState}
|
|
707
779
|
handleErrors={(err: any) => showToast(ToastType.Error, err)}
|
|
@@ -736,6 +808,7 @@ const SignupFormUI = (props: SignupParams) => {
|
|
|
736
808
|
export const SignupForm = (props: any) => {
|
|
737
809
|
const signupProps = {
|
|
738
810
|
...props,
|
|
811
|
+
isRecaptchaEnable: true,
|
|
739
812
|
UIComponent: SignupFormUI,
|
|
740
813
|
};
|
|
741
814
|
return <SignUpController {...signupProps} />;
|