725 lines
21 KiB
TypeScript
725 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/users/usersSlice'
|
|
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 UsersView = () => {
|
|
const router = useRouter()
|
|
const dispatch = useAppDispatch()
|
|
const { users } = useAppSelector((state) => state.users)
|
|
|
|
|
|
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 users')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={removeLastCharacter('View users')} main>
|
|
<BaseButton
|
|
color='info'
|
|
label='Edit'
|
|
href={`/users/users-edit/?id=${id}`}
|
|
/>
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>First Name</p>
|
|
<p>{users?.firstName}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Last Name</p>
|
|
<p>{users?.lastName}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Phone Number</p>
|
|
<p>{users?.phoneNumber}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>E-Mail</p>
|
|
<p>{users?.email}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='Disabled'>
|
|
<SwitchField
|
|
field={{name: 'disabled', value: users?.disabled}}
|
|
form={{setFieldValue: () => null}}
|
|
disabled
|
|
/>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Avatar</p>
|
|
{users?.avatar?.length
|
|
? (
|
|
<ImageField
|
|
name={'avatar'}
|
|
image={users?.avatar}
|
|
className='w-20 h-20'
|
|
/>
|
|
) : <p>No Avatar</p>
|
|
}
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>App Role</p>
|
|
|
|
|
|
|
|
|
|
<p>{users?.app_role?.name ?? 'No data'}</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Custom Permissions</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
|
|
|
|
|
|
|
|
|
|
<th>Name</th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{users.custom_permissions && Array.isArray(users.custom_permissions) &&
|
|
users.custom_permissions.map((item: any) => (
|
|
<tr key={item.id} onClick={() => router.push(`/permissions/permissions-view/?id=${item.id}`)}>
|
|
|
|
|
|
|
|
|
|
|
|
<td data-label="name">
|
|
{ item.name }
|
|
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!users?.custom_permissions?.length && <div className={'text-center py-4'}>No data</div>}
|
|
</CardBox>
|
|
</>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Employee_pay_types Employee</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<th>Pay Type</th>
|
|
<th>Active</th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{users.employee_pay_types_employee && Array.isArray(users.employee_pay_types_employee) &&
|
|
users.employee_pay_types_employee.map((item: any) => (
|
|
<tr key={item.id} onClick={() => router.push(`/employee_pay_types/employee_pay_types-view/?id=${item.id}`)}>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<td data-label="pay_type">
|
|
{item?.pay_type?.name ?? 'No data'}
|
|
</td>
|
|
<td data-label="active">
|
|
{ dataFormatter.booleanFormatter(item.active) }
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!users?.employee_pay_types_employee?.length && <div className={'text-center py-4'}>No data</div>}
|
|
</CardBox>
|
|
</>
|
|
|
|
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Job_logs Employee</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
|
|
|
|
<th>WorkDate</th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<th>HoursConducted</th>
|
|
|
|
|
|
|
|
<th>ClientPaid</th>
|
|
|
|
|
|
|
|
<th>WorkmansCompensationClass</th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<th>OdometerStart</th>
|
|
|
|
|
|
|
|
<th>OdometerEnd</th>
|
|
|
|
|
|
|
|
<th>JobAddress</th>
|
|
|
|
|
|
|
|
<th>Status</th>
|
|
|
|
|
|
|
|
<th>NotesToAdmin</th>
|
|
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{users.job_logs_employee && Array.isArray(users.job_logs_employee) &&
|
|
users.job_logs_employee.map((item: any) => (
|
|
<tr key={item.id} onClick={() => router.push(`/job_logs/job_logs-view/?id=${item.id}`)}>
|
|
|
|
|
|
<td data-label="work_date">
|
|
{ dataFormatter.dateTimeFormatter(item.work_date) }
|
|
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<td data-label="hours_conducted">
|
|
{ item.hours_conducted }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="client_paid">
|
|
{ item.client_paid }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="workers_comp_class">
|
|
{ item.workers_comp_class }
|
|
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<td data-label="odometer_start">
|
|
{ item.odometer_start }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="odometer_end">
|
|
{ item.odometer_end }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="job_address">
|
|
{ item.job_address }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="status">
|
|
{ item.status }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="notes_to_admin">
|
|
{ item.notes_to_admin }
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!users?.job_logs_employee?.length && <div className={'text-center py-4'}>No data</div>}
|
|
</CardBox>
|
|
</>
|
|
|
|
|
|
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Payroll_line_items Employee</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<th>TotalHours</th>
|
|
|
|
|
|
|
|
<th>GrossPay</th>
|
|
|
|
|
|
|
|
<th>TotalCommissionBase</th>
|
|
|
|
|
|
|
|
<th>TotalClientPaid</th>
|
|
|
|
|
|
|
|
<th>Summary</th>
|
|
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{users.payroll_line_items_employee && Array.isArray(users.payroll_line_items_employee) &&
|
|
users.payroll_line_items_employee.map((item: any) => (
|
|
<tr key={item.id} onClick={() => router.push(`/payroll_line_items/payroll_line_items-view/?id=${item.id}`)}>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<td data-label="total_hours">
|
|
{ item.total_hours }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="gross_pay">
|
|
{ item.gross_pay }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="total_commission_base">
|
|
{ item.total_commission_base }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="total_client_paid">
|
|
{ item.total_client_paid }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="summary">
|
|
{ item.summary }
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!users?.payroll_line_items_employee?.length && <div className={'text-center py-4'}>No data</div>}
|
|
</CardBox>
|
|
</>
|
|
|
|
|
|
|
|
<BaseDivider />
|
|
|
|
<BaseButton
|
|
color='info'
|
|
label='Back'
|
|
onClick={() => router.push('/users/users-list')}
|
|
/>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
UsersView.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated
|
|
|
|
permission={'READ_USERS'}
|
|
|
|
>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
)
|
|
}
|
|
|
|
export default UsersView; |