import React, { useEffect, useState} from 'react'
import { Fade, Placeholder, PlaceholderLine } from 'rn-placeholder'
import { View, StyleSheet, ScrollView, Platform, PanResponder, I18nManager } from 'react-native'
import Geolocation from '@react-native-community/geolocation'
import MaterialComIcon from 'react-native-vector-icons/MaterialCommunityIcons'
import {
BusinessList as BusinessesListingController,
useLanguage,
useSession,
useOrder,
useConfig,
useUtils,
ToastType,
useToast
} from 'ordering-components/native'
import { WelcomeTitle, Search, OrderControlContainer, AddressInput, WrapMomentOption, FarAwayMessage } from './styles'
import NavBar from '../NavBar'
import { SearchBar } from '../SearchBar'
import { OText } from '../shared'
import { BusinessesListingParams } from '../../types'
import { NotFoundSource } from '../NotFoundSource'
import { BusinessTypeFilter } from '../BusinessTypeFilter'
import { BusinessController } from '../BusinessController'
import { OrderTypeSelector } from '../OrderTypeSelector'
import { useTheme } from 'styled-components/native'
import { getDistance } from '../../utils'
import Ionicons from 'react-native-vector-icons/Ionicons'
const PIXELS_TO_SCROLL = 1200
const BusinessesListingUI = (props: BusinessesListingParams) => {
const {
navigation,
businessesList,
searchValue,
getBusinesses,
handleChangeBusinessType,
handleBusinessClick,
paginationProps,
handleChangeSearch
} = props
const theme = useTheme();
const styles = StyleSheet.create({
container: {
padding: 20,
marginBottom: 20,
left: Platform.OS === 'ios' && I18nManager.isRTL ? 20 : 0
},
welcome: {
flex: 1,
flexDirection: 'row'
},
inputStyle: {
backgroundColor: theme.colors.inputDisabled,
flex: 1
},
wrapperOrderOptions: {
width: '100%',
display: 'flex',
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
marginBottom: 10,
zIndex: 100
},
borderStyle: {
borderColor: theme.colors.backgroundGray,
borderWidth: 1,
borderRadius: 10,
},
iconStyle: {
fontSize: 18,
color: theme.colors.warning5,
marginRight: 8
},
farAwayMsg: {
paddingVertical: 6,
paddingHorizontal: 20
}
})
const [, t] = useLanguage()
const [{ user, auth }] = useSession()
const [orderState] = useOrder()
const [{ configs }] = useConfig()
const [{ parseDate }] = useUtils()
const [, {showToast}] = useToast()
const configTypes = configs?.order_types_allowed?.value.split('|').map((value: any) => Number(value)) || []
const isPreOrderSetting = configs?.preorder_status_enabled?.value === '1'
const [isFarAway, setIsFarAway] = useState(false)
const handleScroll = ({ nativeEvent }: any) => {
const y = nativeEvent.contentOffset.y
const height = nativeEvent.contentSize.height
const hasMore = !(paginationProps.totalPages === paginationProps.currentPage)
if (y + PIXELS_TO_SCROLL > height && !businessesList.loading && hasMore) {
getBusinesses()
showToast(ToastType.Info, t('LOADING_MORE_BUSINESS', 'Loading more business'))
}
}
useEffect(() => {
Geolocation.getCurrentPosition((pos) => {
const crd = pos.coords
const distance = getDistance(crd.latitude, crd.longitude, orderState?.options?.address?.location?.lat, orderState?.options?.address?.location?.lng)
if (distance > 20) setIsFarAway(true)
else setIsFarAway(false)
}, (err) => {
console.log(`ERROR(${err.code}): ${err.message}`)
}, {
enableHighAccuracy: true, timeout: 15000, maximumAge: 10000
})
}, [orderState?.options?.address?.location])
return (
handleScroll(e)}>
{!auth && (
navigation?.canGoBack() && navigation.goBack()}
showCall={false}
btnStyle={{ paddingLeft: 0 }}
style={{ paddingBottom: 0 }}
/>
)}
{auth && user?.name && (
{t('WELCOME_TITLE_APP', 'Hello there')}
{I18nManager.isRTL ? `${user?.name}, ` : `, ${user?.name}`}
)}
handleChangeSearch('')}
placeholder={t('FIND_BUSINESS', 'Find a Business')}
/>
{(isPreOrderSetting || configs?.preorder_status_enabled?.value === undefined) && (
navigation.navigate('MomentOption')}
>
{orderState.options?.moment
? parseDate(orderState?.options?.moment, { outputFormat: configs?.dates_moment_format?.value })
: t('ASAP_ABBREVIATION', 'ASAP')}
)}
auth
? navigation.navigate('AddressList', { isFromBusinesses: true })
: navigation.navigate('AddressForm', { address: orderState.options?.address,isFromBusinesses: true })}
>
{orderState?.options?.address?.address}
{isFarAway && (
{t('YOU_ARE_FAR_FROM_ADDRESS', 'Your are far from this address')}
)}
{
!businessesList.loading && businessesList.businesses.length === 0 && (
)
}
{
businessesList.businesses?.map((business: any) => (
))
}
{businessesList.loading && (
<>
{[...Array(paginationProps.nextPageItems ? paginationProps.nextPageItems : 8).keys()].map((item, i) => (
))}
>
)}
)
}
export const BusinessesListing = (props: BusinessesListingParams) => {
const BusinessesListingProps = {
...props,
isForceSearch: Platform.OS === 'ios',
UIComponent: BusinessesListingUI
}
return
}