38501-vm/frontend/src/pages/leads/leads-view.tsx
2026-02-17 01:04:19 +00:00

1357 lines
36 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/leads/leadsSlice'
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 LeadsView = () => {
const router = useRouter()
const dispatch = useAppDispatch()
const { leads } = useAppSelector((state) => state.leads)
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 leads')}</title>
</Head>
<SectionMain>
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={removeLastCharacter('View leads')} main>
<BaseButton
color='info'
label='Edit'
href={`/leads/leads-edit/?id=${id}`}
/>
</SectionTitleLineWithButton>
<CardBox>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>User</p>
<p>{leads?.user?.firstName ?? 'No data'}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Category</p>
<p>{leads?.category?.name ?? 'No data'}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Keyword</p>
<p>{leads?.keyword}</p>
</div>
<FormField label='Multi Text' hasTextareaHeight>
<textarea className={'w-full'} disabled value={leads?.description} />
</FormField>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Urgency</p>
<p>{leads?.urgency ?? 'No data'}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Status</p>
<p>{leads?.status ?? 'No data'}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>ContactName</p>
<p>{leads?.contact_name}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>ContactPhone</p>
<p>{leads?.contact_phone}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>ContactEmail</p>
<p>{leads?.contact_email}</p>
</div>
<FormField label='Multi Text' hasTextareaHeight>
<textarea className={'w-full'} disabled value={leads?.address} />
</FormField>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>City</p>
<p>{leads?.city}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>State</p>
<p>{leads?.state}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>ZIP</p>
<p>{leads?.zip}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Latitude</p>
<p>{leads?.lat || 'No data'}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Longitude</p>
<p>{leads?.lng || 'No data'}</p>
</div>
<FormField label='Multi Text' hasTextareaHeight>
<textarea className={'w-full'} disabled value={leads?.inferred_tags_json} />
</FormField>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>TenantKey</p>
<p>{leads?.tenant_key}</p>
</div>
<FormField label='CreatedAt'>
{leads.created_at_ts ? <DatePicker
dateFormat="yyyy-MM-dd hh:mm"
showTimeSelect
selected={leads.created_at_ts ?
new Date(
dayjs(leads.created_at_ts).format('YYYY-MM-DD hh:mm'),
) : null
}
disabled
/> : <p>No CreatedAt</p>}
</FormField>
<FormField label='UpdatedAt'>
{leads.updated_at_ts ? <DatePicker
dateFormat="yyyy-MM-dd hh:mm"
showTimeSelect
selected={leads.updated_at_ts ?
new Date(
dayjs(leads.updated_at_ts).format('YYYY-MM-DD hh:mm'),
) : null
}
disabled
/> : <p>No UpdatedAt</p>}
</FormField>
<>
<p className={'block font-bold mb-2'}>Lead_photos Lead</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>CreatedAt</th>
</tr>
</thead>
<tbody>
{leads.lead_photos_lead && Array.isArray(leads.lead_photos_lead) &&
leads.lead_photos_lead.map((item: any) => (
<tr key={item.id} onClick={() => router.push(`/lead_photos/lead_photos-view/?id=${item.id}`)}>
<td data-label="created_at_ts">
{ dataFormatter.dateTimeFormatter(item.created_at_ts) }
</td>
</tr>
))}
</tbody>
</table>
</div>
{!leads?.lead_photos_lead?.length && <div className={'text-center py-4'}>No data</div>}
</CardBox>
</>
<>
<p className={'block font-bold mb-2'}>Lead_matches Lead</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>MatchScore</th>
<th>Status</th>
<th>SentAt</th>
<th>ViewedAt</th>
<th>RespondedAt</th>
<th>ScheduledAt</th>
<th>CompletedAt</th>
<th>DeclinedAt</th>
<th>CreatedAt</th>
<th>UpdatedAt</th>
</tr>
</thead>
<tbody>
{leads.lead_matches_lead && Array.isArray(leads.lead_matches_lead) &&
leads.lead_matches_lead.map((item: any) => (
<tr key={item.id} onClick={() => router.push(`/lead_matches/lead_matches-view/?id=${item.id}`)}>
<td data-label="match_score">
{ item.match_score }
</td>
<td data-label="status">
{ item.status }
</td>
<td data-label="sent_at">
{ dataFormatter.dateTimeFormatter(item.sent_at) }
</td>
<td data-label="viewed_at">
{ dataFormatter.dateTimeFormatter(item.viewed_at) }
</td>
<td data-label="responded_at">
{ dataFormatter.dateTimeFormatter(item.responded_at) }
</td>
<td data-label="scheduled_at">
{ dataFormatter.dateTimeFormatter(item.scheduled_at) }
</td>
<td data-label="completed_at">
{ dataFormatter.dateTimeFormatter(item.completed_at) }
</td>
<td data-label="declined_at">
{ dataFormatter.dateTimeFormatter(item.declined_at) }
</td>
<td data-label="created_at_ts">
{ dataFormatter.dateTimeFormatter(item.created_at_ts) }
</td>
<td data-label="updated_at_ts">
{ dataFormatter.dateTimeFormatter(item.updated_at_ts) }
</td>
</tr>
))}
</tbody>
</table>
</div>
{!leads?.lead_matches_lead?.length && <div className={'text-center py-4'}>No data</div>}
</CardBox>
</>
<>
<p className={'block font-bold mb-2'}>Messages Lead</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>Body</th>
<th>ReadAt</th>
<th>CreatedAt</th>
</tr>
</thead>
<tbody>
{leads.messages_lead && Array.isArray(leads.messages_lead) &&
leads.messages_lead.map((item: any) => (
<tr key={item.id} onClick={() => router.push(`/messages/messages-view/?id=${item.id}`)}>
<td data-label="body">
{ item.body }
</td>
<td data-label="read_at">
{ dataFormatter.dateTimeFormatter(item.read_at) }
</td>
<td data-label="created_at_ts">
{ dataFormatter.dateTimeFormatter(item.created_at_ts) }
</td>
</tr>
))}
</tbody>
</table>
</div>
{!leads?.messages_lead?.length && <div className={'text-center py-4'}>No data</div>}
</CardBox>
</>
<>
<p className={'block font-bold mb-2'}>Lead_events Lead</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>EventType</th>
<th>FromValue</th>
<th>ToValue</th>
<th>MetaJSON</th>
<th>CreatedAt</th>
</tr>
</thead>
<tbody>
{leads.lead_events_lead && Array.isArray(leads.lead_events_lead) &&
leads.lead_events_lead.map((item: any) => (
<tr key={item.id} onClick={() => router.push(`/lead_events/lead_events-view/?id=${item.id}`)}>
<td data-label="event_type">
{ item.event_type }
</td>
<td data-label="from_value">
{ item.from_value }
</td>
<td data-label="to_value">
{ item.to_value }
</td>
<td data-label="meta_json">
{ item.meta_json }
</td>
<td data-label="created_at_ts">
{ dataFormatter.dateTimeFormatter(item.created_at_ts) }
</td>
</tr>
))}
</tbody>
</table>
</div>
{!leads?.lead_events_lead?.length && <div className={'text-center py-4'}>No data</div>}
</CardBox>
</>
<>
<p className={'block font-bold mb-2'}>Reviews Lead</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>Rating</th>
<th>Text</th>
<th>IsVerifiedJob</th>
<th>Status</th>
<th>ModerationNotes</th>
<th>CreatedAt</th>
<th>UpdatedAt</th>
</tr>
</thead>
<tbody>
{leads.reviews_lead && Array.isArray(leads.reviews_lead) &&
leads.reviews_lead.map((item: any) => (
<tr key={item.id} onClick={() => router.push(`/reviews/reviews-view/?id=${item.id}`)}>
<td data-label="rating">
{ item.rating }
</td>
<td data-label="text">
{ item.text }
</td>
<td data-label="is_verified_job">
{ dataFormatter.booleanFormatter(item.is_verified_job) }
</td>
<td data-label="status">
{ item.status }
</td>
<td data-label="moderation_notes">
{ item.moderation_notes }
</td>
<td data-label="created_at_ts">
{ dataFormatter.dateTimeFormatter(item.created_at_ts) }
</td>
<td data-label="updated_at_ts">
{ dataFormatter.dateTimeFormatter(item.updated_at_ts) }
</td>
</tr>
))}
</tbody>
</table>
</div>
{!leads?.reviews_lead?.length && <div className={'text-center py-4'}>No data</div>}
</CardBox>
</>
<>
<p className={'block font-bold mb-2'}>Disputes Lead</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>Reason</th>
<th>Status</th>
<th>ResolutionNotes</th>
<th>CreatedAt</th>
<th>UpdatedAt</th>
</tr>
</thead>
<tbody>
{leads.disputes_lead && Array.isArray(leads.disputes_lead) &&
leads.disputes_lead.map((item: any) => (
<tr key={item.id} onClick={() => router.push(`/disputes/disputes-view/?id=${item.id}`)}>
<td data-label="reason">
{ item.reason }
</td>
<td data-label="status">
{ item.status }
</td>
<td data-label="resolution_notes">
{ item.resolution_notes }
</td>
<td data-label="created_at_ts">
{ dataFormatter.dateTimeFormatter(item.created_at_ts) }
</td>
<td data-label="updated_at_ts">
{ dataFormatter.dateTimeFormatter(item.updated_at_ts) }
</td>
</tr>
))}
</tbody>
</table>
</div>
{!leads?.disputes_lead?.length && <div className={'text-center py-4'}>No data</div>}
</CardBox>
</>
<BaseDivider />
<BaseButton
color='info'
label='Back'
onClick={() => router.push('/leads/leads-list')}
/>
</CardBox>
</SectionMain>
</>
);
};
LeadsView.getLayout = function getLayout(page: ReactElement) {
return (
<LayoutAuthenticated
permission={'READ_LEADS'}
>
{page}
</LayoutAuthenticated>
)
}
export default LeadsView;