373 lines
13 KiB
TypeScript
373 lines
13 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/organizations/organizationsSlice';
|
|
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 OrganizationsView = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
const { organizations } = useAppSelector((state) => state.organizations);
|
|
|
|
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 organizations')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title={removeLastCharacter('View organizations')}
|
|
main
|
|
>
|
|
<BaseButton
|
|
color='info'
|
|
label='Edit'
|
|
href={`/organizations/organizations-edit/?id=${id}`}
|
|
/>
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Name</p>
|
|
<p>{organizations?.name}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Logo url</p>
|
|
<p>{organizations?.logo_url}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Primary color</p>
|
|
<p>{organizations?.primary_color}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Secondary color</p>
|
|
<p>{organizations?.secondary_color}</p>
|
|
</div>
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Users Organizations</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>First Name</th>
|
|
|
|
<th>Last Name</th>
|
|
|
|
<th>Phone Number</th>
|
|
|
|
<th>E-Mail</th>
|
|
|
|
<th>Disabled</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{organizations.users_organizations &&
|
|
Array.isArray(organizations.users_organizations) &&
|
|
organizations.users_organizations.map((item: any) => (
|
|
<tr
|
|
key={item.id}
|
|
onClick={() =>
|
|
router.push(`/users/users-view/?id=${item.id}`)
|
|
}
|
|
>
|
|
<td data-label='firstName'>{item.firstName}</td>
|
|
|
|
<td data-label='lastName'>{item.lastName}</td>
|
|
|
|
<td data-label='phoneNumber'>{item.phoneNumber}</td>
|
|
|
|
<td data-label='email'>{item.email}</td>
|
|
|
|
<td data-label='disabled'>
|
|
{dataFormatter.booleanFormatter(item.disabled)}
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!organizations?.users_organizations?.length && (
|
|
<div className={'text-center py-4'}>No data</div>
|
|
)}
|
|
</CardBox>
|
|
</>
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Actions organizations</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>DueDate</th>
|
|
|
|
<th>Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{organizations.actions_organizations &&
|
|
Array.isArray(organizations.actions_organizations) &&
|
|
organizations.actions_organizations.map((item: any) => (
|
|
<tr
|
|
key={item.id}
|
|
onClick={() =>
|
|
router.push(`/actions/actions-view/?id=${item.id}`)
|
|
}
|
|
>
|
|
<td data-label='due_date'>
|
|
{dataFormatter.dateTimeFormatter(item.due_date)}
|
|
</td>
|
|
|
|
<td data-label='status'>{item.status}</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!organizations?.actions_organizations?.length && (
|
|
<div className={'text-center py-4'}>No data</div>
|
|
)}
|
|
</CardBox>
|
|
</>
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Branches organizations</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
|
|
<th>Location</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{organizations.branches_organizations &&
|
|
Array.isArray(organizations.branches_organizations) &&
|
|
organizations.branches_organizations.map((item: any) => (
|
|
<tr
|
|
key={item.id}
|
|
onClick={() =>
|
|
router.push(
|
|
`/branches/branches-view/?id=${item.id}`,
|
|
)
|
|
}
|
|
>
|
|
<td data-label='name'>{item.name}</td>
|
|
|
|
<td data-label='location'>{item.location}</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!organizations?.branches_organizations?.length && (
|
|
<div className={'text-center py-4'}>No data</div>
|
|
)}
|
|
</CardBox>
|
|
</>
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Checklists organizations</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{organizations.checklists_organizations &&
|
|
Array.isArray(organizations.checklists_organizations) &&
|
|
organizations.checklists_organizations.map(
|
|
(item: any) => (
|
|
<tr
|
|
key={item.id}
|
|
onClick={() =>
|
|
router.push(
|
|
`/checklists/checklists-view/?id=${item.id}`,
|
|
)
|
|
}
|
|
>
|
|
<td data-label='title'>{item.title}</td>
|
|
</tr>
|
|
),
|
|
)}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!organizations?.checklists_organizations?.length && (
|
|
<div className={'text-center py-4'}>No data</div>
|
|
)}
|
|
</CardBox>
|
|
</>
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Events organizations</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>EventType</th>
|
|
|
|
<th>EventDate</th>
|
|
|
|
<th>Status</th>
|
|
|
|
<th>RiskLevel</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{organizations.events_organizations &&
|
|
Array.isArray(organizations.events_organizations) &&
|
|
organizations.events_organizations.map((item: any) => (
|
|
<tr
|
|
key={item.id}
|
|
onClick={() =>
|
|
router.push(`/events/events-view/?id=${item.id}`)
|
|
}
|
|
>
|
|
<td data-label='event_type'>{item.event_type}</td>
|
|
|
|
<td data-label='event_date'>
|
|
{dataFormatter.dateTimeFormatter(item.event_date)}
|
|
</td>
|
|
|
|
<td data-label='status'>{item.status}</td>
|
|
|
|
<td data-label='risk_level'>{item.risk_level}</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!organizations?.events_organizations?.length && (
|
|
<div className={'text-center py-4'}>No data</div>
|
|
)}
|
|
</CardBox>
|
|
</>
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Inspections organizations</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>CompletionDate</th>
|
|
|
|
<th>Score</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{organizations.inspections_organizations &&
|
|
Array.isArray(organizations.inspections_organizations) &&
|
|
organizations.inspections_organizations.map(
|
|
(item: any) => (
|
|
<tr
|
|
key={item.id}
|
|
onClick={() =>
|
|
router.push(
|
|
`/inspections/inspections-view/?id=${item.id}`,
|
|
)
|
|
}
|
|
>
|
|
<td data-label='completion_date'>
|
|
{dataFormatter.dateTimeFormatter(
|
|
item.completion_date,
|
|
)}
|
|
</td>
|
|
|
|
<td data-label='score'>{item.score}</td>
|
|
</tr>
|
|
),
|
|
)}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!organizations?.inspections_organizations?.length && (
|
|
<div className={'text-center py-4'}>No data</div>
|
|
)}
|
|
</CardBox>
|
|
</>
|
|
|
|
<BaseDivider />
|
|
|
|
<BaseButton
|
|
color='info'
|
|
label='Back'
|
|
onClick={() => router.push('/organizations/organizations-list')}
|
|
/>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
OrganizationsView.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'READ_ORGANIZATIONS'}>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default OrganizationsView;
|