2020-10-23 02:16:28 +02:00
|
|
|
import React, { useState, useEffect, useContext } from 'react';
|
2020-10-23 01:18:18 +02:00
|
|
|
import { HARDWARE_STATS, fetchData, FETCH_INTERVAL } from './utils/apis';
|
2020-10-23 02:16:28 +02:00
|
|
|
import { BroadcastStatusContext } from './utils/broadcast-status-context';
|
2020-10-08 09:17:40 +02:00
|
|
|
|
|
|
|
export default function HardwareInfo() {
|
2020-10-23 02:16:28 +02:00
|
|
|
const context = useContext(BroadcastStatusContext);
|
|
|
|
const { broadcastActive } = context || {};
|
|
|
|
|
2020-10-08 09:17:40 +02:00
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|