39462-vm/frontend/src/pages/funding_sources/funding_sources-view.tsx
2026-04-04 02:49:01 +00:00

696 lines
18 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/funding_sources/funding_sourcesSlice'
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 Funding_sourcesView = () => {
const router = useRouter()
const dispatch = useAppDispatch()
const { funding_sources } = useAppSelector((state) => state.funding_sources)
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 funding_sources')}</title>
</Head>
<SectionMain>
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={removeLastCharacter('View funding_sources')} main>
<BaseButton
color='info'
label='Edit'
href={`/funding_sources/funding_sources-edit/?id=${id}`}
/>
</SectionTitleLineWithButton>
<CardBox>
{hasPermission(currentUser, 'READ_ORGANIZATIONS') &&
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Organization</p>
<p>{funding_sources?.organization?.name ?? 'No data'}</p>
</div>
}
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>FundingSourceName</p>
<p>{funding_sources?.name}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>SourceType</p>
<p>{funding_sources?.source_type ?? 'No data'}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>ReferenceCode</p>
<p>{funding_sources?.reference_code}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Currency</p>
<p>{funding_sources?.currency ?? 'No data'}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>TotalCommittedAmount</p>
<p>{funding_sources?.total_committed_amount || 'No data'}</p>
</div>
<FormField label='EffectiveDate'>
{funding_sources.effective_date ? <DatePicker
dateFormat="yyyy-MM-dd hh:mm"
showTimeSelect
selected={funding_sources.effective_date ?
new Date(
dayjs(funding_sources.effective_date).format('YYYY-MM-DD hh:mm'),
) : null
}
disabled
/> : <p>No EffectiveDate</p>}
</FormField>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Status</p>
<p>{funding_sources?.status ?? 'No data'}</p>
</div>
<>
<p className={'block font-bold mb-2'}>Budget_programs FundingSource</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>ProgramName</th>
<th>ProgramCode</th>
<th>Objective</th>
<th>Status</th>
<th>ApprovedAmount</th>
<th>Currency</th>
</tr>
</thead>
<tbody>
{funding_sources.budget_programs_funding_source && Array.isArray(funding_sources.budget_programs_funding_source) &&
funding_sources.budget_programs_funding_source.map((item: any) => (
<tr key={item.id} onClick={() => router.push(`/budget_programs/budget_programs-view/?id=${item.id}`)}>
<td data-label="name">
{ item.name }
</td>
<td data-label="code">
{ item.code }
</td>
<td data-label="objective">
{ item.objective }
</td>
<td data-label="status">
{ item.status }
</td>
<td data-label="approved_amount">
{ item.approved_amount }
</td>
<td data-label="currency">
{ item.currency }
</td>
</tr>
))}
</tbody>
</table>
</div>
{!funding_sources?.budget_programs_funding_source?.length && <div className={'text-center py-4'}>No data</div>}
</CardBox>
</>
<>
<p className={'block font-bold mb-2'}>Programs FundingSource</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>ProgramName</th>
<th>ProgramCode</th>
<th>Status</th>
<th>BudgetAmount</th>
<th>Currency</th>
</tr>
</thead>
<tbody>
{funding_sources.programs_funding_source && Array.isArray(funding_sources.programs_funding_source) &&
funding_sources.programs_funding_source.map((item: any) => (
<tr key={item.id} onClick={() => router.push(`/programs/programs-view/?id=${item.id}`)}>
<td data-label="name">
{ item.name }
</td>
<td data-label="code">
{ item.code }
</td>
<td data-label="status">
{ item.status }
</td>
<td data-label="budget_amount">
{ item.budget_amount }
</td>
<td data-label="currency">
{ item.currency }
</td>
</tr>
))}
</tbody>
</table>
</div>
{!funding_sources?.programs_funding_source?.length && <div className={'text-center py-4'}>No data</div>}
</CardBox>
</>
<BaseDivider />
<BaseButton
color='info'
label='Back'
onClick={() => router.push('/funding_sources/funding_sources-list')}
/>
</CardBox>
</SectionMain>
</>
);
};
Funding_sourcesView.getLayout = function getLayout(page: ReactElement) {
return (
<LayoutAuthenticated
permission={'READ_FUNDING_SOURCES'}
>
{page}
</LayoutAuthenticated>
)
}
export default Funding_sourcesView;