ordering-ui-react-native 0.17.97 → 0.17.98-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 +9 -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 +0 -20
- 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 +3 -2
- package/src/types/index.tsx +5 -0
- package/src/utils/index.tsx +7 -2
- package/themes/business/index.tsx +2 -0
- package/themes/business/src/components/AcceptOrRejectOrder/index.tsx +36 -26
- package/themes/business/src/components/BusinessController/index.tsx +0 -1
- package/themes/business/src/components/Chat/index.tsx +163 -123
- package/themes/business/src/components/DriverMap/index.tsx +17 -6
- package/themes/business/src/components/DriverSchedule/index.tsx +45 -8
- package/themes/business/src/components/FloatingButton/index.tsx +34 -31
- package/themes/business/src/components/GoogleMap/index.tsx +58 -57
- package/themes/business/src/components/LoginForm/index.tsx +5 -2
- package/themes/business/src/components/MapView/index.tsx +14 -10
- package/themes/business/src/components/MessagesOption/index.tsx +22 -94
- package/themes/business/src/components/NewOrderNotification/index.tsx +123 -96
- 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 +209 -15
- package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +84 -37
- package/themes/business/src/components/OrderDetails/OrderHeaderComponent.tsx +87 -66
- package/themes/business/src/components/OrderDetailsLogistic/index.tsx +200 -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/OrdersListManager/index.tsx +7 -2
- package/themes/business/src/components/OrdersListManager/utils.tsx +1 -1
- package/themes/business/src/components/OrdersOption/index.tsx +60 -47
- package/themes/business/src/components/PreviousMessages/FooterMessageComponent.tsx +103 -0
- package/themes/business/src/components/PreviousMessages/index.tsx +97 -55
- package/themes/business/src/components/PreviousOrders/OrderItem.tsx +21 -29
- package/themes/business/src/components/PreviousOrders/OrderList.tsx +93 -0
- package/themes/business/src/components/PreviousOrders/OrdersGroupedItem.tsx +1 -1
- package/themes/business/src/components/PreviousOrders/index.tsx +198 -221
- package/themes/business/src/components/PreviousOrders/styles.tsx +10 -0
- package/themes/business/src/components/ProductItemAccordion/index.tsx +7 -1
- package/themes/business/src/components/ReviewCustomer/index.tsx +18 -13
- package/themes/business/src/components/StoresList/index.tsx +3 -4
- package/themes/business/src/components/UserProfileForm/index.tsx +14 -15
- package/themes/business/src/components/WebsocketStatus/index.tsx +171 -0
- package/themes/business/src/components/WebsocketStatus/styles.tsx +28 -0
- package/themes/business/src/components/shared/OModal.tsx +16 -9
- package/themes/business/src/types/index.tsx +24 -10
- 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 -5
- 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 +7 -3
- package/themes/original/src/components/AddressDetails/index.tsx +19 -3
- package/themes/original/src/components/AddressForm/index.tsx +33 -15
- package/themes/original/src/components/AddressList/index.tsx +5 -8
- 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 +72 -36
- package/themes/original/src/components/BusinessBasicInformation/styles.tsx +10 -12
- package/themes/original/src/components/BusinessController/index.tsx +35 -44
- package/themes/original/src/components/BusinessController/styles.tsx +12 -5
- 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 +140 -85
- package/themes/original/src/components/BusinessItemAccordion/index.tsx +21 -23
- package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/index.tsx +1 -1
- package/themes/original/src/components/BusinessListingSearch/index.tsx +346 -340
- 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 +137 -32
- package/themes/original/src/components/BusinessProductsListing/styles.tsx +2 -3
- package/themes/original/src/components/BusinessReviews/index.tsx +3 -1
- package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListFooter.tsx +69 -0
- package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListHeader.tsx +406 -0
- package/themes/original/src/components/BusinessesListing/Layout/Original/FlatListBusinessListing.tsx +76 -0
- package/themes/original/src/components/BusinessesListing/Layout/Original/index.tsx +36 -403
- package/themes/original/src/components/BusinessesListing/index.tsx +0 -1
- package/themes/original/src/components/Cart/index.tsx +44 -81
- package/themes/original/src/components/CartContent/index.tsx +70 -30
- package/themes/original/src/components/CartContent/styles.tsx +6 -6
- package/themes/original/src/components/Checkout/index.tsx +262 -35
- 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/DatePicker/index.tsx +17 -0
- package/themes/original/src/components/DatePicker/styles.tsx +20 -0
- package/themes/original/src/components/DriverTips/index.tsx +12 -4
- package/themes/original/src/components/FacebookLogin/styles.tsx +3 -1
- package/themes/original/src/components/Favorite/index.tsx +1 -5
- package/themes/original/src/components/GPSButton/index.tsx +6 -4
- package/themes/original/src/components/GiftCard/GiftCardUI/index.tsx +8 -3
- package/themes/original/src/components/GiftCard/PurchaseGiftCard/index.tsx +42 -5
- package/themes/original/src/components/GiftCard/PurchaseGiftCard/styles.tsx +2 -0
- package/themes/original/src/components/GiftCard/RedeemGiftCard/index.tsx +84 -8
- package/themes/original/src/components/GoogleLogin/styles.tsx +1 -1
- package/themes/original/src/components/GoogleMap/index.tsx +63 -7
- package/themes/original/src/components/Home/index.tsx +13 -4
- package/themes/original/src/components/LastOrder/index.tsx +2 -1
- package/themes/original/src/components/LastOrders/index.tsx +2 -1
- package/themes/original/src/components/LoginForm/Otp/index.tsx +91 -25
- package/themes/original/src/components/LoginForm/index.tsx +64 -34
- package/themes/original/src/components/LottieAnimation/index.tsx +88 -63
- package/themes/original/src/components/MessageListing/index.tsx +9 -2
- package/themes/original/src/components/Messages/index.tsx +15 -4
- package/themes/original/src/components/MomentOption/index.tsx +41 -36
- package/themes/original/src/components/MomentOption/styles.tsx +0 -15
- package/themes/original/src/components/MomentSelector/index.tsx +1 -1
- package/themes/original/src/components/MultiCartsPaymethodsAndWallets/index.tsx +161 -49
- package/themes/original/src/components/MultiCheckout/index.tsx +347 -69
- package/themes/original/src/components/MultiCheckout/styles.tsx +3 -1
- package/themes/original/src/components/MultiOrdersDetails/index.tsx +1 -1
- package/themes/original/src/components/MyOrders/index.tsx +12 -1
- package/themes/original/src/components/NavBar/index.tsx +20 -13
- package/themes/original/src/components/NotFoundSource/index.tsx +14 -10
- 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 +50 -38
- 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 +34 -25
- package/themes/original/src/components/OrderSummary/index.tsx +59 -56
- package/themes/original/src/components/OrderTypeSelector/index.tsx +5 -6
- package/themes/original/src/components/OrdersOption/PreviousProductsOrdered/index.tsx +13 -13
- package/themes/original/src/components/OrdersOption/index.tsx +43 -20
- package/themes/original/src/components/OrdersOption/styles.tsx +1 -1
- package/themes/original/src/components/PageBanner/index.tsx +65 -29
- package/themes/original/src/components/PageBanner/styles.tsx +0 -3
- package/themes/original/src/components/PaymentOptionCard/index.tsx +180 -0
- package/themes/original/src/components/PaymentOptionStripe/styles.tsx +3 -0
- package/themes/original/src/components/PaymentOptionWallet/index.tsx +56 -56
- package/themes/original/src/components/PaymentOptions/index.tsx +100 -34
- package/themes/original/src/components/PhoneInputNumber/index.tsx +18 -4
- package/themes/original/src/components/ProductForm/index.tsx +65 -34
- package/themes/original/src/components/ProductForm/styles.tsx +3 -3
- package/themes/original/src/components/ProductItemAccordion/index.tsx +8 -6
- package/themes/original/src/components/ProductOptionSubOption/index.tsx +49 -20
- package/themes/original/src/components/ProductOptionSubOption/styles.tsx +10 -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 +2 -2
- package/themes/original/src/components/Promotions/styles.tsx +3 -1
- package/themes/original/src/components/ReviewProducts/index.tsx +16 -7
- package/themes/original/src/components/ScheduleAccordion/index.tsx +3 -3
- package/themes/original/src/components/ServiceForm/index.tsx +40 -20
- package/themes/original/src/components/SignupForm/index.tsx +27 -16
- package/themes/original/src/components/SingleOrderCard/index.tsx +44 -20
- package/themes/original/src/components/SingleOrderCard/styles.tsx +1 -1
- package/themes/original/src/components/SingleProductCard/index.tsx +13 -10
- package/themes/original/src/components/SingleProductCard/styles.tsx +8 -3
- package/themes/original/src/components/SingleProductReview/styles.tsx +1 -1
- package/themes/original/src/components/StripeCardsList/index.tsx +61 -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 +3 -8
- package/themes/original/src/components/UserDetails/index.tsx +3 -1
- package/themes/original/src/components/UserFormDetails/index.tsx +84 -19
- package/themes/original/src/components/UserFormDetails/styles.tsx +1 -1
- package/themes/original/src/components/UserProfile/index.tsx +7 -25
- package/themes/original/src/components/UserProfileForm/index.tsx +30 -31
- package/themes/original/src/components/UserVerification/index.tsx +55 -50
- 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 +51 -61
- package/themes/original/src/components/Wallets/styles.tsx +2 -4
- package/themes/original/src/components/shared/OButton.tsx +3 -3
- package/themes/original/src/components/shared/OInput.tsx +4 -5
- package/themes/original/src/components/shared/OModal.tsx +3 -3
- package/themes/original/src/config/constants.tsx +0 -10
- package/themes/original/src/types/index.tsx +31 -15
- package/themes/original/src/utils/index.tsx +180 -13
- package/themes/uber-eats/src/components/BusinessesListing/index.tsx +1 -1
- package/src/navigators/BottomNavigator.tsx +0 -117
- package/src/navigators/CheckoutNavigator.tsx +0 -66
- package/src/navigators/HomeNavigator.tsx +0 -202
- package/src/navigators/NavigationRef.tsx +0 -7
- package/src/navigators/RootNavigator.tsx +0 -269
- package/src/pages/Account.tsx +0 -34
- package/src/pages/AddressForm.tsx +0 -62
- package/src/pages/AddressList.tsx +0 -24
- package/src/pages/BusinessProductsList.tsx +0 -81
- package/src/pages/BusinessesListing.tsx +0 -43
- package/src/pages/CartList.tsx +0 -49
- package/src/pages/Checkout.tsx +0 -101
- package/src/pages/ForgotPassword.tsx +0 -24
- package/src/pages/Help.tsx +0 -23
- package/src/pages/HelpAccountAndPayment.tsx +0 -23
- package/src/pages/HelpGuide.tsx +0 -23
- package/src/pages/HelpOrder.tsx +0 -23
- package/src/pages/Home.tsx +0 -36
- package/src/pages/IntroductoryTutorial.tsx +0 -170
- package/src/pages/Login.tsx +0 -47
- package/src/pages/MomentOption.tsx +0 -30
- package/src/pages/MultiCheckout.tsx +0 -31
- package/src/pages/MultiOrdersDetails.tsx +0 -27
- package/src/pages/MyOrders.tsx +0 -40
- package/src/pages/NetworkError.tsx +0 -24
- package/src/pages/NotFound.tsx +0 -22
- package/src/pages/OrderDetails.tsx +0 -25
- package/src/pages/ProductDetails.tsx +0 -55
- package/src/pages/Profile.tsx +0 -36
- package/src/pages/ReviewDriver.tsx +0 -30
- package/src/pages/ReviewOrder.tsx +0 -32
- package/src/pages/ReviewProducts.tsx +0 -30
- package/src/pages/Sessions.tsx +0 -22
- package/src/pages/Signup.tsx +0 -53
- package/src/pages/SpinnerLoader.tsx +0 -10
- package/src/pages/Splash.tsx +0 -21
|
@@ -11,10 +11,11 @@ import {
|
|
|
11
11
|
ToastType
|
|
12
12
|
} from 'ordering-components/native';
|
|
13
13
|
import { OIcon, OText } from '../shared';
|
|
14
|
-
import { Dimensions, StyleSheet,
|
|
14
|
+
import { Dimensions, StyleSheet, View } from 'react-native';
|
|
15
15
|
import { InView } from 'react-native-intersection-observer'
|
|
16
16
|
import { BusinessControllerParams } from '../../types';
|
|
17
|
-
import { convertHoursToMinutes, shape } from '../../utils';
|
|
17
|
+
import { convertHoursToMinutes, lightenDarkenColor, shape } from '../../utils';
|
|
18
|
+
import ReactNativeHapticFeedback from "react-native-haptic-feedback";
|
|
18
19
|
|
|
19
20
|
import {
|
|
20
21
|
BusinessHero,
|
|
@@ -41,7 +42,6 @@ export const BusinessControllerUI = (props: BusinessControllerParams) => {
|
|
|
41
42
|
navigation,
|
|
42
43
|
isBusinessOpen,
|
|
43
44
|
style,
|
|
44
|
-
isCustomLayout,
|
|
45
45
|
businessHeader,
|
|
46
46
|
businessFeatured,
|
|
47
47
|
businessLogo,
|
|
@@ -75,7 +75,7 @@ export const BusinessControllerUI = (props: BusinessControllerParams) => {
|
|
|
75
75
|
const hideBusinessHeader = theme?.business_listing_view?.components?.business?.components?.header?.hidden
|
|
76
76
|
const hideBusinessFavoriteBadge = theme?.business_listing_view?.components?.business?.components?.featured_badge?.hidden
|
|
77
77
|
|
|
78
|
-
const textSize =
|
|
78
|
+
const textSize = 12
|
|
79
79
|
const cardHeight = windowHeight * 0.3
|
|
80
80
|
|
|
81
81
|
const styles = StyleSheet.create({
|
|
@@ -151,8 +151,16 @@ export const BusinessControllerUI = (props: BusinessControllerParams) => {
|
|
|
151
151
|
return _types.join(', ');
|
|
152
152
|
};
|
|
153
153
|
|
|
154
|
+
const vibrateApp = (impact?: string) => {
|
|
155
|
+
const options = {
|
|
156
|
+
enableVibrateFallback: true,
|
|
157
|
+
ignoreAndroidSystemSettings: false
|
|
158
|
+
};
|
|
159
|
+
ReactNativeHapticFeedback.trigger(impact || "impactLight", options);
|
|
160
|
+
}
|
|
161
|
+
|
|
154
162
|
const handleBusinessClick = (selectedBusiness: any) => {
|
|
155
|
-
|
|
163
|
+
vibrateApp()
|
|
156
164
|
if (business?.open) handleClick && handleClick(selectedBusiness)
|
|
157
165
|
else {
|
|
158
166
|
if (configState?.configs?.preorder_status_enabled?.value === '1') {
|
|
@@ -185,13 +193,15 @@ export const BusinessControllerUI = (props: BusinessControllerParams) => {
|
|
|
185
193
|
{business?.ribbon?.enabled && (
|
|
186
194
|
<RibbonBox
|
|
187
195
|
bgColor={business?.ribbon?.color}
|
|
196
|
+
colorText={lightenDarkenColor(business?.ribbon?.color)}
|
|
197
|
+
borderRibbon={lightenDarkenColor(business?.ribbon?.color)}
|
|
188
198
|
isRoundRect={business?.ribbon?.shape === shape?.rectangleRound}
|
|
189
199
|
isCapsule={business?.ribbon?.shape === shape?.capsuleShape}
|
|
190
200
|
>
|
|
191
201
|
<OText
|
|
192
202
|
size={10}
|
|
193
203
|
weight={'400'}
|
|
194
|
-
color={theme.colors.white}
|
|
204
|
+
color={lightenDarkenColor(business?.ribbon?.color) ? theme.colors.black : theme.colors.white}
|
|
195
205
|
numberOfLines={2}
|
|
196
206
|
ellipsizeMode='tail'
|
|
197
207
|
lineHeight={13}
|
|
@@ -203,9 +213,9 @@ export const BusinessControllerUI = (props: BusinessControllerParams) => {
|
|
|
203
213
|
<BusinessHero>
|
|
204
214
|
{!hideBusinessHeader && (
|
|
205
215
|
<FastImage
|
|
206
|
-
style={{ height:
|
|
207
|
-
source={(businessHeader || business?.header) ? {
|
|
208
|
-
uri: optimizeImage(businessHeader || business?.header, 'h_500,c_limit'),
|
|
216
|
+
style={{ height: cardHeight * 0.66 }}
|
|
217
|
+
source={(businessHeader || business?.header || typeof theme.images.dummies.businessHeader === 'string') ? {
|
|
218
|
+
uri: optimizeImage(businessHeader || business?.header || theme.images.dummies.businessHeader, 'h_500,c_limit'),
|
|
209
219
|
priority: FastImage.priority.normal,
|
|
210
220
|
} : theme.images.dummies.businessHeader}
|
|
211
221
|
resizeMode={FastImage.resizeMode.cover}
|
|
@@ -216,19 +226,23 @@ export const BusinessControllerUI = (props: BusinessControllerParams) => {
|
|
|
216
226
|
<FontAwesomeIcon name="crown" size={26} color="gold" />
|
|
217
227
|
</View>
|
|
218
228
|
)}
|
|
219
|
-
{
|
|
229
|
+
{!hideBusinessOffer && (
|
|
220
230
|
getBusinessOffer((business?.offers)) &&
|
|
221
|
-
<OfferBox
|
|
231
|
+
<OfferBox
|
|
232
|
+
isClosed={!isBusinessOpen && (configState?.configs?.preorder_status_enabled?.value === '1')}
|
|
233
|
+
isRibbon={business?.ribbon?.enabled && !!business?.ribbon?.text}
|
|
234
|
+
>
|
|
222
235
|
<OText
|
|
223
236
|
size={10}
|
|
224
237
|
weight={'400'}
|
|
238
|
+
color={theme.colors.textThird}
|
|
225
239
|
numberOfLines={2}
|
|
226
240
|
ellipsizeMode='tail'
|
|
227
241
|
lineHeight={13}
|
|
228
242
|
>{getBusinessOffer((business?.offers)) || parsePrice(0)}</OText>
|
|
229
243
|
</OfferBox>
|
|
230
244
|
)}
|
|
231
|
-
<BusinessState>
|
|
245
|
+
<BusinessState isRibbon={business?.ribbon?.enabled && !!business?.ribbon?.text}>
|
|
232
246
|
{!isBusinessOpen && (configState?.configs?.preorder_status_enabled?.value === '1') && (
|
|
233
247
|
<View style={styles.businessStateView}>
|
|
234
248
|
<OText
|
|
@@ -242,51 +256,28 @@ export const BusinessControllerUI = (props: BusinessControllerParams) => {
|
|
|
242
256
|
</BusinessState>
|
|
243
257
|
</BusinessHero>
|
|
244
258
|
<BusinessContent>
|
|
245
|
-
<BusinessInfo style={
|
|
259
|
+
<BusinessInfo style={{ position: 'absolute', bottom: 85, left: 15 }}>
|
|
246
260
|
{!hideBusinessLogo && (
|
|
247
261
|
<BusinessLogo style={styles.businessLogo}>
|
|
248
262
|
<FastImage
|
|
249
263
|
style={{ width: 56, height: 56 }}
|
|
250
|
-
source={(businessLogo || business?.logo) ? {
|
|
251
|
-
uri: optimizeImage(businessLogo || business?.logo, 'h_150,c_limit'),
|
|
264
|
+
source={(businessLogo || business?.logo || typeof theme.images.dummies.businessLogo === 'string') ? {
|
|
265
|
+
uri: optimizeImage(businessLogo || business?.logo || theme.images.dummies.businessLogo, 'h_150,c_limit'),
|
|
252
266
|
priority: FastImage.priority.normal,
|
|
253
267
|
} : theme.images.dummies.businessLogo}
|
|
254
268
|
resizeMode={FastImage.resizeMode.cover}
|
|
255
269
|
/>
|
|
256
270
|
</BusinessLogo>
|
|
257
271
|
)}
|
|
258
|
-
{!isCustomLayout && (!hideBusinessFavorite || !hideBusinessReviews) && (
|
|
259
|
-
<ReviewAndFavorite>
|
|
260
|
-
{(businessReviews?.reviews?.total > 0 ?? business?.reviews?.total > 0) && !hideBusinessReviews && (
|
|
261
|
-
<Reviews>
|
|
262
|
-
<OIcon src={theme.images.general.star} width={12} style={styles.starIcon} />
|
|
263
|
-
<OText size={10} style={{ lineHeight: 15 }}>
|
|
264
|
-
{parseNumber(businessReviews?.reviews?.total ?? business?.reviews?.total, { separator: '.' })}
|
|
265
|
-
</OText>
|
|
266
|
-
</Reviews>
|
|
267
|
-
)}
|
|
268
|
-
{!hideBusinessFavorite && (
|
|
269
|
-
<LottieAnimation
|
|
270
|
-
type='favorite'
|
|
271
|
-
onClick={handleChangeFavorite}
|
|
272
|
-
initialValue={business?.favorite ? 0.75 : 0}
|
|
273
|
-
toValue={business?.favorite ? 0 : 0.75}
|
|
274
|
-
disableAnimation={!auth}
|
|
275
|
-
iconProps={{ color: theme.colors.danger5, size: 18 }}
|
|
276
|
-
isActive={business?.favorite}
|
|
277
|
-
/>
|
|
278
|
-
)}
|
|
279
|
-
</ReviewAndFavorite>
|
|
280
|
-
)}
|
|
281
272
|
</BusinessInfo>
|
|
282
|
-
<View style={
|
|
273
|
+
<View style={{ width: '100%', flexDirection: 'row', justifyContent: 'space-between', marginTop: 5, alignItems: 'flex-start' }}>
|
|
283
274
|
<OText
|
|
284
275
|
size={textSize + 2}
|
|
285
|
-
style={{ lineHeight: 18, marginBottom: 6 }}
|
|
276
|
+
style={{ lineHeight: 18, marginBottom: 6, width: '90%' }}
|
|
286
277
|
weight={'500'}>
|
|
287
278
|
{business?.name}
|
|
288
279
|
</OText>
|
|
289
|
-
{
|
|
280
|
+
{(!hideBusinessFavorite || !hideBusinessReviews) && (
|
|
290
281
|
<ReviewAndFavorite>
|
|
291
282
|
{(businessReviews?.reviews?.total > 0 ?? business?.reviews?.total > 0) && !hideBusinessReviews && (
|
|
292
283
|
<Reviews>
|
|
@@ -300,8 +291,8 @@ export const BusinessControllerUI = (props: BusinessControllerParams) => {
|
|
|
300
291
|
<LottieAnimation
|
|
301
292
|
type='favorite'
|
|
302
293
|
onClick={handleChangeFavorite}
|
|
303
|
-
initialValue={business?.favorite ? 0.
|
|
304
|
-
toValue={business?.favorite ? 0 : 0.
|
|
294
|
+
initialValue={business?.favorite ? 0.5 : 0}
|
|
295
|
+
toValue={business?.favorite ? 0 : 0.5}
|
|
305
296
|
disableAnimation={!auth}
|
|
306
297
|
iconProps={{ color: theme.colors.danger5, size: 18 }}
|
|
307
298
|
isActive={business?.favorite}
|
|
@@ -310,7 +301,7 @@ export const BusinessControllerUI = (props: BusinessControllerParams) => {
|
|
|
310
301
|
</ReviewAndFavorite>
|
|
311
302
|
)}
|
|
312
303
|
</View>
|
|
313
|
-
<OText size={textSize} style={{ lineHeight: 15, marginBottom: 3 }} numberOfLines={
|
|
304
|
+
<OText size={textSize} style={{ lineHeight: 15, marginBottom: 3 }} numberOfLines={1}>
|
|
314
305
|
{business?.address}
|
|
315
306
|
</OText>
|
|
316
307
|
<Metadata>
|
|
@@ -34,8 +34,8 @@ export const Metadata = styled.View`
|
|
|
34
34
|
|
|
35
35
|
export const BusinessState = styled.View`
|
|
36
36
|
position: absolute;
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
top: ${(props: any) => props.isRibbon ? '32px' : '15px'};
|
|
38
|
+
right: 15px;
|
|
39
39
|
`
|
|
40
40
|
|
|
41
41
|
export const BusinessLogo = styled.View`
|
|
@@ -72,15 +72,22 @@ export const RibbonBox = styled.View`
|
|
|
72
72
|
${(props: any) => props.isCapsule && css`
|
|
73
73
|
border-radius: 50px;
|
|
74
74
|
`}
|
|
75
|
+
|
|
76
|
+
${(props: any) => props.colorText && css`
|
|
77
|
+
color: ${props.colorText ? 'black' : 'white'};
|
|
78
|
+
`}
|
|
79
|
+
|
|
80
|
+
${(props: any) => props.borderRibbon && css`
|
|
81
|
+
border: 1px solid ${props.borderRibbon ? 'black' : 'white'};
|
|
82
|
+
`}
|
|
75
83
|
`
|
|
76
84
|
|
|
77
85
|
export const OfferBox = styled.View`
|
|
78
86
|
position: absolute;
|
|
79
87
|
z-index: 1;
|
|
80
|
-
top: 20px;
|
|
81
|
-
right: 10px;
|
|
82
88
|
border-radius: 50px;
|
|
83
|
-
|
|
89
|
+
top: ${(props: any) => props.isRibbon ? '32px' : '15px'};
|
|
90
|
+
right: ${(props: any) => props.isClosed ? '110px' : '15px'};
|
|
84
91
|
background: ${(props: any) => props.theme.colors.inputBorderColor};
|
|
85
92
|
padding: 3px 8px;
|
|
86
93
|
max-width: 180px;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { StyleSheet, useWindowDimensions, View } from 'react-native';
|
|
2
3
|
import {
|
|
3
4
|
BusinessController as BusinessSingleCard,
|
|
4
5
|
useUtils,
|
|
@@ -6,33 +7,29 @@ import {
|
|
|
6
7
|
useLanguage,
|
|
7
8
|
} from 'ordering-components/native';
|
|
8
9
|
import { useTheme } from 'styled-components/native';
|
|
9
|
-
import
|
|
10
|
-
|
|
10
|
+
import FastImage from 'react-native-fast-image'
|
|
11
|
+
|
|
12
|
+
import { OText } from '../shared';
|
|
11
13
|
import { BusinessControllerParams } from '../../types';
|
|
12
|
-
import { convertHoursToMinutes, shape } from '../../utils';
|
|
14
|
+
import { convertHoursToMinutes, lightenDarkenColor, shape } from '../../utils';
|
|
13
15
|
import {
|
|
14
16
|
Card,
|
|
15
17
|
BusinessHero,
|
|
16
18
|
BusinessContent,
|
|
17
|
-
BusinessCategory,
|
|
18
19
|
BusinessInfo,
|
|
19
20
|
Metadata,
|
|
20
|
-
BusinessState,
|
|
21
21
|
BusinessLogo,
|
|
22
|
-
Reviews,
|
|
23
22
|
RibbonBox
|
|
24
23
|
} from './styles';
|
|
25
24
|
|
|
26
25
|
export const BusinessFeaturedCtrlUI = (props: BusinessControllerParams) => {
|
|
27
26
|
const { business, handleClick, isBusinessOpen } = props;
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
|
|
28
|
+
const [{ parsePrice, parseDistance, optimizeImage }] = useUtils();
|
|
30
29
|
const [orderState] = useOrder();
|
|
31
30
|
const [, t] = useLanguage();
|
|
32
|
-
|
|
33
31
|
const theme = useTheme();
|
|
34
32
|
|
|
35
|
-
|
|
36
33
|
const styles = StyleSheet.create({
|
|
37
34
|
headerStyle: {
|
|
38
35
|
borderTopLeftRadius: 25,
|
|
@@ -79,35 +76,28 @@ export const BusinessFeaturedCtrlUI = (props: BusinessControllerParams) => {
|
|
|
79
76
|
justifyContent: 'flex-start',
|
|
80
77
|
width: '100%',
|
|
81
78
|
},
|
|
79
|
+
productStyle: {
|
|
80
|
+
height: 40,
|
|
81
|
+
width: 40
|
|
82
|
+
}
|
|
82
83
|
});
|
|
83
84
|
|
|
84
|
-
const types = ['food', 'laundry', 'alcohol', 'groceries'];
|
|
85
|
-
|
|
86
85
|
const { width } = useWindowDimensions();
|
|
87
86
|
|
|
88
|
-
const getBusinessType = () => {
|
|
89
|
-
if (Object.keys(business).length <= 0) return t('GENERAL', 'General');
|
|
90
|
-
const _types: any = [];
|
|
91
|
-
types.forEach((type) => {
|
|
92
|
-
if (business[type]) {
|
|
93
|
-
_types.push(t(type.toUpperCase(), type));
|
|
94
|
-
}
|
|
95
|
-
});
|
|
96
|
-
return _types.join(', ');
|
|
97
|
-
};
|
|
98
|
-
|
|
99
87
|
return (
|
|
100
88
|
<Card activeOpacity={1} onPress={() => handleClick(business)}>
|
|
101
89
|
{business?.ribbon?.enabled && (
|
|
102
90
|
<RibbonBox
|
|
103
91
|
bgColor={business?.ribbon?.color}
|
|
92
|
+
colorText={lightenDarkenColor(business?.ribbon?.color)}
|
|
93
|
+
borderRibbon={lightenDarkenColor(business?.ribbon?.color)}
|
|
104
94
|
isRoundRect={business?.ribbon?.shape === shape?.rectangleRound}
|
|
105
95
|
isCapsule={business?.ribbon?.shape === shape?.capsuleShape}
|
|
106
96
|
>
|
|
107
97
|
<OText
|
|
108
98
|
size={10}
|
|
109
99
|
weight={'400'}
|
|
110
|
-
color={theme.colors.white}
|
|
100
|
+
color={lightenDarkenColor(business?.ribbon?.color) ? theme.colors.black : theme.colors.white}
|
|
111
101
|
numberOfLines={2}
|
|
112
102
|
ellipsizeMode='tail'
|
|
113
103
|
lineHeight={13}
|
|
@@ -118,10 +108,13 @@ export const BusinessFeaturedCtrlUI = (props: BusinessControllerParams) => {
|
|
|
118
108
|
)}
|
|
119
109
|
<BusinessHero>
|
|
120
110
|
<BusinessLogo>
|
|
121
|
-
<
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
111
|
+
<FastImage
|
|
112
|
+
style={styles.productStyle}
|
|
113
|
+
source={{
|
|
114
|
+
uri: optimizeImage(business?.logo, 'h_100,c_limit'),
|
|
115
|
+
priority: FastImage.priority.normal,
|
|
116
|
+
}}
|
|
117
|
+
resizeMode={FastImage.resizeMode.cover}
|
|
125
118
|
/>
|
|
126
119
|
</BusinessLogo>
|
|
127
120
|
<BusinessContent style={{ width: width * 0.6 }}>
|
|
@@ -129,23 +122,7 @@ export const BusinessFeaturedCtrlUI = (props: BusinessControllerParams) => {
|
|
|
129
122
|
<OText size={12} ellipsizeMode={'tail'} numberOfLines={2}>
|
|
130
123
|
{business?.name}
|
|
131
124
|
</OText>
|
|
132
|
-
{/* {business?.reviews?.total > 0 && (
|
|
133
|
-
<Reviews>
|
|
134
|
-
<IconAntDesign
|
|
135
|
-
name="star"
|
|
136
|
-
color={theme.colors.primary}
|
|
137
|
-
size={16}
|
|
138
|
-
style={styles.starIcon}
|
|
139
|
-
/>
|
|
140
|
-
<OText>
|
|
141
|
-
{parseNumber(business?.reviews?.total, { separator: '.' })}
|
|
142
|
-
</OText>
|
|
143
|
-
</Reviews>
|
|
144
|
-
)} */}
|
|
145
125
|
</BusinessInfo>
|
|
146
|
-
{/* <BusinessCategory>
|
|
147
|
-
<OText>{getBusinessType()}</OText>
|
|
148
|
-
</BusinessCategory> */}
|
|
149
126
|
<Metadata>
|
|
150
127
|
{!isBusinessOpen ? (
|
|
151
128
|
<View style={styles.closed}>
|
|
@@ -155,7 +132,6 @@ export const BusinessFeaturedCtrlUI = (props: BusinessControllerParams) => {
|
|
|
155
132
|
</View>
|
|
156
133
|
) : (
|
|
157
134
|
<View style={styles.bullet}>
|
|
158
|
-
{/* <MaterialComIcon name="alarm" size={16} /> */}
|
|
159
135
|
<OText size={10} color={theme.colors.textSecondary}>
|
|
160
136
|
{t('DELIVERY_FEE', 'Delivery Fee')}
|
|
161
137
|
</OText>
|
|
@@ -184,15 +160,6 @@ export const BusinessFeaturedCtrlUI = (props: BusinessControllerParams) => {
|
|
|
184
160
|
)}
|
|
185
161
|
</Metadata>
|
|
186
162
|
</BusinessContent>
|
|
187
|
-
{/* <BusinessState>
|
|
188
|
-
{!business?.open && (
|
|
189
|
-
<View style={styles.businessStateView}>
|
|
190
|
-
<OText color={theme.colors.white} size={20} style={styles.businessStateText}>
|
|
191
|
-
{t('PREORDER', 'PREORDER')}
|
|
192
|
-
</OText>
|
|
193
|
-
</View>
|
|
194
|
-
)}
|
|
195
|
-
</BusinessState> */}
|
|
196
163
|
</BusinessHero>
|
|
197
164
|
</Card>
|
|
198
165
|
);
|
|
@@ -70,4 +70,12 @@ export const RibbonBox = styled.View`
|
|
|
70
70
|
${(props: any) => props.isCapsule && css`
|
|
71
71
|
border-radius: 50px;
|
|
72
72
|
`}
|
|
73
|
+
|
|
74
|
+
${(props: any) => props.colorText && css`
|
|
75
|
+
color: ${props.colorText ? 'black' : 'white'};
|
|
76
|
+
`}
|
|
77
|
+
|
|
78
|
+
${(props: any) => props.borderRibbon && css`
|
|
79
|
+
border: 1px solid ${props.borderRibbon ? 'black' : 'white'};
|
|
80
|
+
`}
|
|
73
81
|
`
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { useState, useCallback } from 'react';
|
|
2
2
|
import {
|
|
3
3
|
BusinessInformation as BusinessInformationController,
|
|
4
|
-
useLanguage, useUtils
|
|
4
|
+
useLanguage, useUtils, useConfig,
|
|
5
5
|
} from 'ordering-components/native';
|
|
6
6
|
import { useTheme } from 'styled-components/native';
|
|
7
7
|
import { OIcon, OText } from '../shared';
|
|
@@ -16,31 +16,41 @@ import {
|
|
|
16
16
|
DivideView,
|
|
17
17
|
MediaWrapper,
|
|
18
18
|
} from './styles';
|
|
19
|
-
import { StyleSheet, View } from 'react-native';
|
|
19
|
+
import { StyleSheet, View, TouchableOpacity } from 'react-native';
|
|
20
20
|
import { BusinessInformationParams } from '../../types';
|
|
21
21
|
import { GoogleMap } from '../GoogleMap';
|
|
22
22
|
import { WebView } from 'react-native-webview';
|
|
23
23
|
import { formatUrlVideo } from '../../utils'
|
|
24
24
|
import { ScheduleAccordion } from '../ScheduleAccordion';
|
|
25
|
+
import moment from 'moment';
|
|
26
|
+
import { DeviceOrientationMethods } from '../../../../../src/hooks/DeviceOrientation'
|
|
27
|
+
const { useDeviceOrientation } = DeviceOrientationMethods
|
|
28
|
+
|
|
25
29
|
const BusinessInformationUI = (props: BusinessInformationParams) => {
|
|
26
30
|
const { businessState, businessSchedule, businessLocation } = props;
|
|
27
31
|
|
|
28
32
|
const theme = useTheme();
|
|
29
33
|
const [, t] = useLanguage();
|
|
30
34
|
const [{ optimizeImage }] = useUtils();
|
|
35
|
+
const [{ configs }] = useConfig()
|
|
36
|
+
const [orientationState] = useDeviceOrientation();
|
|
37
|
+
|
|
38
|
+
const [isReadMore, setIsReadMore] = useState(false)
|
|
39
|
+
const [lengthMore, setLengthMore] = useState(false)
|
|
40
|
+
const WIDTH_SCREEN = orientationState?.dimensions?.width
|
|
41
|
+
|
|
42
|
+
const hideLocation = theme?.business_view?.components?.information?.components?.location?.hidden
|
|
43
|
+
const hideSchedule = theme?.business_view?.components?.information?.components?.schedule?.hidden
|
|
44
|
+
const hideVideos = theme?.business_view?.components?.information?.components?.videos?.hidden
|
|
45
|
+
const hideImages = theme?.business_view?.components?.information?.components?.images?.hidden
|
|
46
|
+
const hideAddress = theme?.business_view?.components?.information?.components?.address?.hidden
|
|
47
|
+
const formatTime = configs?.general_hour_format?.value
|
|
48
|
+
|
|
49
|
+
const checkTime = (val: number) => (val < 10 ? `0${val}` : val);
|
|
50
|
+
const timeFormated = (time: any) => {
|
|
51
|
+
return moment(`1900-01-01 ${checkTime(time.hour)}:${checkTime(time.minute)}`).format(formatTime)
|
|
52
|
+
}
|
|
31
53
|
|
|
32
|
-
const scheduleFormatted = ({
|
|
33
|
-
hour,
|
|
34
|
-
minute,
|
|
35
|
-
}: {
|
|
36
|
-
hour: number | string;
|
|
37
|
-
minute: number | string;
|
|
38
|
-
}) => {
|
|
39
|
-
const checkTime = (val: number | string) => (val < 10 ? `0${val}` : val);
|
|
40
|
-
const zz = hour > 12 ? 'PM' : 'AM';
|
|
41
|
-
const h = parseInt(`${hour}`);
|
|
42
|
-
return `${h > 12 ? h - 12 : h}:${checkTime(minute)} ${zz}`;
|
|
43
|
-
};
|
|
44
54
|
const businessCoordinate = {
|
|
45
55
|
lat: businessState?.business?.location?.lat,
|
|
46
56
|
lng: businessState?.business?.location?.lng,
|
|
@@ -71,6 +81,10 @@ const BusinessInformationUI = (props: BusinessInformationParams) => {
|
|
|
71
81
|
return iAry;
|
|
72
82
|
};
|
|
73
83
|
|
|
84
|
+
const onTextLayout = useCallback((e: any) => {
|
|
85
|
+
setLengthMore((e.nativeEvent.lines.length == 3 && e.nativeEvent.lines[2].width > WIDTH_SCREEN * .76) || e.nativeEvent.lines.length > 3)
|
|
86
|
+
}, [])
|
|
87
|
+
|
|
74
88
|
return (
|
|
75
89
|
<BusinessInformationContainer>
|
|
76
90
|
<WrapMainContent contentContainerStyle={{}}>
|
|
@@ -78,87 +92,128 @@ const BusinessInformationUI = (props: BusinessInformationParams) => {
|
|
|
78
92
|
<OText size={24} weight={'600'}>
|
|
79
93
|
{businessState?.business?.name}
|
|
80
94
|
</OText>
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
95
|
+
{!hideLocation && (
|
|
96
|
+
<>
|
|
97
|
+
<GrayBackground>
|
|
98
|
+
<OText size={16} weight="500">
|
|
99
|
+
{t('BUSINESS_LOCATION', 'Business Location')}
|
|
100
|
+
</OText>
|
|
101
|
+
</GrayBackground>
|
|
102
|
+
{businessLocation.location && (
|
|
103
|
+
<WrapBusinessMap style={styles.wrapMapStyle}>
|
|
104
|
+
<GoogleMap
|
|
105
|
+
readOnly
|
|
106
|
+
location={businessLocation.location}
|
|
107
|
+
markerTitle={businessState?.business?.name}
|
|
108
|
+
businessZones={businessState?.business?.zones}
|
|
109
|
+
/>
|
|
110
|
+
</WrapBusinessMap>
|
|
111
|
+
)}
|
|
112
|
+
</>
|
|
113
|
+
)}
|
|
114
|
+
{!hideAddress && (
|
|
115
|
+
<OText size={12} mBottom={10}>
|
|
116
|
+
{businessState?.business?.address}
|
|
84
117
|
</OText>
|
|
85
|
-
</GrayBackground>
|
|
86
|
-
{businessLocation.location && (
|
|
87
|
-
<WrapBusinessMap style={styles.wrapMapStyle}>
|
|
88
|
-
<GoogleMap
|
|
89
|
-
readOnly
|
|
90
|
-
location={businessLocation.location}
|
|
91
|
-
markerTitle={businessState?.business?.name}
|
|
92
|
-
/>
|
|
93
|
-
</WrapBusinessMap>
|
|
94
118
|
)}
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
119
|
+
{businessState?.business?.address_notes && (
|
|
120
|
+
<>
|
|
121
|
+
<OText
|
|
122
|
+
size={12}
|
|
123
|
+
mBottom={10}
|
|
124
|
+
numberOfLines={isReadMore ? 20 : 3}
|
|
125
|
+
onTextLayout={onTextLayout}
|
|
126
|
+
>
|
|
127
|
+
{businessState?.business?.address_notes}
|
|
128
|
+
</OText>
|
|
129
|
+
{lengthMore && (
|
|
130
|
+
<TouchableOpacity
|
|
131
|
+
onPress={() => setIsReadMore(!isReadMore)}
|
|
132
|
+
>
|
|
133
|
+
<OText size={12} mBottom={20} color={theme.colors.primary}>{isReadMore ? t('SHOW_LESS', 'Show less') : t('READ_MORE', 'Read more')}</OText>
|
|
134
|
+
</TouchableOpacity>
|
|
135
|
+
)}
|
|
136
|
+
</>
|
|
137
|
+
)}
|
|
98
138
|
<DivideView />
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
{businessSchedule
|
|
107
|
-
<
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
139
|
+
{!hideSchedule && (
|
|
140
|
+
<>
|
|
141
|
+
<GrayBackground>
|
|
142
|
+
<OText size={16} weight="500">
|
|
143
|
+
{t('OPENING_TIME', 'Opening Time')}
|
|
144
|
+
</OText>
|
|
145
|
+
</GrayBackground>
|
|
146
|
+
{businessSchedule && businessSchedule?.length > 0 && (
|
|
147
|
+
<WrapScheduleBlock>
|
|
148
|
+
{businessSchedule.map((schedule: any, i: number) => (
|
|
149
|
+
<ScheduleBlock key={i}>
|
|
150
|
+
<ScheduleAccordion
|
|
151
|
+
weekIndex={i}
|
|
152
|
+
timeFormated={timeFormated}
|
|
153
|
+
schedule={schedule}
|
|
154
|
+
/>
|
|
155
|
+
</ScheduleBlock>
|
|
156
|
+
))}
|
|
157
|
+
</WrapScheduleBlock>
|
|
158
|
+
)}
|
|
159
|
+
</>
|
|
116
160
|
)}
|
|
161
|
+
|
|
117
162
|
{/* {businessState?.business?.gallery?.length > 0 && ( */}
|
|
163
|
+
|
|
118
164
|
<>
|
|
119
|
-
{
|
|
165
|
+
{!hideVideos && (
|
|
120
166
|
<>
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
<
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
167
|
+
{bVideos().length > 0 && (
|
|
168
|
+
<>
|
|
169
|
+
<DivideView />
|
|
170
|
+
<GrayBackground>
|
|
171
|
+
<OText size={16} weight="500">
|
|
172
|
+
{t('VIDEOS', 'Videos')}
|
|
173
|
+
</OText>
|
|
174
|
+
</GrayBackground>
|
|
175
|
+
<MediaWrapper horizontal>
|
|
176
|
+
{bVideos().map((v: any) => (
|
|
177
|
+
<WebView
|
|
178
|
+
key={`vid_id_${v.id}`}
|
|
179
|
+
style={{ width: 210, height: 127, borderRadius: 7.6 }}
|
|
180
|
+
javaScriptEnabled={true}
|
|
181
|
+
domStorageEnabled={true}
|
|
182
|
+
source={{
|
|
183
|
+
html: `
|
|
184
|
+
<iframe width='80%' height='80%' src="${formatUrlVideo(v.video)}" frameBorder='0' allow='autoplay; encrypted-media' allowFullScreen />
|
|
137
185
|
`,
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
186
|
+
}}
|
|
187
|
+
mediaPlaybackRequiresUserAction={true}
|
|
188
|
+
/>
|
|
189
|
+
))}
|
|
190
|
+
</MediaWrapper>
|
|
191
|
+
</>
|
|
192
|
+
)}
|
|
143
193
|
</>
|
|
144
194
|
)}
|
|
145
|
-
|
|
195
|
+
|
|
196
|
+
{!hideImages && (
|
|
146
197
|
<>
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
198
|
+
{bImages().length > 0 && (
|
|
199
|
+
<>
|
|
200
|
+
<DivideView />
|
|
201
|
+
<GrayBackground>
|
|
202
|
+
<OText size={16} weight="500">
|
|
203
|
+
{t('IMAGES', 'Images')}
|
|
204
|
+
</OText>
|
|
205
|
+
</GrayBackground>
|
|
206
|
+
<MediaWrapper horizontal>
|
|
207
|
+
{bImages().map((i: any) => (
|
|
208
|
+
i.file != null &&
|
|
209
|
+
<View key={i.id} style={{ width: 210, height: 127, borderRadius: 7.6, marginEnd: 20, overflow: 'hidden' }}>
|
|
210
|
+
<OIcon cover url={optimizeImage(i?.file, 'h_150,c_limit')} width={210} height={127} />
|
|
211
|
+
{/* <OText size={12} color={colors.red} style={{position: 'absolute'}}>{i.file}</OText> */}
|
|
212
|
+
</View>
|
|
213
|
+
))}
|
|
214
|
+
</MediaWrapper>
|
|
215
|
+
</>
|
|
216
|
+
)}
|
|
162
217
|
</>
|
|
163
218
|
)}
|
|
164
219
|
</>
|