39538-vm/frontend/src/pages/exceptions/exceptions-view.tsx
2026-04-10 00:48:02 +00:00

866 lines
21 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/exceptions/exceptionsSlice'
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 ExceptionsView = () => {
const router = useRouter()
const dispatch = useAppDispatch()
const { exceptions } = useAppSelector((state) => state.exceptions)
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 exceptions')}</title>
</Head>
<SectionMain>
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={removeLastCharacter('View exceptions')} main>
<BaseButton
color='info'
label='Edit'
href={`/exceptions/exceptions-edit/?id=${id}`}
/>
</SectionTitleLineWithButton>
<CardBox>
{hasPermission(currentUser, 'READ_ORGANIZATIONS') &&
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Organization</p>
<p>{exceptions?.organization?.name ?? 'No data'}</p>
</div>
}
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>ExceptionName</p>
<p>{exceptions?.exception_name}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>ExceptionType</p>
<p>{exceptions?.exception_type ?? 'No data'}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Subject</p>
<p>{exceptions?.subject}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Approver</p>
<p>{exceptions?.approver_user?.firstName ?? 'No data'}</p>
</div>
<FormField label='Multi Text' hasTextareaHeight>
<textarea className={'w-full'} disabled value={exceptions?.reason} />
</FormField>
<FormField label='GrantedAt'>
{exceptions.granted_at ? <DatePicker
dateFormat="yyyy-MM-dd hh:mm"
showTimeSelect
selected={exceptions.granted_at ?
new Date(
dayjs(exceptions.granted_at).format('YYYY-MM-DD hh:mm'),
) : null
}
disabled
/> : <p>No GrantedAt</p>}
</FormField>
<FormField label='ExpiresAt'>
{exceptions.expires_at ? <DatePicker
dateFormat="yyyy-MM-dd hh:mm"
showTimeSelect
selected={exceptions.expires_at ?
new Date(
dayjs(exceptions.expires_at).format('YYYY-MM-DD hh:mm'),
) : null
}
disabled
/> : <p>No ExpiresAt</p>}
</FormField>
<FormField label='RevokedAt'>
{exceptions.revoked_at ? <DatePicker
dateFormat="yyyy-MM-dd hh:mm"
showTimeSelect
selected={exceptions.revoked_at ?
new Date(
dayjs(exceptions.revoked_at).format('YYYY-MM-DD hh:mm'),
) : null
}
disabled
/> : <p>No RevokedAt</p>}
</FormField>
<FormField label='Follow-upReviewRequired'>
<SwitchField
field={{name: 'followup_review_required', value: exceptions?.followup_review_required}}
form={{setFieldValue: () => null}}
disabled
/>
</FormField>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Status</p>
<p>{exceptions?.status ?? 'No data'}</p>
</div>
<>
<p className={'block font-bold mb-2'}>LinkedArtifacts</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>ArtifactName</th>
<th>ArtifactType</th>
<th>ArtifactReference</th>
<th>CollectedAt</th>
<th>EventTimestamp</th>
<th>SubjectUser</th>
<th>Status</th>
<th>ValidationNotes</th>
<th>EvidenceStrengthScore</th>
<th>ChainIntegrityScore</th>
<th>RetentionExpiry</th>
<th>Tags</th>
</tr>
</thead>
<tbody>
{exceptions.linked_artifacts && Array.isArray(exceptions.linked_artifacts) &&
exceptions.linked_artifacts.map((item: any) => (
<tr key={item.id} onClick={() => router.push(`/artifacts/artifacts-view/?id=${item.id}`)}>
<td data-label="artifact_name">
{ item.artifact_name }
</td>
<td data-label="artifact_type">
{ item.artifact_type }
</td>
<td data-label="artifact_reference">
{ item.artifact_reference }
</td>
<td data-label="collected_at">
{ dataFormatter.dateTimeFormatter(item.collected_at) }
</td>
<td data-label="event_timestamp">
{ dataFormatter.dateTimeFormatter(item.event_timestamp) }
</td>
<td data-label="subject_user">
{ item.subject_user }
</td>
<td data-label="status">
{ item.status }
</td>
<td data-label="validation_notes">
{ item.validation_notes }
</td>
<td data-label="evidence_strength_score">
{ item.evidence_strength_score }
</td>
<td data-label="chain_integrity_score">
{ item.chain_integrity_score }
</td>
<td data-label="retention_expiry">
{ dataFormatter.dateTimeFormatter(item.retention_expiry) }
</td>
<td data-label="tags">
{ item.tags }
</td>
</tr>
))}
</tbody>
</table>
</div>
{!exceptions?.linked_artifacts?.length && <div className={'text-center py-4'}>No data</div>}
</CardBox>
</>
<FormField label='Multi Text' hasTextareaHeight>
<textarea className={'w-full'} disabled value={exceptions?.notes} />
</FormField>
<BaseDivider />
<BaseButton
color='info'
label='Back'
onClick={() => router.push('/exceptions/exceptions-list')}
/>
</CardBox>
</SectionMain>
</>
);
};
ExceptionsView.getLayout = function getLayout(page: ReactElement) {
return (
<LayoutAuthenticated
permission={'READ_EXCEPTIONS'}
>
{page}
</LayoutAuthenticated>
)
}
export default ExceptionsView;