139 lines
4.4 KiB
TypeScript
139 lines
4.4 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/ports/portsSlice';
|
|
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 PortsView = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
const { ports } = useAppSelector((state) => state.ports);
|
|
|
|
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 ports')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title={removeLastCharacter('View ports')}
|
|
main
|
|
>
|
|
<BaseButton
|
|
color='info'
|
|
label='Edit'
|
|
href={`/ports/ports-edit/?id=${id}`}
|
|
/>
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>PortName</p>
|
|
<p>{ports?.port_name}</p>
|
|
</div>
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>WeatherForecasts</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ForecastDate</th>
|
|
|
|
<th>Temperature</th>
|
|
|
|
<th>WindSpeed</th>
|
|
|
|
<th>Humidity</th>
|
|
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{ports.weather_forecasts &&
|
|
Array.isArray(ports.weather_forecasts) &&
|
|
ports.weather_forecasts.map((item: any) => (
|
|
<tr
|
|
key={item.id}
|
|
onClick={() =>
|
|
router.push(
|
|
`/weather_forecasts/weather_forecasts-view/?id=${item.id}`,
|
|
)
|
|
}
|
|
>
|
|
<td data-label='forecast_date'>
|
|
{dataFormatter.dateTimeFormatter(
|
|
item.forecast_date,
|
|
)}
|
|
</td>
|
|
|
|
<td data-label='temperature'>{item.temperature}</td>
|
|
|
|
<td data-label='wind_speed'>{item.wind_speed}</td>
|
|
|
|
<td data-label='humidity'>{item.humidity}</td>
|
|
|
|
<td data-label='description'>{item.description}</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!ports?.weather_forecasts?.length && (
|
|
<div className={'text-center py-4'}>No data</div>
|
|
)}
|
|
</CardBox>
|
|
</>
|
|
|
|
<BaseDivider />
|
|
|
|
<BaseButton
|
|
color='info'
|
|
label='Back'
|
|
onClick={() => router.push('/ports/ports-list')}
|
|
/>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
PortsView.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'READ_PORTS'}>{page}</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default PortsView;
|