163 lines
5.2 KiB
TypeScript
163 lines
5.2 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/ai_agents/ai_agentsSlice';
|
|
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 Ai_agentsView = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
const { ai_agents } = useAppSelector((state) => state.ai_agents);
|
|
|
|
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 ai_agents')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title={removeLastCharacter('View ai_agents')}
|
|
main
|
|
>
|
|
<BaseButton
|
|
color='info'
|
|
label='Edit'
|
|
href={`/ai_agents/ai_agents-edit/?id=${id}`}
|
|
/>
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>AgentName</p>
|
|
<p>{ai_agents?.name}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>SitemapURL</p>
|
|
<p>{ai_agents?.sitemap_url}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Description</p>
|
|
{ai_agents.description ? (
|
|
<p dangerouslySetInnerHTML={{ __html: ai_agents.description }} />
|
|
) : (
|
|
<p>No data</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>organizations</p>
|
|
|
|
<p>{ai_agents?.organizations?.name ?? 'No data'}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Website</p>
|
|
|
|
<p>{ai_agents?.website?.name ?? 'No data'}</p>
|
|
</div>
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Interactions Agent</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>InteractionStart</th>
|
|
|
|
<th>InteractionEnd</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{ai_agents.interactions_agent &&
|
|
Array.isArray(ai_agents.interactions_agent) &&
|
|
ai_agents.interactions_agent.map((item: any) => (
|
|
<tr
|
|
key={item.id}
|
|
onClick={() =>
|
|
router.push(
|
|
`/interactions/interactions-view/?id=${item.id}`,
|
|
)
|
|
}
|
|
>
|
|
<td data-label='interaction_start'>
|
|
{dataFormatter.dateTimeFormatter(
|
|
item.interaction_start,
|
|
)}
|
|
</td>
|
|
|
|
<td data-label='interaction_end'>
|
|
{dataFormatter.dateTimeFormatter(
|
|
item.interaction_end,
|
|
)}
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!ai_agents?.interactions_agent?.length && (
|
|
<div className={'text-center py-4'}>No data</div>
|
|
)}
|
|
</CardBox>
|
|
</>
|
|
|
|
<BaseDivider />
|
|
|
|
<BaseButton
|
|
color='info'
|
|
label='Back'
|
|
onClick={() => router.push('/ai_agents/ai_agents-list')}
|
|
/>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
Ai_agentsView.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'READ_AI_AGENTS'}>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default Ai_agentsView;
|