import React, { useState, useEffect } from 'react'
import { OrderList, useLanguage, useOrder, ToastType, useToast } from 'ordering-components/native'
import { OText } from '../shared'
import { NotFoundSource } from '../NotFoundSource'
import { ActiveOrders } from '../ActiveOrders'
import { PreviousOrders } from '../PreviousOrders'
import { OptionTitle } from './styles'
import { OrdersOptionParams } from '../../types'
import {
Placeholder,
PlaceholderLine,
Fade
} from "rn-placeholder";
import { View, TouchableOpacity } from 'react-native'
import { useTheme } from 'styled-components/native'
const OrdersOptionUI = (props: OrdersOptionParams) => {
const {
navigation,
activeOrders,
orderList,
pagination,
titleContent,
customArray,
onNavigationRedirect,
orderStatus,
loadMoreOrders,
loadOrders,
ordersLength,
setOrdersLength
} = props
const theme = useTheme()
const [, t] = useLanguage()
const [, { reorder }] = useOrder()
const [, { showToast }] = useToast()
const { loading, error, orders: values } = orderList
const imageFails = activeOrders
? theme.images.general.emptyActiveOrders
: theme.images.general.emptyPastOrders
const orders = customArray || values || []
const [reorderLoading, setReorderLoading] = useState(false)
const [isLoadingFirstRender, setIsLoadingFirstRender] = useState(false)
const [screen, setScreen] = useState({ name: '', uuid: null })
const [filterForOrders, setFilterForOrders] = useState('active-orders')
const [ordersFiltered, setOrdersFiltered] = useState(orders.filter((order : any) => orderStatus.includes(order.status)))
const handleReorder = async (orderId: number) => {
setReorderLoading(true)
try {
const { error, result } = await reorder(orderId)
if (!error) {
onNavigationRedirect && onNavigationRedirect('CheckoutNavigator', { cartUuid: result.uuid })
setReorderLoading(false)
return
}
setReorderLoading(false)
} catch (err: any) {
showToast(ToastType.Error, t('ERROR', err.message))
setReorderLoading(false)
}
}
const getOrderStatus = (s: string) => {
const status = parseInt(s)
const orderStatus = [
{ key: 0, value: t('PENDING', 'Pending') },
{ key: 1, value: t('COMPLETED', 'Completed') },
{ key: 2, value: t('REJECTED', 'Rejected') },
{ key: 3, value: t('DRIVER_IN_BUSINESS', 'Driver in business') },
{ key: 4, value: t('PREPARATION_COMPLETED', 'Preparation Completed') },
{ key: 5, value: t('REJECTED_BY_BUSINESS', 'Rejected by business') },
{ key: 6, value: t('REJECTED_BY_DRIVER', 'Rejected by Driver') },
{ key: 7, value: t('ACCEPTED_BY_BUSINESS', 'Accepted by business') },
{ key: 8, value: t('ACCEPTED_BY_DRIVER', 'Accepted by driver') },
{ key: 9, value: t('PICK_UP_COMPLETED_BY_DRIVER', 'Pick up completed by driver') },
{ key: 10, value: t('PICK_UP_FAILED_BY_DRIVER', 'Pick up Failed by driver') },
{ key: 11, value: t('DELIVERY_COMPLETED_BY_DRIVER', 'Delivery completed by driver') },
{ key: 12, value: t('DELIVERY_FAILED_BY_DRIVER', 'Delivery Failed by driver') },
{ key: 13, value: t('PREORDER', 'PreOrder') },
{ key: 14, value: t('ORDER_NOT_READY', 'Order not ready') },
{ key: 15, value: t('ORDER_PICKEDUP_COMPLETED_BY_CUSTOMER', 'Order picked up completed by customer') },
{ key: 16, value: t('CANCELLED_BY_CUSTOMER', 'Cancelled by customer') },
{ key: 17, value: t('ORDER_NOT_PICKEDUP_BY_CUSTOMER', 'Order not picked up by customer') },
{ key: 18, value: t('DRIVER_ALMOST_ARRIVED_TO_BUSINESS', 'Driver almost arrived to business') },
{ key: 19, value: t('DRIVER_ALMOST_ARRIVED_TO_CUSTOMER', 'Driver almost arrived to customer') },
{ key: 20, value: t('ORDER_CUSTOMER_ALMOST_ARRIVED_BUSINESS', 'Customer almost arrived to business') },
{ key: 21, value: t('ORDER_CUSTOMER_ARRIVED_BUSINESS', 'Customer arrived to business') },
{ key: 22, value: t('ORDER_LOOKING_FOR_DRIVER', 'Looking for driver') },
{ key: 23, value: t('ORDER_DRIVER_ON_WAY', 'Driver on way') }
]
const objectStatus = orderStatus.find((o) => o.key === status)
return objectStatus && objectStatus
}
useEffect(() => {
const length = orders.filter((order : any) => orderStatus.includes(order.status)).length
setOrdersLength && setOrdersLength({
...ordersLength,
[activeOrders ? 'activeOrdersLength' : 'previousOrdersLength']: length
})
ordersLength[activeOrders ? 'activeOrdersLength' : 'previousOrdersLength'] = length
}, [orders])
useEffect(() => {
setOrdersFiltered(filterForOrders === 'preorders'
? orders.filter((order : any) => order.status === 13)
: orders.filter((order : any) => orderStatus.includes(order.status) && order.status !== 13)
)
}, [filterForOrders, orders])
return (
setFilterForOrders('active-orders')}>
{titleContent || (activeOrders
? t('ACTIVE_ORDERS', 'Active Orders')
: t('PREVIOUS_ORDERS', 'Previous Orders'))}
{activeOrders && orders.filter((order : any) => order.status === 13)?.length > 0 && (
setFilterForOrders('preorders')}>
{t('PREORDERS', 'Preorders')}
)}
{!loading && !error && orders.length > 0 && !isLoadingFirstRender && (
activeOrders ? (
order.status === 13)?.length}
/>
) : (
)
)}
{!loading &&
!isLoadingFirstRender &&
ordersLength[activeOrders ? 'activeOrdersLength' : 'previousOrdersLength'] === 0 &&
(
)}
{loading && (
<>
{activeOrders ? (
) : (
{[...Array(5)].map((item, i) => (
))}
)}
>
)}
)
}
export const OrdersOption = (props: OrdersOptionParams) => {
const MyOrdersProps = {
...props,
UIComponent: OrdersOptionUI,
orderStatus: props.activeOrders
? [0, 3, 4, 7, 8, 9, 13, 14, 15, 18, 19, 20, 21, 22, 23]
: [1, 2, 5, 6, 10, 11, 12, 16, 17],
useDefualtSessionManager: true,
paginationSettings: {
initialPage: 1,
pageSize: 10,
controlType: 'infinity'
}
}
return
}