32591/frontend/src/pages/claims/scanned_documents-view.tsx
SD-Chris f826fc655b
Created folder: frontend/src/pages/claims
Copied files from frontend/src/pages/scanned_documents into the new folder to allow Flatlogic to do a rename on everything "Scanned documents" to "Claims"
2025-07-03 10:11:51 -05:00

133 lines
4.1 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/scanned_documents/scanned_documentsSlice';
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 Scanned_documentsView = () => {
const router = useRouter();
const dispatch = useAppDispatch();
const { scanned_documents } = useAppSelector(
(state) => state.scanned_documents,
);
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 scanned_documents')}</title>
</Head>
<SectionMain>
<SectionTitleLineWithButton
icon={mdiChartTimelineVariant}
title={removeLastCharacter('View scanned_documents')}
main
>
<BaseButton
color='info'
label='Edit'
href={`/scanned_documents/scanned_documents-edit/?id=${id}`}
/>
</SectionTitleLineWithButton>
<CardBox>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>FileName</p>
<p>{scanned_documents?.file_name}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>File</p>
{scanned_documents?.file?.length ? (
dataFormatter
.filesFormatter(scanned_documents.file)
.map((link) => (
<button
key={link.publicUrl}
onClick={(e) => saveFile(e, link.publicUrl, link.name)}
>
{link.name}
</button>
))
) : (
<p>No File</p>
)}
</div>
<FormField label='UploadedAt'>
{scanned_documents.uploaded_at ? (
<DatePicker
dateFormat='yyyy-MM-dd hh:mm'
showTimeSelect
selected={
scanned_documents.uploaded_at
? new Date(
dayjs(scanned_documents.uploaded_at).format(
'YYYY-MM-DD hh:mm',
),
)
: null
}
disabled
/>
) : (
<p>No UploadedAt</p>
)}
</FormField>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>UploadedBy</p>
<p>{scanned_documents?.uploaded_by?.firstName ?? 'No data'}</p>
</div>
<BaseDivider />
<BaseButton
color='info'
label='Back'
onClick={() =>
router.push('/scanned_documents/scanned_documents-list')
}
/>
</CardBox>
</SectionMain>
</>
);
};
Scanned_documentsView.getLayout = function getLayout(page: ReactElement) {
return (
<LayoutAuthenticated permission={'READ_SCANNED_DOCUMENTS'}>
{page}
</LayoutAuthenticated>
);
};
export default Scanned_documentsView;