2020-10-08 09:17:40 +02:00
|
|
|
import React, { useState, useEffect } from 'react';
|
|
|
|
import { HARDWARE_STATS, fetchData, FETCH_INTERVAL } from '../utils/apis';
|
|
|
|
|
|
|
|
export default function HardwareInfo() {
|
|
|
|
const [hardwareStatus, setHardwareStatus] = useState({});
|
|
|
|
|
|
|
|
const getHardwareStatus = async () => {
|
|
|
|
try {
|
|
|
|
const result = await fetchData(HARDWARE_STATS);
|
|
|
|
console.log("hardare result", result)
|
|
|
|
|
|
|
|
setHardwareStatus({ ...result });
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
setHardwareStatus({ ...hardwareStatus, message: error.message });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
let getStatusIntervalId = null;
|
|
|
|
|
|
|
|
getHardwareStatus();
|
2020-10-12 04:46:48 +02: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);
|
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h2>Hardware Info</h2>
|
2020-10-12 04:46:48 +02:00
|
|
|
<p>cpu:[], disk: [], memory: []; value = %age.</p>
|
|
|
|
<p>the times should be the same for each, though milliseconds differ</p>
|
2020-10-08 09:17:40 +02:00
|
|
|
<div style={{border: '1px solid blue', height: '300px', width: '100%', overflow:'auto'}}>
|
|
|
|
{JSON.stringify(hardwareStatus)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|