2020-10-27 07:53:04 +01:00
|
|
|
import React, { useState, useEffect } from 'react';
|
2020-10-23 01:18:18 +02:00
|
|
|
import { HARDWARE_STATS, fetchData, FETCH_INTERVAL } from './utils/apis';
|
2020-10-28 08:53:24 +01:00
|
|
|
import Chart from './components/chart';
|
2020-10-08 09:17:40 +02:00
|
|
|
|
|
|
|
export default function HardwareInfo() {
|
2020-10-28 08:53:24 +01:00
|
|
|
const [hardwareStatus, setHardwareStatus] = useState({
|
|
|
|
cpu: 0,
|
|
|
|
memory: 0,
|
|
|
|
disk: 0,
|
|
|
|
message: '',
|
|
|
|
});
|
2020-10-08 09:17:40 +02:00
|
|
|
|
|
|
|
const getHardwareStatus = async () => {
|
|
|
|
try {
|
|
|
|
const result = await fetchData(HARDWARE_STATS);
|
|
|
|
setHardwareStatus({ ...result });
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
setHardwareStatus({ ...hardwareStatus, message: error.message });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
let getStatusIntervalId = null;
|
|
|
|
|
|
|
|
getHardwareStatus();
|
2020-10-27 07:53:04 +01:00
|
|
|
getStatusIntervalId = setInterval(getHardwareStatus, FETCH_INTERVAL); // runs every 1 min.
|
2020-10-08 09:17:40 +02:00
|
|
|
|
|
|
|
// returned function will be called on component unmount
|
|
|
|
return () => {
|
|
|
|
clearInterval(getStatusIntervalId);
|
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
2020-10-27 07:53:04 +01:00
|
|
|
|
|
|
|
if (!hardwareStatus.cpu) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<h2>Hardware Info</h2>
|
|
|
|
<div className="chart-container">
|
|
|
|
<h3>CPU</h3>
|
|
|
|
<Chart data={hardwareStatus.cpu} color="#FF7700" unit="%" />
|
|
|
|
<h3>Memory</h3>
|
|
|
|
<Chart data={hardwareStatus.memory} color="#004777" unit="%" />
|
|
|
|
<h3>Disk</h3>
|
|
|
|
<Chart data={hardwareStatus.disk} color="#A9E190" unit="%" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p>cpu:[], disk: [], memory: []; value = %age.</p>
|
|
|
|
<p>the times should be the same for each, though milliseconds differ</p>
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
border: "1px solid blue",
|
|
|
|
height: "300px",
|
|
|
|
width: "100%",
|
|
|
|
overflow: "auto",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{JSON.stringify(hardwareStatus)}
|
|
|
|
</div>
|
2020-10-08 09:17:40 +02:00
|
|
|
</div>
|
2020-10-27 07:53:04 +01:00
|
|
|
);
|
|
|
|
}
|