sbt-idp/cope2n-fe/src/pages/dashboard/index.tsx

162 lines
4.4 KiB
TypeScript
Raw Normal View History

2024-01-31 04:08:20 +00:00
import { t } from '@lingui/macro';
2024-02-01 05:54:12 +00:00
import { Button, DatePicker, Form, Select } from 'antd';
2024-01-31 04:08:20 +00:00
import { SbtPageHeader } from 'components/page-header';
2024-01-31 09:54:39 +00:00
import { ReportOverViewTable } from 'components/report-detail';
2024-01-31 04:08:20 +00:00
import { Dayjs } from 'dayjs';
2024-02-01 05:54:12 +00:00
import { useOverViewReport } from 'queries/report';
import { useState } from 'react';
2024-01-31 04:08:20 +00:00
import { useNavigate } from 'react-router-dom';
2024-02-05 08:52:15 +00:00
import { DownloadOutlined } from '@ant-design/icons';
import { downloadDashboardReport } from 'request/report';
2024-01-31 04:08:20 +00:00
export interface ReportFormValues {
2024-02-05 08:52:15 +00:00
duration: string;
2024-01-31 04:08:20 +00:00
dateRange: [Dayjs, Dayjs];
2024-01-31 09:54:39 +00:00
subsidiary: string;
2024-01-31 04:08:20 +00:00
}
const Dashboard = () => {
const navigate = useNavigate();
2024-02-05 08:52:15 +00:00
const [duration, setDuration] = useState<string>('30d');
const [subsidiary, setSubsidiary] = useState<string>('all');
2024-02-01 05:54:12 +00:00
const [form] = Form.useForm<ReportFormValues>();
const [pagination, setPagination] = useState({
page: 1,
page_size: 10,
});
const [fromData, setFormData] = useState<{
start_date: string;
end_date: string;
subsidiary: string;
}>({
start_date: '',
end_date: '',
subsidiary: '',
});
const { isLoading, data } = useOverViewReport({
start_date: fromData.start_date,
end_date: fromData.end_date,
subsidiary: fromData.subsidiary,
2024-02-02 06:42:56 +00:00
page: pagination.page,
page_size: 30,
2024-02-01 05:54:12 +00:00
});
2024-02-05 09:32:47 +00:00
const get30dDateRangeDayJS = () => {
const prev = new Date();
prev.setDate(prev.getDate() - 30);
const today = new Date();
return [prev, today];
};
const formatDate = (date: Date) => {
// YYYY-MM-DDTHH:mm:ssZ
const formated = date.toISOString().split('.')[0] + '+0000';
console.log('formated >>>', formated);
return formated;
}
const changeView = () => {
const dateRange = get30dDateRangeDayJS();
2024-02-01 05:54:12 +00:00
setFormData({
2024-02-05 09:32:47 +00:00
start_date: formatDate(dateRange[0]),
end_date: formatDate(dateRange[1]),
subsidiary: subsidiary,
2024-02-01 05:54:12 +00:00
});
};
2024-01-31 04:08:20 +00:00
2024-02-05 08:52:15 +00:00
const handleDownloadReport = async () => {
console.log('duration >>>', duration);
console.log('subsidiary >>>', subsidiary);
const {file, filename} = await downloadDashboardReport(duration, subsidiary);
const anchorElement = document.createElement('a');
anchorElement.href = URL.createObjectURL(file);
anchorElement.download = filename;
document.body.appendChild(anchorElement);
anchorElement.click();
// Clean up
document.body.removeChild(anchorElement);
URL.revokeObjectURL(anchorElement.href);
};
2024-01-31 04:08:20 +00:00
return (
<>
<SbtPageHeader
title={t`Dashboard`}
extra={
2024-01-31 09:54:39 +00:00
<>
2024-02-05 08:52:15 +00:00
<Button type='primary' size='large' icon={<DownloadOutlined />}
onClick={() => handleDownloadReport()}
>
{t`Download`}
</Button>
<Button type='primary' size='large' onClick={() => navigate('/reports')}>
2024-01-31 09:54:39 +00:00
{t`Go to Report page`}
2024-02-05 08:52:15 +00:00
</Button>
2024-01-31 09:54:39 +00:00
</>
2024-01-31 04:08:20 +00:00
}
/>
2024-02-01 05:54:12 +00:00
<Form
2024-01-31 09:54:39 +00:00
form={form}
style={{ display: 'flex', flexDirection: 'row', gap: 10 }}
>
2024-02-05 08:52:15 +00:00
<Form.Item
label={t`Duration`}
rules={[
{
required: true,
message: 'Please select a duration',
},
]}
required
>
<Select
placeholder='Select a date range'
style={{ width: 200 }}
options={[
{ value: '30d', label: 'Last 30 days' },
]}
value={duration}
onChange={(value) => {
setDuration(value);
}}
/>
</Form.Item>
2024-01-31 09:54:39 +00:00
<Form.Item
name='subsidiary'
label={t`Subsidiary`}
2024-02-05 09:35:57 +00:00
required
2024-01-31 09:54:39 +00:00
>
<Select
placeholder='Select a subsidiary'
style={{ width: 200 }}
options={[
{ value: 'all', label: 'ALL' },
{ value: 'sesp', label: 'SESP' },
{ value: 'seau', label: 'SEAU' },
]}
2024-02-05 08:52:15 +00:00
defaultValue={'all'}
value={subsidiary}
onChange={(value) => {
setSubsidiary(value);
}}
2024-01-31 09:54:39 +00:00
/>
</Form.Item>
<Form.Item>
2024-02-05 09:32:47 +00:00
<Button type='primary' style={{ height: 38 }}
onClick={changeView}
>
2024-02-05 08:52:15 +00:00
View
2024-01-31 09:54:39 +00:00
</Button>
</Form.Item>
2024-02-01 05:54:12 +00:00
</Form>
<ReportOverViewTable
pagination={pagination}
setPagination={setPagination}
isLoading={isLoading}
data={data}
/>
2024-01-31 04:08:20 +00:00
</>
);
};
export default Dashboard;