37742-vm/frontend/src/pages/contacts/contacts-view.tsx
Flatlogic Bot d4a5e6b45c v1
2026-01-23 12:14:34 +00:00

439 lines
10 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/contacts/contactsSlice'
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";
const ContactsView = () => {
const router = useRouter()
const dispatch = useAppDispatch()
const { contacts } = useAppSelector((state) => state.contacts)
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 contacts')}</title>
</Head>
<SectionMain>
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={removeLastCharacter('View contacts')} main>
<BaseButton
color='info'
label='Edit'
href={`/contacts/contacts-edit/?id=${id}`}
/>
</SectionTitleLineWithButton>
<CardBox>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Name</p>
<p>{contacts?.name}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Email</p>
<p>{contacts?.email}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Phone</p>
<p>{contacts?.phone}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>JobTitle</p>
<p>{contacts?.title}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Company</p>
<p>{contacts?.company}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Owner</p>
<p>{contacts?.owner?.firstName ?? 'No data'}</p>
</div>
<FormField label='Multi Text' hasTextareaHeight>
<textarea className={'w-full'} disabled value={contacts?.notes} />
</FormField>
<>
<p className={'block font-bold mb-2'}>Deals PrimaryContact</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>Title</th>
<th>DealNumber</th>
<th>Value</th>
<th>Currency</th>
<th>Status</th>
<th>CloseDate</th>
</tr>
</thead>
<tbody>
{contacts.deals_primary_contact && Array.isArray(contacts.deals_primary_contact) &&
contacts.deals_primary_contact.map((item: any) => (
<tr key={item.id} onClick={() => router.push(`/deals/deals-view/?id=${item.id}`)}>
<td data-label="title">
{ item.title }
</td>
<td data-label="deal_number">
{ item.deal_number }
</td>
<td data-label="value">
{ item.value }
</td>
<td data-label="currency">
{ item.currency }
</td>
<td data-label="status">
{ item.status }
</td>
<td data-label="close_date">
{ dataFormatter.dateTimeFormatter(item.close_date) }
</td>
</tr>
))}
</tbody>
</table>
</div>
{!contacts?.deals_primary_contact?.length && <div className={'text-center py-4'}>No data</div>}
</CardBox>
</>
<BaseDivider />
<BaseButton
color='info'
label='Back'
onClick={() => router.push('/contacts/contacts-list')}
/>
</CardBox>
</SectionMain>
</>
);
};
ContactsView.getLayout = function getLayout(page: ReactElement) {
return (
<LayoutAuthenticated
permission={'READ_CONTACTS'}
>
{page}
</LayoutAuthenticated>
)
}
export default ContactsView;