owncast/web/pages/hardware-info.tsx

46 lines
1.4 KiB
TypeScript
Raw Normal View History

2020-10-23 02:16:28 +02:00
import React, { useState, useEffect, useContext } from 'react';
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();
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>
<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>
);
}