245 lines
7.5 KiB
TypeScript
245 lines
7.5 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/tasks/tasksSlice';
|
|
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 TasksView = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
const { tasks } = useAppSelector((state) => state.tasks);
|
|
|
|
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 tasks')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title={removeLastCharacter('View tasks')}
|
|
main
|
|
>
|
|
<BaseButton
|
|
color='info'
|
|
label='Edit'
|
|
href={`/tasks/tasks-edit/?id=${id}`}
|
|
/>
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Title</p>
|
|
<p>{tasks?.title}</p>
|
|
</div>
|
|
|
|
<FormField label='Multi Text' hasTextareaHeight>
|
|
<textarea
|
|
className={'w-full'}
|
|
disabled
|
|
value={tasks?.description}
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField label='DueDate'>
|
|
{tasks.due_date ? (
|
|
<DatePicker
|
|
dateFormat='yyyy-MM-dd hh:mm'
|
|
showTimeSelect
|
|
selected={
|
|
tasks.due_date
|
|
? new Date(dayjs(tasks.due_date).format('YYYY-MM-DD hh:mm'))
|
|
: null
|
|
}
|
|
disabled
|
|
/>
|
|
) : (
|
|
<p>No DueDate</p>
|
|
)}
|
|
</FormField>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Status</p>
|
|
<p>{tasks?.status ?? 'No data'}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Priority</p>
|
|
<p>{tasks?.priority ?? 'No data'}</p>
|
|
</div>
|
|
|
|
<FormField label='IsRecurring'>
|
|
<SwitchField
|
|
field={{ name: 'is_recurring', value: tasks?.is_recurring }}
|
|
form={{ setFieldValue: () => null }}
|
|
disabled
|
|
/>
|
|
</FormField>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>RecurrenceRule</p>
|
|
<p>{tasks?.recurrence_rule}</p>
|
|
</div>
|
|
|
|
<FormField label='IsBillable'>
|
|
<SwitchField
|
|
field={{ name: 'is_billable', value: tasks?.is_billable }}
|
|
form={{ setFieldValue: () => null }}
|
|
disabled
|
|
/>
|
|
</FormField>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>EstimatedDuration</p>
|
|
<p>{tasks?.estimated_duration || 'No data'}</p>
|
|
</div>
|
|
|
|
<FormField label='CompletedAt'>
|
|
{tasks.completed_at ? (
|
|
<DatePicker
|
|
dateFormat='yyyy-MM-dd hh:mm'
|
|
showTimeSelect
|
|
selected={
|
|
tasks.completed_at
|
|
? new Date(
|
|
dayjs(tasks.completed_at).format('YYYY-MM-DD hh:mm'),
|
|
)
|
|
: null
|
|
}
|
|
disabled
|
|
/>
|
|
) : (
|
|
<p>No CompletedAt</p>
|
|
)}
|
|
</FormField>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Participant</p>
|
|
|
|
<p>{tasks?.participant?.first_name ?? 'No data'}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Incident</p>
|
|
|
|
<p>{tasks?.incident?.type ?? 'No data'}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>AssignedTo</p>
|
|
|
|
<p>{tasks?.assigned_to?.firstName ?? 'No data'}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>ParentTask</p>
|
|
|
|
<p>{tasks?.parent_task?.title ?? 'No data'}</p>
|
|
</div>
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>organizations</p>
|
|
|
|
<p>{tasks?.organizations?.name ?? 'No data'}</p>
|
|
</div>
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Invoice_line_items Task</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Description</th>
|
|
|
|
<th>Quantity</th>
|
|
|
|
<th>UnitPrice</th>
|
|
|
|
<th>LineTotal</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{tasks.invoice_line_items_task &&
|
|
Array.isArray(tasks.invoice_line_items_task) &&
|
|
tasks.invoice_line_items_task.map((item: any) => (
|
|
<tr
|
|
key={item.id}
|
|
onClick={() =>
|
|
router.push(
|
|
`/invoice_line_items/invoice_line_items-view/?id=${item.id}`,
|
|
)
|
|
}
|
|
>
|
|
<td data-label='description'>{item.description}</td>
|
|
|
|
<td data-label='quantity'>{item.quantity}</td>
|
|
|
|
<td data-label='unit_price'>{item.unit_price}</td>
|
|
|
|
<td data-label='line_total'>{item.line_total}</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!tasks?.invoice_line_items_task?.length && (
|
|
<div className={'text-center py-4'}>No data</div>
|
|
)}
|
|
</CardBox>
|
|
</>
|
|
|
|
<BaseDivider />
|
|
|
|
<BaseButton
|
|
color='info'
|
|
label='Back'
|
|
onClick={() => router.push('/tasks/tasks-list')}
|
|
/>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
TasksView.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'READ_TASKS'}>{page}</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default TasksView;
|