30695/frontend/src/pages/tasks/tasks-view.tsx
2025-04-13 20:24:33 +00:00

191 lines
5.8 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>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Description</p>
{tasks.description ? (
<p dangerouslySetInnerHTML={{ __html: tasks.description }} />
) : (
<p>No data</p>
)}
</div>
<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'}>AssignedTo</p>
<p>{tasks?.assigned_to?.firstName ?? 'No data'}</p>
</div>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>Project</p>
<p>{tasks?.project?.name ?? 'No data'}</p>
</div>
<FormField label='StartDate'>
{tasks.start_date ? (
<DatePicker
dateFormat='yyyy-MM-dd hh:mm'
showTimeSelect
selected={
tasks.start_date
? new Date(
dayjs(tasks.start_date).format('YYYY-MM-DD hh:mm'),
)
: null
}
disabled
/>
) : (
<p>No StartDate</p>
)}
</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'}>organizations</p>
<p>{tasks?.organizations?.name ?? 'No data'}</p>
</div>
<>
<p className={'block font-bold mb-2'}>Comments Task</p>
<CardBox
className='mb-6 border border-gray-300 rounded overflow-hidden'
hasTable
>
<div className='overflow-x-auto'>
<table>
<thead>
<tr>
<th>Content</th>
</tr>
</thead>
<tbody>
{tasks.comments_task &&
Array.isArray(tasks.comments_task) &&
tasks.comments_task.map((item: any) => (
<tr
key={item.id}
onClick={() =>
router.push(
`/comments/comments-view/?id=${item.id}`,
)
}
>
<td data-label='content'>{item.content}</td>
</tr>
))}
</tbody>
</table>
</div>
{!tasks?.comments_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;