31589/frontend/src/pages/outreach_messages/outreach_messages-view.tsx
2025-05-23 18:22:37 +00:00

109 lines
3.3 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/outreach_messages/outreach_messagesSlice';
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 Outreach_messagesView = () => {
const router = useRouter();
const dispatch = useAppDispatch();
const { outreach_messages } = useAppSelector(
(state) => state.outreach_messages,
);
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 outreach_messages')}</title>
</Head>
<SectionMain>
<SectionTitleLineWithButton
icon={mdiChartTimelineVariant}
title={removeLastCharacter('View outreach_messages')}
main
>
<BaseButton
color='info'
label='Edit'
href={`/outreach_messages/outreach_messages-edit/?id=${id}`}
/>
</SectionTitleLineWithButton>
<CardBox>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Subject</p>
<p>{outreach_messages?.subject}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Body</p>
{outreach_messages.body ? (
<p dangerouslySetInnerHTML={{ __html: outreach_messages.body }} />
) : (
<p>No data</p>
)}
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Contact</p>
<p>{outreach_messages?.contact?.first_name ?? 'No data'}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>JobSeeker</p>
<p>{outreach_messages?.job_seeker?.firstName ?? 'No data'}</p>
</div>
<BaseDivider />
<BaseButton
color='info'
label='Back'
onClick={() =>
router.push('/outreach_messages/outreach_messages-list')
}
/>
</CardBox>
</SectionMain>
</>
);
};
Outreach_messagesView.getLayout = function getLayout(page: ReactElement) {
return (
<LayoutAuthenticated permission={'READ_OUTREACH_MESSAGES'}>
{page}
</LayoutAuthenticated>
);
};
export default Outreach_messagesView;