2023-03-13 23:18:37 +03:00
|
|
|
import { Row, Col, Typography, Alert, Spin } from 'antd';
|
2023-01-16 10:11:44 +03:00
|
|
|
import React, { ReactElement, useEffect, useState } from 'react';
|
2023-01-16 09:31:36 +03:00
|
|
|
import dynamic from 'next/dynamic';
|
2022-04-20 05:57:27 +03:00
|
|
|
import { fetchData, FETCH_INTERVAL, HARDWARE_STATS } from '../../utils/apis';
|
2023-01-10 07:57:29 +03:00
|
|
|
import { Chart } from '../../components/admin/Chart';
|
|
|
|
import { StatisticItem } from '../../components/admin/StatisticItem';
|
2020-10-08 10:17:40 +03:00
|
|
|
|
2023-01-16 10:11:44 +03:00
|
|
|
import { AdminLayout } from '../../components/layouts/AdminLayout';
|
|
|
|
|
2023-01-16 09:31:36 +03:00
|
|
|
// Lazy loaded components
|
|
|
|
|
|
|
|
const BulbOutlined = dynamic(() => import('@ant-design/icons/BulbOutlined'), {
|
|
|
|
ssr: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
const LaptopOutlined = dynamic(() => import('@ant-design/icons/LaptopOutlined'), {
|
|
|
|
ssr: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
const SaveOutlined = dynamic(() => import('@ant-design/icons/SaveOutlined'), {
|
|
|
|
ssr: false,
|
|
|
|
});
|
|
|
|
|
2020-10-08 10:17:40 +03:00
|
|
|
export default function HardwareInfo() {
|
2020-10-28 10:53:24 +03:00
|
|
|
const [hardwareStatus, setHardwareStatus] = useState({
|
2021-02-15 11:36:06 +03:00
|
|
|
cpu: [], // Array<TimedValue>(),
|
|
|
|
memory: [], // Array<TimedValue>(),
|
|
|
|
disk: [], // Array<TimedValue>(),
|
2021-02-07 06:38:58 +03:00
|
|
|
message: '',
|
2020-10-28 10:53:24 +03:00
|
|
|
});
|
2020-10-08 10:17:40 +03:00
|
|
|
|
|
|
|
const getHardwareStatus = async () => {
|
|
|
|
try {
|
|
|
|
const result = await fetchData(HARDWARE_STATS);
|
|
|
|
setHardwareStatus({ ...result });
|
|
|
|
} catch (error) {
|
|
|
|
setHardwareStatus({ ...hardwareStatus, message: error.message });
|
|
|
|
}
|
|
|
|
};
|
2021-02-07 06:38:58 +03:00
|
|
|
|
2020-10-08 10:17:40 +03:00
|
|
|
useEffect(() => {
|
|
|
|
let getStatusIntervalId = null;
|
|
|
|
|
|
|
|
getHardwareStatus();
|
2020-10-27 09:53:04 +03:00
|
|
|
getStatusIntervalId = setInterval(getHardwareStatus, FETCH_INTERVAL); // runs every 1 min.
|
2021-02-07 06:38:58 +03:00
|
|
|
|
|
|
|
// returned function will be called on component unmount
|
2020-10-08 10:17:40 +03:00
|
|
|
return () => {
|
|
|
|
clearInterval(getStatusIntervalId);
|
2021-02-07 06:38:58 +03:00
|
|
|
};
|
2020-10-08 10:17:40 +03:00
|
|
|
}, []);
|
|
|
|
|
2020-10-27 09:53:04 +03:00
|
|
|
if (!hardwareStatus.cpu) {
|
2023-03-13 23:18:37 +03:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Typography.Title>Hardware Info</Typography.Title>
|
|
|
|
|
|
|
|
<Alert
|
|
|
|
style={{ marginTop: '10px' }}
|
|
|
|
banner
|
|
|
|
message="Please wait"
|
|
|
|
description="No hardware details have been collected yet."
|
|
|
|
type="info"
|
|
|
|
/>
|
|
|
|
<Spin spinning style={{ width: '100%', margin: '10px' }} />
|
|
|
|
</div>
|
|
|
|
);
|
2020-10-27 09:53:04 +03:00
|
|
|
}
|
|
|
|
|
2020-10-29 04:36:25 +03:00
|
|
|
const currentCPUUsage = hardwareStatus.cpu[hardwareStatus.cpu.length - 1]?.value;
|
2021-02-07 06:38:58 +03:00
|
|
|
const currentRamUsage = hardwareStatus.memory[hardwareStatus.memory.length - 1]?.value;
|
|
|
|
const currentDiskUsage = hardwareStatus.disk[hardwareStatus.disk.length - 1]?.value;
|
|
|
|
|
|
|
|
const series = [
|
|
|
|
{
|
|
|
|
name: 'CPU',
|
|
|
|
color: '#B63FFF',
|
|
|
|
data: hardwareStatus.cpu,
|
2023-02-03 01:34:44 +03:00
|
|
|
pointStyle: 'rect',
|
2021-02-07 06:38:58 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Memory',
|
|
|
|
color: '#2087E2',
|
|
|
|
data: hardwareStatus.memory,
|
2023-02-03 01:34:44 +03:00
|
|
|
pointStyle: 'circle',
|
2021-02-07 06:38:58 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Disk',
|
|
|
|
color: '#FF7700',
|
|
|
|
data: hardwareStatus.disk,
|
2023-02-03 01:34:44 +03:00
|
|
|
pointStyle: 'rectRounded',
|
2021-02-07 06:38:58 +03:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
return (
|
2021-02-16 08:22:17 +03:00
|
|
|
<>
|
2021-02-15 09:20:25 +03:00
|
|
|
<Typography.Title>Hardware Info</Typography.Title>
|
|
|
|
<br />
|
2020-10-27 09:53:04 +03:00
|
|
|
<div>
|
2021-02-07 06:38:58 +03:00
|
|
|
<Row gutter={[16, 16]} justify="space-around">
|
2021-02-16 08:22:17 +03:00
|
|
|
<Col>
|
|
|
|
<StatisticItem
|
|
|
|
title={series[0].name}
|
2023-07-30 01:57:45 +03:00
|
|
|
value={Math.round(currentCPUUsage) || 0}
|
2021-02-16 08:22:17 +03:00
|
|
|
prefix={<LaptopOutlined style={{ color: series[0].color }} />}
|
|
|
|
color={series[0].color}
|
|
|
|
progress
|
|
|
|
centered
|
|
|
|
/>
|
|
|
|
</Col>
|
|
|
|
<Col>
|
|
|
|
<StatisticItem
|
|
|
|
title={series[1].name}
|
2023-07-30 01:57:45 +03:00
|
|
|
value={Math.round(currentRamUsage) || 0}
|
2021-02-16 08:22:17 +03:00
|
|
|
prefix={<BulbOutlined style={{ color: series[1].color }} />}
|
|
|
|
color={series[1].color}
|
|
|
|
progress
|
|
|
|
centered
|
|
|
|
/>
|
|
|
|
</Col>
|
|
|
|
<Col>
|
|
|
|
<StatisticItem
|
|
|
|
title={series[2].name}
|
2023-07-30 01:57:45 +03:00
|
|
|
value={Math.round(currentDiskUsage) || 0}
|
2021-02-16 08:22:17 +03:00
|
|
|
prefix={<SaveOutlined style={{ color: series[2].color }} />}
|
|
|
|
color={series[2].color}
|
|
|
|
progress
|
|
|
|
centered
|
|
|
|
/>
|
|
|
|
</Col>
|
2021-02-07 06:38:58 +03:00
|
|
|
</Row>
|
2020-10-29 04:36:25 +03:00
|
|
|
|
2021-02-07 06:38:58 +03:00
|
|
|
<Chart title="% used" dataCollections={series} color="#FF7700" unit="%" />
|
2020-10-08 10:17:40 +03:00
|
|
|
</div>
|
2021-02-16 08:22:17 +03:00
|
|
|
</>
|
2021-02-07 06:38:58 +03:00
|
|
|
);
|
|
|
|
}
|
2023-01-16 10:11:44 +03:00
|
|
|
|
|
|
|
HardwareInfo.getLayout = function getLayout(page: ReactElement) {
|
|
|
|
return <AdminLayout page={page} />;
|
|
|
|
};
|