33651/frontend/src/pages/clients/clients-view.tsx
2025-08-27 05:21:23 +00:00

242 lines
7.8 KiB
TypeScript

import React, { ReactElement, useEffect } from 'react';
import Head from 'next/head';
import DatePicker from 'react-datepicker';
import 'react-datepicker/dist/react-datepicker.css';
import dayjs from 'dayjs';
import { useAppDispatch, useAppSelector } from '../../stores/hooks';
import { useRouter } from 'next/router';
import { fetch } from '../../stores/clients/clientsSlice';
import { saveFile } from '../../helpers/fileSaver';
import dataFormatter from '../../helpers/dataFormatter';
import ImageField from '../../components/ImageField';
import LayoutAuthenticated from '../../layouts/Authenticated';
import { getPageTitle } from '../../config';
import SectionTitleLineWithButton from '../../components/SectionTitleLineWithButton';
import SectionMain from '../../components/SectionMain';
import CardBox from '../../components/CardBox';
import BaseButton from '../../components/BaseButton';
import BaseDivider from '../../components/BaseDivider';
import { mdiChartTimelineVariant } from '@mdi/js';
import { SwitchField } from '../../components/SwitchField';
import FormField from '../../components/FormField';
import { hasPermission } from '../../helpers/userPermissions';
const ClientsView = () => {
const router = useRouter();
const dispatch = useAppDispatch();
const { clients } = useAppSelector((state) => state.clients);
const { currentUser } = useAppSelector((state) => state.auth);
const { id } = router.query;
function removeLastCharacter(str) {
console.log(str, `str`);
return str.slice(0, -1);
}
useEffect(() => {
dispatch(fetch({ id }));
}, [dispatch, id]);
return (
<>
<Head>
<title>{getPageTitle('View clients')}</title>
</Head>
<SectionMain>
<SectionTitleLineWithButton
icon={mdiChartTimelineVariant}
title={removeLastCharacter('View clients')}
main
>
<BaseButton
color='info'
label='Edit'
href={`/clients/clients-edit/?id=${id}`}
/>
</SectionTitleLineWithButton>
<CardBox>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Name</p>
<p>{clients?.name}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>ContactEmail</p>
<p>{clients?.contact_email}</p>
</div>
<>
<p className={'block font-bold mb-2'}>Orders</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>RequestedDate</th>
<th>Status</th>
<th>Fee</th>
</tr>
</thead>
<tbody>
{clients.orders &&
Array.isArray(clients.orders) &&
clients.orders.map((item: any) => (
<tr
key={item.id}
onClick={() =>
router.push(`/orders/orders-view/?id=${item.id}`)
}
>
<td data-label='requested_date'>
{dataFormatter.dateTimeFormatter(
item.requested_date,
)}
</td>
<td data-label='status'>{item.status}</td>
<td data-label='fee'>{item.fee}</td>
</tr>
))}
</tbody>
</table>
</div>
{!clients?.orders?.length && (
<div className={'text-center py-4'}>No data</div>
)}
</CardBox>
</>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>organizations</p>
<p>{clients?.organizations?.name ?? 'No data'}</p>
</div>
<>
<p className={'block font-bold mb-2'}>Invoices Client</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>TotalAmount</th>
<th>IssueDate</th>
<th>DueDate</th>
</tr>
</thead>
<tbody>
{clients.invoices_client &&
Array.isArray(clients.invoices_client) &&
clients.invoices_client.map((item: any) => (
<tr
key={item.id}
onClick={() =>
router.push(
`/invoices/invoices-view/?id=${item.id}`,
)
}
>
<td data-label='total_amount'>{item.total_amount}</td>
<td data-label='issue_date'>
{dataFormatter.dateTimeFormatter(item.issue_date)}
</td>
<td data-label='due_date'>
{dataFormatter.dateTimeFormatter(item.due_date)}
</td>
</tr>
))}
</tbody>
</table>
</div>
{!clients?.invoices_client?.length && (
<div className={'text-center py-4'}>No data</div>
)}
</CardBox>
</>
<>
<p className={'block font-bold mb-2'}>Orders Client</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>RequestedDate</th>
<th>Status</th>
<th>Fee</th>
</tr>
</thead>
<tbody>
{clients.orders_client &&
Array.isArray(clients.orders_client) &&
clients.orders_client.map((item: any) => (
<tr
key={item.id}
onClick={() =>
router.push(`/orders/orders-view/?id=${item.id}`)
}
>
<td data-label='requested_date'>
{dataFormatter.dateTimeFormatter(
item.requested_date,
)}
</td>
<td data-label='status'>{item.status}</td>
<td data-label='fee'>{item.fee}</td>
</tr>
))}
</tbody>
</table>
</div>
{!clients?.orders_client?.length && (
<div className={'text-center py-4'}>No data</div>
)}
</CardBox>
</>
<BaseDivider />
<BaseButton
color='info'
label='Back'
onClick={() => router.push('/clients/clients-list')}
/>
</CardBox>
</SectionMain>
</>
);
};
ClientsView.getLayout = function getLayout(page: ReactElement) {
return (
<LayoutAuthenticated permission={'READ_CLIENTS'}>
{page}
</LayoutAuthenticated>
);
};
export default ClientsView;