import React, { useEffect } from 'react'; import { Box, Heading, Table, Thead, Tbody, Tr, Th, Button, useDisclosure, Flex, Td, Text, Spinner, } from '@chakra-ui/react'; import { useTranslation } from 'react-i18next'; import MasterItem from '../MasterItem'; import MasterDrawer from '../MasterDrawer'; import { useGetMastersQuery } from '../../__data__/service/api'; import useShowToast from '../../hooks/useShowToast'; const TABLE_HEADERS = [ 'name' as const, 'currentJob' as const, 'phone' as const, 'actions' as const, ]; const Masters = () => { const { isOpen, onOpen, onClose } = useDisclosure(); const showToast = useShowToast(); const { t } = useTranslation('~', { keyPrefix: 'dry-wash.arm.master', }); const { data: masters, error, isLoading, isSuccess } = useGetMastersQuery(); useEffect(() => { if (error) { showToast(t('error.title'), 'error'); } }, [error]); return ( {t('title')} {TABLE_HEADERS.map((name) => ( ))} {isLoading && ( )} {isSuccess && masters.length === 0 && ( )} {isSuccess && masters.map((master, index) => ( ))}
{t(`table.header.${name}`)}
{t('table.empty')}
); }; export default Masters;