import React, { useState } from 'react'; import { Td, Tr, Link, Select } from '@chakra-ui/react'; import { useTranslation } from 'react-i18next'; import dayjs from 'dayjs'; import { getTimeSlot } from '../../lib'; const statuses = [ 'pending' as const, 'progress' as const, 'working' as const, 'canceled' as const, 'complete' as const, ]; type GetArrItemType = ArrType extends Array ? ItemType : never; export type OrderProps = { carNumber?: string; startWashTime?: string; endWashTime?: string; orderDate?: string; status?: GetArrItemType; phone?: string; location?: string; }; type Status = (typeof statuses)[number]; const statusColors: Record = { pending: 'yellow.100', progress: 'blue.100', working: 'orange.100', canceled: 'red.100', complete: 'green.100', }; const OrderItem = ({ carNumber, startWashTime, endWashTime, orderDate, status, phone, location, }: OrderProps) => { const { t } = useTranslation('~', { keyPrefix: 'dry-wash.arm.order', }); const [statusSelect, setStatus] = useState(status); const bgColor = statusColors[statusSelect]; return ( {carNumber} {getTimeSlot(startWashTime, endWashTime)} {dayjs(orderDate).format('DD.MM.YYYY')} {phone} {location} ); }; export default OrderItem;